Searched refs:handle (Results 176 - 200 of 247) sorted by relevance

12345678910

/haiku/src/system/kernel/arch/ppc/
H A Darch_vm_translation_map.cpp192 void **handle)
199 put_physical_page_tmap(addr_t virtualAddress, void *handle)
/haiku/headers/private/runtime_loader/
H A Druntime_loader.h33 status_t (*unload_library)(void* handle);
36 status_t (*get_library_symbol)(void* handle, void* caller,
/haiku/src/kits/shared/
H A DIconButton.cpp476 uint8* handle = bits; local
479 gray = uint8((116 * handle[0] + 600 * handle[1]
480 + 308 * handle[2]) / 1024);
481 handle[0] = gray;
482 handle[1] = gray;
483 handle[2] = gray;
484 handle += 4;
/haiku/src/add-ons/kernel/bus_managers/usb/
H A DDevice.cpp212 interfaceInfo->handle = interface->USBID();
256 endpointInfo->handle = 0;
364 (Interface*)GetStack()->GetObject(interface->handle);
368 interface->handle = 0;
585 endpoint->handle = 0;
597 endpoint->handle = pipe->USBID();
647 Pipe* pipe = (Pipe*)GetStack()->GetObject(endpoint->handle);
651 endpoint->handle = 0;
/haiku/src/system/kernel/arch/riscv64/
H A DRISCV64VMTranslationMap.h159 void* handle);
172 void* handle);
/haiku/src/add-ons/kernel/partitioning_systems/intel/
H A Dwrite_support.cpp1281 void* handle = parse_driver_settings_string(parameters); local
1282 if (handle == NULL)
1285 bool active = get_driver_boolean_parameter(handle, "active", false, true);
1286 unload_driver_settings(handle);
1448 void* handle = parse_driver_settings_string(parameters); local
1449 if (handle == NULL)
1452 bool active = get_driver_boolean_parameter(handle, "active", false, true);
1453 unload_driver_settings(handle);
2217 void* handle = parse_driver_settings_string(parameters); local
2218 if (handle
[all...]
/haiku/src/add-ons/kernel/file_systems/fat/
H A Dmkdos.cpp62 void *handle = parse_driver_settings_string(parameterString); local
63 if (handle == NULL)
66 // if (get_driver_boolean_parameter(handle, "noindex", false, true))
68 if (get_driver_boolean_parameter(handle, "verbose", false, true))
71 const char *string = get_driver_parameter(handle, "fat",
77 unload_driver_settings(handle);
/haiku/src/add-ons/kernel/drivers/ports/pc_serial/
H A DDriver.cpp463 void *handle; local
466 handle = load_driver_settings("kernel");
467 if (handle == NULL)
470 const char *str = get_driver_parameter(handle, "serial_debug_port",
480 /* TODO: actually handle this in the kernel debugger too!
481 bool enabled = get_driver_boolean_parameter(handle, "serial_debug_output",
487 unload_driver_settings(handle);
667 /* pc_serial_open - handle open() calls */
688 /* pc_serial_read - handle read() calls */
699 /* pc_serial_write - handle writ
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/usb_rndis/
H A DRNDISDevice.cpp163 fWriteEndpoint = interface->endpoint[0].handle;
165 fReadEndpoint = interface->endpoint[0].handle;
168 fReadEndpoint = interface->endpoint[1].handle;
170 fWriteEndpoint = interface->endpoint[1].handle;
690 fNotifyEndpoint = interface->endpoint[0].handle;
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DInodeRegular.cpp31 FileHandle handle; local
35 &fileID, &handle, delegationData);
41 fileInfo.fHandle = handle;
H A DFileSystem.h55 Delegation* GetDelegation(const FileHandle& handle);
H A DInode.cpp200 FileHandle handle; local
201 status_t result = NFS4Inode::LookUp(name, &change, &fileID, &handle);
207 result = ChildAdded(name, fileID, handle);
414 FileHandle handle; local
417 &changeInfo, &fileID, &handle);
423 result = ChildAdded(name, fileID, handle);
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DCachedDataReader.cpp375 void* handle; local
379 &handle);
388 vm_put_physical_page(address, handle);
/haiku/src/add-ons/accelerants/radeon/
H A DSetDisplayMode.c398 fm.handle = vc->cursor.mem_handle;
403 fm.handle = vc->fb_mem_handle;
440 vc->cursor.mem_handle = am.handle;
458 vc->fb_mem_handle = am.handle;
H A Doverlay_management.c149 node->mem_handle = am.handle;
194 fm.handle = node->mem_handle;
200 SHOW_FLOW( 3, "ups - couldn't free memory (handle=%x, status=%s)",
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DNodeHandle.h126 virtual void QueryHandleClosed(QueryHandle* handle) = 0;
H A DVolumeManager.h72 QueryHandle** handle);
/haiku/src/kits/storage/disk_device/
H A DDiskSystemAddOn.cpp67 const char* parameters, BPartitionHandle** handle)
66 Initialize(BMutablePartition* partition, const char* name, const char* parameters, BPartitionHandle** handle) argument
/haiku/src/system/kernel/arch/x86/paging/pae/
H A DX86PagingMethodPAE.h51 phys_addr_t physicalAddress, void* handle);
195 // ATM we only handle the uncacheable and write-through type explicitly. For
/haiku/src/add-ons/kernel/bus_managers/acpi/
H A DEmbeddedController.cpp102 return obj->reference.handle;
109 acpi_handle handle; local
110 if (acpi->get_handle(scope, obj->string.string, &handle)
112 return handle;
/haiku/src/apps/drivesetup/
H A DPartitionList.cpp355 void* handle = parse_driver_settings_string(partition->Parameters()); local
356 if (handle != NULL) {
357 bool active = get_driver_boolean_parameter(handle, "active", false,
361 unload_driver_settings(handle);
/haiku/src/kits/game/
H A DGameSound.cpp254 BGameSound::Init(gs_id handle) argument
257 fSound = handle;
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DRadeon.h374 int32 *offset, int32 *handle );
377 memory_type_e memory_type, int32 handle );
H A DRadeon.cpp534 int32 *offset, int32 *handle )
549 *handle = am.handle;
555 memory_type_e memory_type, int32 handle )
562 fm.handle = handle;
/haiku/src/add-ons/kernel/drivers/video/usb_vision/
H A Dusb_vision.c103 /* usb_vision_open - handle open() calls */
135 /* usb_vision_read - handle read() calls */
144 /* usb_vision_write - handle write() calls */
167 /* usb_vision_control - handle ioctl calls */
186 /* usb_vision_close - handle close() calls */
297 uvd->control_pipe = control_epi->handle;
298 uvd->data_pipe = data_epi->handle;

Completed in 200 milliseconds

12345678910