Searched refs:map (Results 26 - 50 of 286) sorted by path

1234567891011>>

/haiku/headers/tools/cppunit/
H A DTestSuite.h6 #include <map>
27 const std::map<std::string, CppUnit::Test*> &getTests() const;
30 std::map<std::string, CppUnit::Test*> fTests;
H A DThreadedTestCaller.h10 #include <map>
40 typedef std::map<std::string, BThreadManager<TestClass, ExpectedException> *> ThreadManagerMap;
H A DThreadedTestCase.h7 #include <map>
52 std::map<thread_id, ThreadSubTestInfo*> fNumberMap;
/haiku/headers/tools/cppunit/cppunit/
H A DXmlOutputter.h14 #include <map>
93 typedef std::map<Test *,TestFailure*> FailedTests;
/haiku/headers/tools/cppunit/cppunit/extensions/
H A DTestFactoryRegistry.h12 #include <map>
20 template class CPPUNIT_API map<string, TestFactory *>; member in namespace:CppUnit
133 typedef std::map<std::string, TestFactory *> Factories;
/haiku/src/add-ons/input_server/devices/serial_mouse/
H A DMouseInputDevice.cpp125 if (get_mouse_map(&device->settings.map) != B_OK)
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DCommandActuators.cpp659 key_map* map; local
661 get_key_map(&map, &keys);
680 int32 key = _LookupKeyCode(map, keys, map->normal_map, next,
683 key = _LookupKeyCode(map, keys, map->shift_map, next, states,
688 key = _LookupKeyCode(map, keys, map->caps_map, next, states,
693 key = _LookupKeyCode(map, keys, map
801 _LookupKeyCode(key_map* map, char* keys, int32 offsets[128], char c, uint8* setStates, int32& setModifier, int32 setTo) const argument
[all...]
/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/add-ons/kernel/bus_managers/scsi/
H A DKernelExport_ext.h25 // get memory map of iovec
31 physical_entry *map, // resulting memory map
32 uint32 max_entries, // max number of entries in map
33 uint32 *num_entries, // actual number of map entries used
34 size_t *mapped_len // actual number of bytes described by map
H A Dvirtual_memory.cpp30 physical_entry *map, uint32 max_entries, uint32 *num_entries, size_t *mapped_len)
57 // map one iovec
68 &map[cur_idx], &cur_num_entries)) != B_OK) {
77 cur_mapped_len += map[tmp_idx].size;
93 && map[cur_idx].address
94 == map[cur_idx - 1].address + map[cur_idx - 1].size) {
96 map[cur_idx - 1].size += map[cur_idx].size;
97 memcpy(&map[cur_id
29 get_iovec_memory_map(iovec *vec, size_t vec_count, size_t vec_offset, size_t len, physical_entry *map, uint32 max_entries, uint32 *num_entries, size_t *mapped_len) argument
[all...]
/haiku/src/add-ons/kernel/drivers/graphics/radeon/
H A DDMA.c51 physical_entry map[16]; local
77 get_memory_map( target, 1, map, 16 );
79 map[0].size = size;
81 get_memory_map( target, size, map, 16 );
85 phys_addr_t address = map[i].address;
86 size_t contig_size = map[i].size;
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi2100/dev/ipw/
H A Dif_ipw.c510 * Allocate and map tx ring.
531 device_printf(sc->sc_dev, "could not map tx ring DMA memory\n");
536 * Allocate and map rx ring.
557 device_printf(sc->sc_dev, "could not map rx ring DMA memory\n");
562 * Allocate and map status ring.
586 "could not map status ring DMA memory\n");
591 * Allocate command DMA map.
604 "could not create command DMA map\n");
622 error = bus_dmamap_create(sc->hdr_dmat, 0, &shdr->map);
625 "could not create header DMA map\
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi3945/dev/wpi/
H A Dif_wpi.c387 device_printf(dev, "can't map mem space\n");
402 device_printf(dev, "can't map interrupt\n");
919 BUS_DMA_NOWAIT | BUS_DMA_ZERO | BUS_DMA_COHERENT, &dma->map);
923 error = bus_dmamap_load(dma->tag, dma->map, dma->vaddr, size,
928 bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
943 bus_dmamap_sync(dma->tag, dma->map,
945 bus_dmamap_unload(dma->tag, dma->map);
946 bus_dmamem_free(dma->tag, dma->vaddr, dma->map);
1024 * Allocate and map RX buffers.
1030 error = bus_dmamap_create(ring->data_dmat, 0, &data->map);
[all...]
/haiku/src/add-ons/kernel/file_systems/udf/
H A DVolume.cpp115 TRACE(("Volume::Mount: partition map %d (type %d):\n", i,
118 TRACE(("Volume::Mount: map type -> physical\n"));
119 physical_partition_map* map = (physical_partition_map *)header; local
123 if (map->partition_number() ==
132 = new(nothrow) PhysicalPartition(map->partition_number(),
138 map->partition_number(), descriptor->start(),
149 // Figure out what kind of type 2 partition map we have based
155 TRACE(("map type: virtual\n"));
156 virtual_partition_map* map = local
159 (void)map; // kil
162 sparable_partition_map* map = local
168 metadata_partition_map* map = local
[all...]
/haiku/src/add-ons/kernel/partitioning_systems/intel/
H A DPartitionMapParser.h35 status_t Parse(const uint8* block, PartitionMap* map);
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPConnectionWorker.h77 typedef std::map<IMAPFolder*, IMAPMailbox*> MailboxMap;
H A DIMAPProtocol.h9 #include <map>
27 typedef std::map<BString, IMAPFolder*> FolderMap;
67 typedef std::map<IMAPFolder*, IMAPConnectionWorker*> WorkerMap;
68 typedef std::map<ino_t, IMAPFolder*> FolderNodeMap;
/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/add-ons/mail_daemon/inbound_protocols/pop3/
H A DPOP3.h12 #include <map>
/haiku/src/add-ons/mail_daemon/outbound_protocols/smtp/
H A DSMTP.cpp15 #include <map>
193 ** splits a challenge-string into the given map (see RFC-2831)
197 SplitChallengeIntoMap(BString str, map<BString,BString>& m)
538 map<BString,BString> challengeMap;
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DRadeon.cpp159 PRINT(("CRadeon::CRadeon() - Can't map memory apertures\n"));
590 area_id *cloned_area, void ** map)
592 int res = clone_area( name, map, B_ANY_ADDRESS,
589 CloneArea(const char * name, area_id src_area, area_id *cloned_area, void ** map) argument
H A DRadeon.h388 area_id *cloned_area, void ** map);
/haiku/src/add-ons/media/media-add-ons/video_mixer/
H A DBufferMixer.cpp29 // Do the merging of all buffers in the groupedBuffers map
36 std::map<int32, BBuffer*>::iterator each;
H A DBufferMixer.h11 #include <map>
25 std::map<int32, BBuffer *> groupedBuffers;
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPCapabilities.h19 #include <map>
44 typedef map<int32, GPArray<struct BaseCap> > DriverSpecificCapabilitiesType;

Completed in 133 milliseconds

1234567891011>>