Searched refs:handler (Results 151 - 175 of 282) sorted by path

1234567891011>>

/haiku/headers/os/interface/
H A DAlert.h87 BHandler* handler);
H A DWindow.h119 BHandler* handler);
/haiku/headers/os/kernel/
H A Ddebugger.h166 B_DEBUG_MESSAGE_SET_SIGNAL_HANDLER, // set/get the team's signal handler for
374 struct sigaction handler; // the new signal handler member in struct:__anon53
386 struct sigaction handler; // the signal handler member in struct:__anon55
535 struct sigaction handler; // the signal handler member in struct:__anon70
/haiku/headers/posix/
H A Dpthread.h270 struct __pthread_cleanup_handler *handler);
/haiku/headers/private/i2c/
H A Di2c.h129 i2c_intr_cookie intrCookie, interrupt_handler handler, void* data);
/haiku/headers/private/kernel/arch/m68k/
H A Darch_cpu.h445 extern bool m68k_set_fault_handler(addr_t *handlerLocation, addr_t handler)
/haiku/headers/private/kernel/arch/ppc/
H A Darch_cpu.h177 extern bool ppc_set_fault_handler(addr_t *handlerLocation, addr_t handler)
/haiku/headers/private/kernel/
H A Duser_debugger.h257 bool user_debug_handle_signal(int signal, struct sigaction *handler,
/haiku/headers/private/netservices/
H A DUrlProtocolDispatchingListener.h43 BHandler* handler);
/haiku/headers/private/package/hpkg/
H A DReaderImplBase.h161 AttributeHandler* handler);
572 ReaderImplBase::PushAttributeHandler(AttributeHandler* handler) argument
574 fAttributeHandlerStack.Add(handler);
/haiku/headers/private/virtio/
H A Dvirtio.h130 virtio_callback_func handler, void* cookie);
/haiku/headers/private/wmi/
H A Dwmi.h34 const char* guidString, acpi_notify_handler handler, void* context);
/haiku/src/add-ons/input_server/devices/virtio/
H A DVirtioInputDevice.cpp293 VirtioInputHandler &handler = *((VirtioInputHandler*)arg); local
294 handler.Reset();
295 while (handler.fRun) {
297 status_t res = ioctl(handler.fDeviceFd.Get(), virtioInputRead, &pkt,
302 handler.PacketReceived(pkt);
/haiku/src/add-ons/kernel/bus_managers/acpi/
H A DACPIPrivate.h67 uint32 handlerType, acpi_notify_handler handler,
70 uint32 handlerType, acpi_notify_handler handler);
81 uint32 type, acpi_gpe_handler handler, void *data);
89 acpi_adr_space_handler handler,
93 acpi_adr_space_handler handler);
105 acpi_event_handler handler, void *data);
107 acpi_event_handler handler);
184 acpi_notify_handler handler, void* context);
186 acpi_notify_handler handler);
195 acpi_gpe_handler handler, voi
[all...]
H A DBusManager.cpp249 "Failed to install global GPE-handler.");
253 "Failed to install global Notify-handler.");
325 acpi_notify_handler handler, void *context)
328 (ACPI_NOTIFY_HANDLER)handler, context) == AE_OK ? B_OK : B_ERROR;
334 acpi_notify_handler handler)
337 (ACPI_NOTIFY_HANDLER)handler) == AE_OK ? B_OK : B_ERROR;
385 acpi_gpe_handler handler, void *data)
388 (ACPI_GPE_HANDLER)handler, data) == AE_OK ? B_OK : B_ERROR;
403 acpi_adr_space_handler handler, acpi_adr_space_setup setup, void *data)
406 (ACPI_ADR_SPACE_HANDLER)handler, (ACPI_ADR_SPACE_SETU
324 install_notify_handler(acpi_handle device, uint32 handlerType, acpi_notify_handler handler, void *context) argument
333 remove_notify_handler(acpi_handle device, uint32 handlerType, acpi_notify_handler handler) argument
384 install_gpe_handler(acpi_handle handle, uint32 gpeNumber, uint32 type, acpi_gpe_handler handler, void *data) argument
402 install_address_space_handler(acpi_handle handle, uint32 spaceId, acpi_adr_space_handler handler, acpi_adr_space_setup setup, void *data) argument
412 remove_address_space_handler(acpi_handle handle, uint32 spaceId, acpi_adr_space_handler handler) argument
451 install_fixed_event_handler(uint32 event, acpi_event_handler handler, void *data) argument
460 remove_fixed_event_handler(uint32 event, acpi_event_handler handler) argument
[all...]
H A DDevice.cpp20 acpi_notify_handler handler, void *context)
22 return install_notify_handler(device->handle, handlerType, handler,
28 acpi_notify_handler handler)
30 return remove_notify_handler(device->handle, handlerType, handler);
36 acpi_adr_space_handler handler, acpi_adr_space_setup setup, void *data)
38 return install_address_space_handler(device->handle, spaceId, handler,
44 acpi_adr_space_handler handler)
46 return remove_address_space_handler(device->handle, spaceId, handler);
19 acpi_install_notify_handler(acpi_device device, uint32 handlerType, acpi_notify_handler handler, void *context) argument
27 acpi_remove_notify_handler(acpi_device device, uint32 handlerType, acpi_notify_handler handler) argument
35 acpi_install_address_space_handler(acpi_device device, uint32 spaceId, acpi_adr_space_handler handler, acpi_adr_space_setup setup, void *data) argument
43 acpi_remove_address_space_handler(acpi_device device, uint32 spaceId, acpi_adr_space_handler handler) argument
/haiku/src/add-ons/kernel/bus_managers/virtio/
H A DVirtioModule.cpp137 virtio_queue_setup_interrupt(virtio_queue _queue, virtio_callback_func handler, argument
142 return queue->SetupInterrupt(handler, cookie);
H A DVirtioPrivate.h131 status_t SetupInterrupt(virtio_callback_func handler,
H A DVirtioQueue.cpp202 VirtioQueue::SetupInterrupt(virtio_callback_func handler, void *cookie) argument
204 fCallback = handler;
/haiku/src/add-ons/kernel/busses/virtio/virtio_mmio/
H A Dvirtio_mmio.cpp552 virtio_callback_func handler, void* cookie)
554 TRACE("virtio_device_queue_setup_interrupt(%p, %p)\n", aQueue, handler);
559 queue->fQueueHandler = handler;
561 queue->fQueueHandlerRef.SetTo((handler == NULL) ? NULL : &dev->fIrqHandler);
551 virtio_device_queue_setup_interrupt(virtio_queue aQueue, virtio_callback_func handler, void* cookie) argument
/haiku/src/add-ons/kernel/drivers/disk/virtual/nbd/
H A Dnbd.c272 #pragma mark ==== nbd handler ====
/haiku/src/add-ons/kernel/drivers/disk/virtual/ram_disk/
H A Dram_disk.cpp1094 status_t (*handler)(DeviceType*, Request*), void* buffer)
1109 status_t error = handler(device, request);
1093 handle_ioctl(DeviceType* device, status_t (*handler)(DeviceType*, Request*), void* buffer) argument
/haiku/src/add-ons/kernel/drivers/graphics/intel_extreme/
H A Dintel_extreme.cpp472 interrupt_handler handler = &gen8_interrupt_handler; local
474 handler = &gen11_interrupt_handler;
476 handler, (void*)&info, 0);
564 // interrupt handler, let's fake the vblank interrupt for our clients
938 interrupt_handler handler = &gen8_interrupt_handler; local
940 handler = &gen11_interrupt_handler;
941 remove_io_interrupt_handler(info.irq, handler, &info);
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DJoystickProtocolHandler.cpp177 TRACE("failed to allocated joystick protocol handler\n");
338 JoystickProtocolHandler *handler = (JoystickProtocolHandler *)data; local
339 while (handler->fUpdateThread == find_thread(NULL)) {
340 status_t result = handler->_Update();
H A DProtocolHandler.cpp103 ProtocolHandler *handler = handlerList; local
104 while (handler != NULL) {
105 handler = handler->NextHandler();
139 TRACE_ALWAYS("unhandled read on protocol handler\n");
149 TRACE_ALWAYS("unhandled write on protocol handler\n");
158 TRACE_ALWAYS("unhandled control on protocol handler\n");

Completed in 140 milliseconds

1234567891011>>