Searched refs:handler (Results 176 - 200 of 282) sorted by path

1234567891011>>

/haiku/src/add-ons/kernel/drivers/input/i2c_hid/
H A DDriver.cpp38 ProtocolHandler* handler; member in struct:device_cookie
106 ProtocolHandler *handler = (ProtocolHandler *)gDeviceList->DeviceAt(i);
107 if (!handler)
110 HIDDevice *device = handler->Device();
116 handler = device->ProtocolHandlerAt(i);
117 if (handler == NULL)
120 gDeviceList->RemoveDevice(NULL, handler);
123 // this handler's device belongs to the one removed
168 ProtocolHandler *handler = (ProtocolHandler *)gDeviceList->FindDevice(path); local
169 TRACE(" path %s: handler
403 ProtocolHandler *handler = hidDevice->ProtocolHandlerAt(i); local
[all...]
H A DHIDDevice.cpp124 ProtocolHandler *handler = fProtocolHandlerList; local
125 while (handler != NULL) {
126 ProtocolHandler *next = handler->NextHandler();
127 delete handler;
128 handler = next;
136 HIDDevice::Open(ProtocolHandler *handler, uint32 flags) argument
146 HIDDevice::Close(ProtocolHandler *handler) argument
193 ProtocolHandler *handler = fProtocolHandlerList; local
194 while (handler != NULL) {
196 return handler;
[all...]
H A DHIDDevice.h28 status_t Open(ProtocolHandler *handler, uint32 flags);
29 status_t Close(ProtocolHandler *handler);
/haiku/src/add-ons/kernel/drivers/input/usb_hid/
H A DDriver.cpp25 ProtocolHandler* handler; member in struct:device_cookie
148 ProtocolHandler *handler = hidDevice->ProtocolHandlerAt(i); local
149 if (handler == NULL)
160 const char *basePath = handler->BasePath();
165 handler->SetPublishPath(strdup(pathBuffer));
170 gDeviceList->AddDevice(handler->PublishPath(), handler);
198 ProtocolHandler *handler = (ProtocolHandler *)gDeviceList->DeviceAt(i); local
199 if (!handler)
202 HIDDevice *device = handler
243 ProtocolHandler *handler = (ProtocolHandler *)gDeviceList->FindDevice(name); local
[all...]
H A DHIDDevice.cpp220 ProtocolHandler *handler = fProtocolHandlerList; local
221 while (handler != NULL) {
222 ProtocolHandler *next = handler->NextHandler();
223 delete handler;
224 handler = next;
239 HIDDevice::Open(ProtocolHandler *handler, uint32 flags) argument
247 HIDDevice::Close(ProtocolHandler *handler) argument
303 ProtocolHandler *handler = fProtocolHandlerList; local
304 while (handler != NULL) {
306 return handler;
[all...]
H A DHIDDevice.h30 status_t Open(ProtocolHandler *handler, uint32 flags);
31 status_t Close(ProtocolHandler *handler);
/haiku/src/add-ons/kernel/drivers/network/ether/dec21xxx/
H A Dglue.c35 __haiku_handle_fbsd_drivers_list(status_t (*handler)(driver_t *[], driver_t *[]))
42 return (*handler)(drivers, NULL);
/haiku/src/add-ons/kernel/drivers/network/ether/ipro1000/
H A Dglue.c21 __haiku_handle_fbsd_drivers_list(status_t (*handler)(driver_t *[], driver_t *[]))
28 return (*handler)(drivers, NULL);
/haiku/src/add-ons/kernel/drivers/network/ether/pcnet/
H A Dglue.c49 __haiku_handle_fbsd_drivers_list(status_t (*handler)(driver_t *[], driver_t *[]))
56 return (*handler)(drivers, NULL);
/haiku/src/add-ons/kernel/drivers/network/wlan/ralinkwifi/
H A Dglue.c49 __haiku_handle_fbsd_drivers_list(status_t (*handler)(driver_t *[], driver_t *[]))
61 return (*handler)(pci_drivers, usb_drivers);
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/
H A Dglue.c47 __haiku_handle_fbsd_drivers_list(status_t (*handler)(driver_t *[], driver_t *[]))
57 return (*handler)(pci_drivers, usb_drivers);
/haiku/src/add-ons/kernel/drivers/wmi/
H A DWMIACPI.cpp45 // install notify handler
242 acpi_notify_handler handler, void* context)
251 if (info->handler == NULL)
254 info->handler = handler;
274 info->handler = NULL;
351 if (wmi->handler != NULL) {
352 TRACE("_Notify found handler for event 0x%" B_PRIx32 "\n",
354 wmi->handler(device, value, wmi->handler_context);
241 InstallEventHandler(const char* guidString, acpi_notify_handler handler, void* context) argument
H A DWMIDevice.cpp53 acpi_notify_handler handler, void* context)
56 if (guidString == NULL || handler == NULL)
59 return fBus->InstallEventHandler(guidString, handler, context);
133 acpi_notify_handler handler, void* context)
136 return device->InstallEventHandler(guidString, handler, context);
52 InstallEventHandler(const char* guidString, acpi_notify_handler handler, void* context) argument
132 wmi_install_event_handler(wmi_device _device, const char* guidString, acpi_notify_handler handler, void* context) argument
H A DWMIPrivate.h62 acpi_notify_handler handler, void* context);
92 acpi_notify_handler handler; member in struct:wmi_info
118 acpi_notify_handler handler, void* context);
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dlogging.h40 /* Set the logging handler from one of the functions, below. */
41 void ntfs_log_set_handler(ntfs_log_handler *handler
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DPackage.cpp734 LoaderContentHandler handler(this, settings);
735 error = handler.Init();
739 error = packageReader.ParseContent(&handler);
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DFileSystem.cpp417 SingleReplyRequestHandler handler(MOUNT_VOLUME_REPLY);
419 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
745 KernelRequestHandler handler(this, NODE_MONITORING_EVENT_REPLY);
746 port->SendRequest(&allocator, &handler);
766 KernelRequestHandler handler(this, NO_REQUEST);
767 fNotificationPort->HandleRequests(&handler, NULL,
772 // TODO: We should probably use a special handler that sends an ack reply,
774 KernelRequestHandler handler(this, NO_REQUEST);
775 fNotificationPort->HandleRequests(&handler, NULL, 0);
H A DVolume.cpp906 KernelRequestHandler handler(this, SYNC_VOLUME_REPLY);
908 error = _SendRequest(port, &allocator, &handler, (Request**)&reply);
969 KernelRequestHandler handler(this, WRITE_FS_INFO_REPLY);
971 error = _SendRequest(port, &allocator, &handler, (Request**)&reply);
1034 KernelRequestHandler handler(this, GET_VNODE_NAME_REPLY);
1036 error = _SendRequest(port, &allocator, &handler, (Request**)&reply);
1091 KernelRequestHandler handler(this, READ_VNODE_REPLY);
1093 error = _SendRequest(port, &allocator, &handler, (Request**)&reply);
1172 KernelRequestHandler handler(this, FS_REMOVE_VNODE_REPLY);
1174 error = _SendRequest(port, &allocator, &handler, (Reques
4391 _SendRequest(RequestPort* port, RequestAllocator* allocator, RequestHandler* handler, Request** reply) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/
H A DUserlandRequestHandler.cpp2480 SingleReplyRequestHandler handler(RECEIPT_ACK_REPLY);
2481 return fPort->SendRequest(&allocator, &handler);
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_signals.c25 static int set_one_signal_handler(int sig, void (*handler)(int), int remove) argument
31 sa.sa_handler = remove ? SIG_DFL : handler;
36 perror("fuse: cannot get old signal handler");
40 if (old_sa.sa_handler == (remove ? handler : SIG_DFL) &&
42 perror("fuse: cannot set signal handler");
/haiku/src/add-ons/kernel/network/stack/
H A Ddevice_interfaces.cpp126 // Find handler for this packet
133 net_device_handler* handler = iterator.Next(); local
135 // If the handler returns B_OK, it consumed the buffer - first
136 // handler wins.
137 if ((handler->type == genericType
138 || handler->type == specificType)
139 && handler->func(handler->cookie, device, buffer) == B_OK)
152 /*! The domain's device receive handler - this will inject the net_buffers into
153 the protocol layer (the domain's registered receive handler)
682 net_device_handler* handler = new(std::nothrow) net_device_handler; local
[all...]
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DResponse.cpp453 Response::Parse(BDataIO& stream, LiteralHandler* handler) argument
456 fLiteralHandler = handler;
757 ResponseParser::SetLiteralHandler(LiteralHandler* handler) argument
759 fLiteralHandler = handler;
H A DResponse.h147 void Parse(BDataIO& stream, LiteralHandler* handler);
193 void SetLiteralHandler(LiteralHandler* handler);
/haiku/src/apps/activitymonitor/
H A DSystemInfo.h19 SystemInfo(SystemInfoHandler* handler = NULL);
/haiku/src/apps/cortex/NodeManager/
H A DNodeRef.cpp529 BHandler* handler) {
530 ASSERT(handler);
534 BMessenger m(handler, NULL, &error);
539 " handler %p\n",
540 strerror(error), handler));
546 m_positionInvoker.AddTarget(handler);
556 BHandler* handler) {
557 ASSERT(handler);
562 int32 index = m_positionInvoker.IndexOfTarget(handler);
528 addPositionObserver( BHandler* handler) argument
555 removePositionObserver( BHandler* handler) argument

Completed in 143 milliseconds

1234567891011>>