Searched refs:map (Results 126 - 150 of 286) sorted by path

1234567891011>>

/haiku/src/tools/update_package_requires/
H A Dupdate_package_requires.cpp13 #include <map>
114 // create a map for all provides (name -> resolvable list)
115 typedef std::map<BString, ProvidesList> ProvidesMap;
/haiku/headers/os/drivers/
H A Dfs_cache.h22 /* file map modes */
96 /* file map */
98 extern void file_map_delete(void *map);
99 extern void file_map_set_size(void *map, off_t size);
100 extern void file_map_invalidate(void *map, off_t offset, off_t size);
101 extern status_t file_map_set_mode(void *map, uint32 mode);
102 extern status_t file_map_translate(void *map, off_t offset, size_t size,
/haiku/headers/os/interface/
H A DInterfaceDefs.h428 status_t get_mouse_map(mouse_map* map);
429 status_t set_mouse_map(mouse_map* map);
/haiku/headers/posix/arpa/
H A Dnameser.h579 int ns_name_map(ns_nname_ct nname, size_t nameLength, ns_namemap_t map,
/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;
H A DNetworkCookieJar.h111 Iterator(const BNetworkCookieJar* map);
141 UrlIterator(const BNetworkCookieJar* map,
/haiku/headers/private/storage/mime/
H A DSupportingApps.h15 #include <map>
44 std::map<std::string, std::set<std::string> > fSupportedTypes; // app sig => set of supported types
45 std::map<std::string, std::set<std::string> > fSupportingApps; // mime type => set of supporting apps
46 std::map<std::string, std::set<std::string> > fStrandedTypes; // app sig => set of no longer supported types for whom the
/haiku/src/add-ons/input_server/devices/mouse/
H A DMouseInputDevice.cpp188 fSettings.map.button[i] = B_MOUSE_BUTTON(i + 1);
558 if (get_mouse_map(&fSettings.map) != B_OK)
562 = ioctl(fDevice, MS_SET_MAP, &fSettings.map) == B_OK;
697 newButtons |= fSettings.map.button[i];
700 newButtons |= fSettings.map.left;
702 newButtons |= fSettings.map.right;
704 newButtons |= fSettings.map.middle;
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DCommandActuators.h125 int32 _LookupKeyCode(key_map* map, char* keys,
H A DKeyInfos.cpp125 key_map* map; local
127 get_key_map(&map, &keys);
129 if (map == NULL || keys == NULL)
137 int32 keyCode = map->normal_map[j];
166 free(map);
/haiku/src/add-ons/kernel/bus_managers/scsi/
H A Demulation.cpp56 physical_entry map[1]; local
88 get_memory_map(address, B_PAGE_SIZE, map, 1);
91 phys_addr_t physicalAddress = map[0].address;
/haiku/src/add-ons/kernel/drivers/graphics/nvidia/
H A Ddriver.c577 /* WARNING: Nvidia needs to map regs as viewed from PCI space! */
605 //fixme?: if (!tmpUlong) try to map the ROM ourselves. Confirmed a PCIe system not
629 /* force using ISA legacy map as fall-back */
633 /* mapping failed: force using ISA legacy map as fall-back */
639 /* ROM was not assigned an adress, fetch it from ISA legacy memory map! */
683 /* map the framebuffer into vmem, using Write Combining*/
685 /* WARNING: Nvidia needs to map framebuffer as viewed from PCI space! */
695 /* WARNING: Nvidia needs to map framebuffer as viewed from PCI space! */
893 physical_entry map[1]; local
956 get_memory_map(unaligned_dma_buffer, B_PAGE_SIZE, map,
[all...]
/haiku/src/add-ons/kernel/drivers/graphics/radeon/
H A DPCI_GART.c73 physical_entry map[1]; local
96 get_memory_map( unaligned_addr, B_PAGE_SIZE, map, 1 );
99 (void **)((map[0].address + size - 1) & ~(size - 1));
109 SHOW_ERROR0( 3, "cannot map buffer with WC" );
117 SHOW_ERROR0( 1, "cannot map GART buffer" );
135 physical_entry *map; local
178 // temporary area where we fill in the memory map (deleted below)
179 map_area = create_area("pci_gart_map_area", (void **)&map, B_ANY_ADDRESS,
185 get_memory_map( gart->buffer.ptr, gart->buffer.size, map, map_count );
192 phys_addr_t addr = map[
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/3com/dev/xl/
H A Dif_xl.c1166 device_printf(dev, "couldn't map ports/memory\n");
1183 device_printf(dev, "couldn't map funcreg memory\n");
1197 device_printf(dev, "couldn't map interrupt\n");
1312 /* We need a spare DMA map for the RX ring. */
1403 * revisions that incorrectly map the internal transceiver
1767 * the old DMA map untouched so that it can be reused.
1773 bus_dmamap_t map; local
1792 device_printf(sc->xl_dev, "can't map mbuf (error %d)\n",
1800 map = c->xl_map;
1802 sc->xl_tmpmap = map;
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/atheros813x/dev/alc/
H A Dif_alc.c2098 /* Allocate DMA'able memory and load the DMA map for Tx ring. */
2119 /* Allocate DMA'able memory and load the DMA map for Rx ring. */
2140 /* Allocate DMA'able memory and load the DMA map for Rx return ring. */
2161 /* Allocate DMA'able memory and load the DMA map for CMB. */
2182 /* Allocate DMA'able memory and load the DMA map for SMB. */
2713 bus_dmamap_t map; local
2811 map = txd->tx_dmamap;
2813 error = bus_dmamap_load_mbuf_sg(sc->alc_cdata.alc_tx_tag, map,
2823 error = bus_dmamap_load_mbuf_sg(sc->alc_cdata.alc_tx_tag, map,
2840 bus_dmamap_unload(sc->alc_cdata.alc_tx_tag, map);
3508 bus_dmamap_t map; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/atheros81xx/dev/ale/
H A Dif_ale.c1144 /* Allocate DMA'able memory and load the DMA map for Tx ring. */
1615 bus_dmamap_t map; local
1740 map = txd->tx_dmamap;
1742 error = bus_dmamap_load_mbuf_sg(sc->ale_cdata.ale_tx_tag, map,
1752 error = bus_dmamap_load_mbuf_sg(sc->ale_cdata.ale_tx_tag, map,
1769 bus_dmamap_unload(sc->ale_cdata.ale_tx_tag, map);
1772 bus_dmamap_sync(sc->ale_cdata.ale_tx_tag, map, BUS_DMASYNC_PREWRITE);
1868 map = txd_last->tx_dmamap;
1870 txd->tx_dmamap = map;
/haiku/src/add-ons/kernel/drivers/network/ether/attansic_l1/dev/age/
H A Dif_age.c980 /* Allocate DMA'able memory and load the DMA map. */
1499 bus_dmamap_t map; local
1599 map = txd->tx_dmamap;
1601 error = bus_dmamap_load_mbuf_sg(sc->age_cdata.age_tx_tag, map,
1611 error = bus_dmamap_load_mbuf_sg(sc->age_cdata.age_tx_tag, map,
1628 bus_dmamap_unload(sc->age_cdata.age_tx_tag, map);
1712 map = txd_last->tx_dmamap;
1714 txd->tx_dmamap = map;
1718 bus_dmamap_sync(sc->age_cdata.age_tx_tag, map, BUS_DMASYNC_PREWRITE);
3088 bus_dmamap_t map; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/broadcom440x/dev/bfe/
H A Dif_bfe.c288 /* Allocate DMA'able memory and load DMA map. */
333 "cannot create DMA map for Tx.\n");
338 /* Create spare DMA map for Rx buffers. */
341 device_printf(sc->bfe_dev, "cannot create spare DMA map for Rx.\n");
353 "cannot create DMA map for Rx.\n");
457 device_printf(dev, "couldn't map memory\n");
468 device_printf(dev, "couldn't map interrupt\n");
795 bus_dmamap_t map; local
817 map = r->bfe_map;
819 sc->bfe_rx_sparemap = map;
1515 bus_dmamap_t map; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/broadcom570x/dev/bge/
H A Dif_bge.c1287 bus_dmamap_t map; local
1318 map = sc->bge_cdata.bge_rx_std_dmamap[i];
1320 sc->bge_cdata.bge_rx_std_sparemap = map;
1344 bus_dmamap_t map; local
1374 map = sc->bge_cdata.bge_rx_jumbo_dmamap[i];
1377 sc->bge_cdata.bge_rx_jumbo_sparemap = map;
2243 /* Should be 17, use 16 until we get an SRAM map. */
2875 bus_size_t maxsize, bus_dma_tag_t *tag, uint8_t **ring, bus_dmamap_t *map,
2895 BUS_DMA_NOWAIT | BUS_DMA_ZERO | BUS_DMA_COHERENT, map);
2903 error = bus_dmamap_load(*tag, *map, *rin
2874 bge_dma_ring_alloc(struct bge_softc *sc, bus_size_t alignment, bus_size_t maxsize, bus_dma_tag_t *tag, uint8_t **ring, bus_dmamap_t *map, bus_addr_t *paddr, const char *msg) argument
5182 bus_dmamap_t map; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/dec21xxx/dev/dc/
H A Dif_dc.c2045 device_printf(dev, "couldn't map ports/memory\n");
2059 device_printf(dev, "couldn't map interrupt\n");
2649 bus_dmamap_t map; local
2678 map = sc->dc_cdata.dc_rx_map[i];
2680 sc->dc_sparemap = map;
3381 bus_dmamap_t map; local
3498 * Swap the last and the first dmamaps to ensure the map for
3501 map = sc->dc_cdata.dc_tx_map[cur];
3503 sc->dc_cdata.dc_tx_map[first] = map;
/haiku/src/add-ons/kernel/drivers/network/ether/dec21xxx/dev/de/
H A Dif_de.c3565 "unable to load rx map, error = %d\n", error);
3901 bus_dmamap_t *map; local
3988 "unable to load tx map, error = %d\n", error);
4052 map = eop->di_map;
4054 ri->ri_nextout->di_map = map;
4526 device_printf(dev, "failed to create map for %s buffer %d\n",
4577 * we can map MCLBYTES so that it will accept a full MCLBYTES cluster,
4578 * but we will only map the first TULIP_RX_BUFLEN bytes. This is not
4588 * Allocate a DMA tag, memory, and map for setup descriptor
4886 device_printf(dev, "couldn't map interrup
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/ipro100/dev/fxp/
H A Dif_fxp.c112 * The configuration byte map has several undefined fields which
281 bus_dmamap_t map);
364 bus_dma_tag_t dmat, bus_dmamap_t map)
370 bus_dmamap_sync(dmat, map,
769 device_printf(dev, "can't create DMA map for TX\n");
775 device_printf(dev, "can't create spare DMA map\n");
787 device_printf(dev, "can't create DMA map for RX\n");
2028 /* Reuse RFA and loaded DMA map. */
363 fxp_dma_wait(struct fxp_softc *sc, volatile uint16_t *status, bus_dma_tag_t dmat, bus_dmamap_t map) argument
/haiku/src/add-ons/kernel/drivers/network/ether/jmicron2x0/dev/jme/
H A Dif_jme.c557 uint32_t map[MSINUM_NUM_INTR_SOURCE / JME_MSI_MESSAGES]; local
559 bzero(map, sizeof(map));
562 map[MSINUM_REG_INDEX(N_INTR_TXQ0_COMP)] =
564 map[MSINUM_REG_INDEX(N_INTR_TXQ1_COMP)] |=
566 map[MSINUM_REG_INDEX(N_INTR_TXQ2_COMP)] |=
568 map[MSINUM_REG_INDEX(N_INTR_TXQ3_COMP)] |=
570 map[MSINUM_REG_INDEX(N_INTR_TXQ4_COMP)] |=
572 map[MSINUM_REG_INDEX(N_INTR_TXQ5_COMP)] |=
574 map[MSINUM_REG_INDE
3181 bus_dmamap_t map; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/marvell_yukon/dev/msk/
H A Dif_msk.c903 bus_dmamap_t map; local
940 map = rxd->rx_dmamap;
942 sc_if->msk_cdata.msk_rx_sparemap = map;
961 bus_dmamap_t map; local
998 map = rxd->rx_dmamap;
1000 sc_if->msk_cdata.msk_jumbo_rx_sparemap = map;
2181 /* Allocate DMA'able memory and load the DMA map for status ring. */
2330 /* Allocate DMA'able memory and load the DMA map for Tx ring. */
2351 /* Allocate DMA'able memory and load the DMA map for Rx ring. */
2466 /* Allocate DMA'able memory and load the DMA map fo
2638 bus_dmamap_t map; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/nforce/dev/nfe/
H A Dif_nfe.c384 device_printf(dev, "couldn't map memory resources\n");
1137 device_printf(sc->nfe_dev, "could not create desc DMA map\n");
1145 /* map desc to device visible address space */
1150 device_printf(sc->nfe_dev, "could not load desc DMA map\n");
1173 "could not create Rx DMA spare map\n");
1188 "could not create Rx DMA map\n");
1260 /* Allocate DMA'able memory and load the DMA map for jumbo Rx ring. */
1287 "could not create jumbo Rx DMA spare map\n");
1299 "could not create jumbo Rx DMA map\n");
1309 * so don't fail on creating dma tag/map fo
2004 bus_dmamap_t map; local
2060 bus_dmamap_t map; local
2415 bus_dmamap_t map; local
[all...]

Completed in 183 milliseconds

1234567891011>>