Searched refs:slot (Results 1 - 25 of 56) sorted by path

123

/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php106 // name of session variable holding the qemu slot; not yet used correctly
500 err("No available qemu slot, please try later.");
596 "or open <a href=\"" . $_SERVER['PHP_SELF'] . "?getfile=vncinfo&slot=" . vnc_display() . "\">this file</a>, " .
/haiku/headers/private/kernel/boot/
H A Ddisk_identifier.h40 uint8 slot; member in struct:disk_identifier::__anon1042::__anon1044
/haiku/headers/private/kernel/util/
H A DMultiHashTable.h109 ValueType *slot = NULL; local
113 slot = HashTable::fTable[index];
116 while (slot) {
117 if (HashTable::fDefinition.Compare(key, slot))
119 slot = HashTable::_Link(slot);
122 if (slot == NULL)
125 return ValueIterator(this, index, slot);
H A DOpenHashTable.h159 ValueType* slot = fTable[index]; local
161 while (slot) {
162 if (fDefinition.Compare(key, slot))
164 slot = _Link(slot);
167 return slot;
228 ValueType* slot = fTable[index]; local
230 while (slot) {
231 ValueType* next = _Link(slot);
233 if (value == slot) {
408 ValueType* slot = fTable[index]; local
[all...]
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_pci.h132 nvme_pci_device_probe(const struct pci_slot_match *slot);
H A Dnvme_spec.h1104 * First slot is read-only.
1819 * Firmware slot information (mandatory).
1937 * Firmware slot information page (\ref NVME_LOG_FIRMWARE_SLOT)
1945 uint8_t slot : 3; member in struct:nvme_firmware_page::__anon43
2088 * Firmware Slot. Specifies the firmware slot that shall be used for the
2089 * Commit Action. The controller shall choose the firmware slot (slot 1 - 7)
H A Dnvme.c78 struct pci_slot_match slot; local
84 memset(&slot, 0, sizeof(struct pci_slot_match));
109 nvme_err("Malformed PCI device slot name %s\n",
115 slot.domain = (uint32_t)strtoul(domain, &end, 16);
116 if ((end && *end) || (slot.domain > 0xffff)) {
117 nvme_err("Invalid domain number: 0x%X\n", slot.domain);
121 slot.domain = PCI_MATCH_ANY;
124 slot.bus = (uint32_t)strtoul(bus, &end, 16);
125 if ((end && *end) || (slot.bus > 0xff)) {
126 nvme_err("Invalid bus number: 0x%X\n", slot
177 char *slot; local
[all...]
H A Dnvme.h265 * PCI slot domain.
270 * PCI slot bus.
275 * PCI slot bus device number.
280 * PCI slot device function.
695 * @param slot Firmware image slot to use
700 void *fw, size_t size, int slot);
H A Dnvme_ctrlr.c1345 void *fw, size_t size, int slot)
1379 fw_commit.fs = slot;
1344 nvme_ctrlr_update_firmware(struct nvme_ctrlr *ctrlr, void *fw, size_t size, int slot) argument
/haiku/src/add-ons/kernel/drivers/network/wlan/marvell88w8335/dev/malo/
H A Dif_malo.h320 /* slot = 0 if regular, slot = 1 if short. */
321 uint8_t slot; member in struct:malo_cmd_fw_setslot
H A Dif_malohal.c839 cmd->slot = (is_short == 1 ? 1 : 0);
/haiku/src/system/kernel/arch/arm/paging/
H A Darm_physical_page_mapper_large_memory.h18 // one slot is for use in interrupts
50 inline void PutSlot(PhysicalPageSlot* slot);
/haiku/src/system/kernel/arch/m68k/paging/040/
H A DM68KPagingMethod040.cpp231 // init slot list
235 PhysicalPageSlot* slot = &fSlots[i]; local
236 slot->next = slot + 1;
237 slot->pool = this;
238 slot->address = slotAddress;
269 // create an area that can contain the page table and the slot
/haiku/src/system/kernel/arch/m68k/paging/
H A Dm68k_physical_page_mapper_large_memory.h41 inline void PutSlot(PhysicalPageSlot* slot);
/haiku/src/system/kernel/arch/x86/paging/32bit/
H A DX86PagingMethod32Bit.cpp162 // init slot list
166 PhysicalPageSlot* slot = &fSlots[i]; local
167 slot->next = slot + 1;
168 slot->pool = this;
169 slot->address = slotAddress;
200 // create an area that can contain the page table and the slot
/haiku/src/system/kernel/arch/x86/paging/pae/
H A DX86PagingMethodPAE.cpp102 // + 1 page for the free virtual slot (no physical page needed)
152 TRACE("free virtual slot: %#" B_PRIxADDR ", PTE: %p\n",
258 // We don't need a physical page for the free virtual slot.
479 // init slot list
484 PhysicalPageSlot* slot = &fSlots[i]; local
485 slot->next = slot + 1;
486 slot->pool = this;
487 slot->address = slotAddress;
518 // create an area that can contain the page table and the slot
[all...]
/haiku/src/system/kernel/arch/x86/paging/
H A Dx86_physical_page_mapper_large_memory.h18 // one slot is for use in interrupts
50 inline void PutSlot(PhysicalPageSlot* slot);
/haiku/src/system/kernel/debug/
H A Ddebug_paranoia.cpp356 paranoia_slot* slot = sSlotFreeList;
357 sSlotFreeList = slot->nextFree;
358 return slot;
363 free_slot(paranoia_slot* slot) argument
365 slot->nextFree = sSlotFreeList;
366 sSlotFreeList = slot;
373 int slot = (addr_t)set->Object() % PARANOIA_HASH_SIZE; local
374 set->SetHashNext(sCheckSetHash[slot]);
375 sCheckSetHash[slot] = set;
382 int slot local
400 int slot = (addr_t)object % PARANOIA_HASH_SIZE; local
432 paranoia_slot* slot = allocate_slot(); local
544 paranoia_slot* slot = allocate_slot(); local
[all...]
/haiku/src/system/libroot/posix/
H A Dsyslog.cpp67 int32 slot = tls_allocate(); local
69 if (slot < 0) {
74 sThreadContextSlot = slot;
/haiku/src/tools/fs_shell/
H A DOpenHashTable.h159 ValueType* slot = fTable[index]; local
161 while (slot) {
162 if (fDefinition.Compare(key, slot))
164 slot = _Link(slot);
167 return slot;
228 ValueType* slot = fTable[index]; local
230 while (slot) {
231 ValueType* next = _Link(slot);
233 if (value == slot) {
408 ValueType* slot = fTable[index]; local
[all...]
/haiku/src/add-ons/kernel/busses/mmc/
H A Dsdhci_pci.cpp40 #define SLOT_NUMBER "device/slot"
59 uint8_t bar, slot; local
60 if (gDeviceManager->get_attr_uint8(node, SLOT_NUMBER, &slot, false) < B_OK
65 TRACE("Register SD bus at slot %d, using bar %d\n", slot + 1, bar);
70 for (; bar < 6 && slot > 0; bar++, slot--) {
96 // map the slot registers
160 for (uint8_t slot = 0; slot < slotsCoun
[all...]
/haiku/src/add-ons/kernel/busses/usb/
H A Dxhci.cpp1160 endpoint->device->slot);
1523 uint8 slot = XHCI_MAX_SLOTS; local
1524 status_t status = EnableSlot(&slot);
1526 TRACE_ERROR("failed to enable slot: %s\n", strerror(status));
1530 if (slot == 0 || slot > fSlotCount) {
1531 TRACE_ERROR("AllocateDevice: bad slot\n");
1535 if (fDevices[slot].slot != 0) {
1536 TRACE_ERROR("AllocateDevice: slot alread
2150 ConfigureEndpoint(xhci_endpoint* ep, uint8 slot, uint8 number, uint8 type, bool directionIn, uint16 interval, uint16 maxPacketSize, usb_speed speed, uint8 maxBurst, uint16 bytesPerInterval) argument
2548 Ring(uint8 slot, uint8 endpoint) argument
2624 slot = TRB_3_SLOT_GET(flags); local
2862 EnableSlot(uint8* slot) argument
2880 DisableSlot(uint8 slot) argument
2893 SetAddress(uint64 inputContext, bool bsr, uint8 slot) argument
2909 ConfigureEndpoint(uint64 inputContext, bool deconfigure, uint8 slot) argument
2925 EvaluateContext(uint64 inputContext, uint8 slot) argument
2993 SetTRDequeue(uint64 dequeue, uint16 stream, uint8 endpoint, uint8 slot) argument
3009 ResetDevice(uint8 slot) argument
[all...]
H A Dxhci.h72 uint8 slot; member in struct:xhci_device
140 status_t ConfigureEndpoint(xhci_endpoint* ep, uint8 slot,
182 void Ring(uint8 slot, uint8 endpoint);
186 status_t EnableSlot(uint8 *slot);
187 status_t DisableSlot(uint8 slot);
189 uint8 slot);
191 bool deconfigure, uint8 slot);
193 uint8 slot);
197 uint8 endpoint, uint8 slot);
198 status_t ResetDevice(uint8 slot);
[all...]
H A Dxhci_hardware.h450 struct xhci_slot_ctx slot; member in struct:xhci_input_device_ctx
456 struct xhci_slot_ctx slot; member in struct:xhci_device_ctx
/haiku/src/add-ons/kernel/drivers/network/ether/syskonnect/dev/sk/
H A Dif_sk.c707 sk_setfilt(sc_if, addr, slot)
710 int slot;
714 base = XM_RXFILT_ENTRY(slot);

Completed in 336 milliseconds

123