Searched refs:map (Results 76 - 100 of 286) sorted by relevance

1234567891011>>

/haiku/headers/os/package/
H A DPackageInfoSet.h52 Iterator(const PackageMap* map = NULL);
/haiku/src/servers/package/
H A DResultWindow.h9 #include <map>
/haiku/src/kits/translation/
H A DTranslatorRosterPrivate.h11 #include <map>
32 typedef std::map<translator_id, translator_item> TranslatorMap;
36 typedef std::map<image_id, int32> ImageMap;
37 typedef std::map<BTranslator*, image_id> TranslatorImageMap;
/haiku/headers/private/notification/
H A DAppUsage.h11 #include <map>
/haiku/src/servers/registrar/
H A DTRoster.h22 #include <map>
25 using std::map;
30 typedef map<int32, BMessageQueue*> IARRequestMap;
97 void _AddIARRequest(IARRequestMap& map, int32 key,
H A DClipboardHandler.cpp17 #include <map>
21 using std::map;
31 struct ClipboardHandler::ClipboardMap : map<string, Clipboard*> {};
/haiku/src/add-ons/kernel/partitioning_systems/common/
H A DPartitionMapWriter.h47 status_t WriteMBR(const PartitionMap* map,
/haiku/src/apps/cortex/Persistence/
H A DXML.h58 #include <map>
153 typedef std::map<BString, DocumentType*> doc_type_map;
/haiku/src/apps/cortex/RouteApp/
H A DRouteAppNodeManager.h57 // node. Build a map of ID -> media_node_id.
76 #include <map>
219 typedef std::map<uint64, MediaIcon*> icon_map;
/haiku/src/kits/tracker/
H A DVirtualDirectoryManager.h14 #include <map>
79 typedef std::map<node_ref, Info*> NodeRefInfoMap;
/haiku/src/servers/mail/
H A DMailDaemonApplication.h11 #include <map>
41 typedef std::map<int32, account_protocols> AccountMap;
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DProtocol.h12 #include <map>
38 typedef std::map<int32, Command*> CommandIDMap;
/haiku/src/kits/storage/mime/
H A DInstalledTypes.cpp113 std::map<std::string, Supertype>::iterator i = fSupertypes.find(supertype);
176 std::map<std::string, Supertype>::iterator i;
232 /*! \brief Adds the given supertype to the supertype map.
234 - B_OK: success, even if the supertype already existed in the map
239 std::map<std::string, Supertype>::iterator &i)
277 std::map<std::string, Supertype>::iterator i;
336 std::map<std::string, Supertype>::iterator i = fSupertypes.find(super);
348 //! Clears any cached messages and empties the supertype map
411 std::map<std::string, Supertype>::iterator i;
489 std::map<st
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/pci/
H A Drtwn_pci_tx.c137 error = bus_dmamap_load_mbuf_sg(ring->data_dmat, data->map, m, segs,
140 device_printf(sc->sc_dev, "can't map mbuf (error %d)\n",
154 error = bus_dmamap_load_mbuf_sg(ring->data_dmat, data->map, m,
158 "can't map mbuf (error %d)\n", error);
177 bus_dmamap_sync(ring->data_dmat, data->map, BUS_DMASYNC_PREWRITE);
229 bus_dmamap_unload(ring->data_dmat, data->map);
233 data->map, m, segs, &nsegs, BUS_DMA_NOWAIT);
236 "can't map beacon (error %d)\n", error);
252 bus_dmamap_sync(ring->data_dmat, data->map, BUS_DMASYNC_PREWRITE);
/haiku/src/add-ons/kernel/partitioning_systems/intel/
H A Dwrite_support.cpp107 // primary partition map doesn't naturally live in any other child partition
406 partition - intel partition map
421 PartitionMap* map = (PartitionMap*)partition->content_cookie; local
422 if (!map)
425 PrimaryPartition* primary = map->PrimaryPartitionAt(i);
543 PartitionMap* map = (PartitionMap*)partition->content_cookie;
544 if (!map)
548 PrimaryPartition* primary = map->PrimaryPartitionAt(i);
772 // clone the map
780 PartitionMapCookie* map local
824 PartitionMapCookie* map local
843 PartitionMapCookie* map = new(nothrow) PartitionMapCookie; local
861 PartitionMapCookie* map local
1347 PartitionMap map; local
[all...]
/haiku/src/preferences/shortcuts/
H A DShortcutsSpec.cpp72 SetupStandardMap(MetaKeyStateMap& map, const char* name, uint32 both, argument
75 map.SetInfo(name);
78 map.AddState(B_TRANSLATE("(None)"), new HasBitsFieldTester(0, both));
82 map.AddState(B_TRANSLATE("Either"), new HasBitsFieldTester(both));
85 map.AddState(B_TRANSLATE("Left"), new HasBitsFieldTester(left, right));
88 map.AddState(B_TRANSLATE("Right"), new HasBitsFieldTester(right, left));
91 map.AddState(B_TRANSLATE("Both"), new HasBitsFieldTester(left | right));
559 MetaKeyStateMap * map = &sMetaMaps[whichColumn]; local
562 int numStates = map->GetNumStates();
588 const char* desc = map
[all...]
/haiku/src/system/kernel/arch/ppc/paging/460/
H A DPPCPagingMethod460.cpp60 // map the pages
175 // TODO: We should probably map the page table via BAT. It is relatively large,
222 PPCVMTranslationMap460* map = new(std::nothrow) PPCVMTranslationMap460; local
223 if (map == NULL)
226 status_t error = map->Init(kernel);
228 delete map;
232 *_map = map;
281 // PPCVMTranslationMap* map = static_cast<PPCVMTranslationMap*>(
283 // VMTranslationMap* map = addressSpace->TranslationMap();
284 PPCVMTranslationMap460* map local
[all...]
/haiku/src/system/kernel/arch/ppc/paging/classic/
H A DPPCPagingMethodClassic.cpp60 // map the pages
175 // TODO: We should probably map the page table via BAT. It is relatively large,
222 PPCVMTranslationMapClassic* map = new(std::nothrow) PPCVMTranslationMapClassic; local
223 if (map == NULL)
226 status_t error = map->Init(kernel);
228 delete map;
232 *_map = map;
281 // PPCVMTranslationMap* map = static_cast<PPCVMTranslationMap*>(
283 // VMTranslationMap* map = addressSpace->TranslationMap();
284 PPCVMTranslationMapClassic* map local
[all...]
/haiku/headers/libs/print/libprint/
H A DJobSetupDlg.h10 #include <map>
175 std::map<PrinterCap::CapID, BPopUpMenu*> fDriverSpecificPopUpMenus;
176 std::map<string, BCheckBox*> fDriverSpecificCheckBoxes;
177 std::map<PrinterCap::CapID, IntRange> fDriverSpecificIntSliders;
178 std::map<PrinterCap::CapID, DoubleRange> fDriverSpecificDoubleSliders;
/haiku/src/add-ons/kernel/bus_managers/pci/
H A Dpci_fixup.cpp116 uint8 map = pci->ReadConfig(domain, bus, device, function, 0x90, 1); local
117 if ((map >> 6) == 0) {
134 map &= ~0x03;
135 map |= 0x40;
136 pci->WriteConfig(domain, bus, device, function, 0x90, 1, map);
/haiku/src/system/kernel/vm/
H A Dvm.cpp548 /*! The caller must have reserved enough pages the translation map
549 implementation might need to map this page.
556 VMTranslationMap* map = area->address_space->TranslationMap(); local
574 map->Lock();
576 map->Map(address, page->physical_page_number * B_PAGE_SIZE, protection,
586 map->Unlock();
590 map->Lock();
591 map->Map(address, page->physical_page_number * B_PAGE_SIZE, protection,
593 map->Unlock();
933 VMTranslationMap* map local
1349 VMTranslationMap* map = addressSpace->TranslationMap(); local
1729 VMTranslationMap* map = addressSpace->TranslationMap(); local
1771 VMTranslationMap* map = addressSpace->TranslationMap(); local
2427 VMTranslationMap* map local
2456 VMTranslationMap* map = targetAddressSpace->TranslationMap(); local
2667 VMTranslationMap* map local
2683 VMTranslationMap* map = tempArea->address_space->TranslationMap(); local
2713 VMTranslationMap* map = tempArea->address_space->TranslationMap(); local
3020 VMTranslationMap* map = area->address_space->TranslationMap(); local
3079 VMTranslationMap* map = area->address_space->TranslationMap(); local
3109 VMTranslationMap* map = area->address_space->TranslationMap(); local
3129 VMTranslationMap* map = area->address_space->TranslationMap(); local
3145 VMTranslationMap* map = area->address_space->TranslationMap(); local
3187 VMTranslationMap* map = area->address_space->TranslationMap(); local
3975 unmap_and_free_physical_pages(VMTranslationMap* map, addr_t start, addr_t end) argument
4003 VMTranslationMap* map = VMAddressSpace::Kernel()->TranslationMap(); local
4663 VMTranslationMap* map; member in struct:PageFaultContext
5725 VMTranslationMap* map = addressSpace->TranslationMap(); local
5881 VMTranslationMap* map = addressSpace->TranslationMap(); local
6040 VMTranslationMap* map = addressSpace->TranslationMap(); local
6855 VMTranslationMap* map = locker.AddressSpace()->TranslationMap(); local
[all...]
/haiku/headers/tools/cppunit/
H A DTestShell.h12 #include <map>
109 typedef std::map<std::string, CppUnit::Test*> TestMap;
110 typedef std::map<std::string, BTestSuite*> SuiteMap;
/haiku/src/kits/package/solver/libsolv/
H A DLibsolvSolver.h9 #include <map>
84 typedef std::map<Id, BSolverPackage*> SolvableMap;
85 typedef std::map<BSolverPackage*, Id> PackageMap;
/haiku/headers/private/netservices/
H A DHttpForm.h12 #include <map>
36 // Empty constructor is only kept for compatibility with map<>::operator[],
43 friend class std::map<BString, BHttpFormData>;
99 typedef std::map<BString, BHttpFormData> FormStorage;
/haiku/src/bin/debug/strace/
H A DTypeHandler.h13 #include <map>
40 typedef std::map<int, const char *> EnumMap;
76 typedef std::map<int, TypeHandler *> SelectMap;

Completed in 319 milliseconds

1234567891011>>