Searched refs:handler (Results 201 - 225 of 281) sorted by relevance

1234567891011>>

/haiku/src/kits/interface/
H A DWindow.cpp2893 //! Rename the handler and its thread
2913 // change the handler's name
2946 preferred handler, and expects them to be correctly distributed to their
2997 // Get the target handler
3000 BHandler* handler = NULL; local
3004 handler = PreferredHandler();
3005 if (handler == NULL)
3006 handler = this;
3009 B_HANDLER_TOKEN, (void**)&handler);
3011 // if this handler does
3388 BHandler* handler; local
3902 BHandler* handler; local
[all...]
H A DMenuWindow.cpp258 BMenuWindow::DispatchMessage(BMessage *message, BHandler *handler) argument
260 BWindow::DispatchMessage(message, handler);
/haiku/src/apps/terminal/
H A DAppearPrefView.cpp224 PrefHandler* handler = PrefHandler::Default(); local
225 if (handler->getInt32(PREF_ROWS) != rows) {
229 if (handler->getInt32(PREF_COLS) != columns) {
/haiku/src/system/kernel/arch/arm/
H A Darch_int.cpp366 // If this CPU or this thread has a fault handler, we're allowed to be
390 panic("page fault in debugger without fault handler! Touching "
404 // If a page fault handler is installed, we're allowed to be here.
408 uintptr_t handler = reinterpret_cast<uintptr_t>(thread->fault_handler); local
410 if (frame->pc != handler) {
411 frame->pc = handler;
415 // The fault happened at the fault handler address. This is a
417 panic("page fault, interrupts disabled, fault handler loop. "
438 // the page fault handler wants us to modify the iframe to set the
/haiku/src/system/kernel/arch/riscv64/
H A Darch_int.cpp264 // If the thread has a signal handler for the signal, we simply send it
470 panic("page fault in debugger without fault handler! Touching "
479 addr_t handler = (addr_t)(thread->fault_handler); local
480 if (frame->epc != handler) {
481 frame->epc = handler;
/haiku/headers/os/app/
H A DApplication.h85 BHandler* handler);
/haiku/headers/os/game/
H A DDirectWindow.h74 BHandler* 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/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/libs/compat/freebsd_network/compat/sys/
H A Dbus.h94 driver_filter_t* filter, driver_intr_t handler, void *arg, void **_cookie);
H A Dtaskqueue.h105 void _task_init(struct task *, int prio, task_fn_t handler, void *arg);
188 * from a fast interrupt handler context.
/haiku/src/preferences/shortcuts/
H A DShortcutsWindow.cpp771 ShortcutsWindow::DispatchMessage(BMessage* message, BHandler* handler) argument
831 BWindow::DispatchMessage(message, handler);
832 else if (handler == fColumnListView
845 BWindow::DispatchMessage(message, handler);
/haiku/headers/private/kernel/
H A Duser_debugger.h257 bool user_debug_handle_signal(int signal, struct sigaction *handler,
/haiku/src/add-ons/kernel/bus_managers/virtio/
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/apps/mediaplayer/
H A DMainWin.h42 BHandler* handler);
/haiku/src/kits/tracker/
H A DFilePanelPriv.h75 virtual void DispatchMessage(BMessage* message, BHandler* handler);
/haiku/src/system/kernel/
H A Dint.cpp102 sVectors[i].handler_list == NULL ? ", no handler" : "");
298 // want to call another interrupt handler.
334 // we have an interrupt handler installed that does not
429 /*! Install a handler to be called when an interrupt is triggered
433 install_io_interrupt_handler(int32 vector, interrupt_handler handler, void *data, argument
450 io->func = handler;
459 // and then insert the handler
481 // The driver registering this interrupt handler doesn't know
483 // handler returns. This is incompatible with shared interrupts
486 // handler a
527 remove_io_interrupt_handler(int32 vector, interrupt_handler handler, void *data) argument
[all...]
/haiku/headers/private/virtio/
H A Dvirtio.h130 virtio_callback_func handler, void* cookie);
/haiku/src/apps/cortex/NodeManager/
H A DNodeRef.h293 BHandler* handler);
296 BHandler* handler);
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
/haiku/src/apps/diskusage/
H A DScanner.cpp27 Scanner::Scanner(BVolume *v, BHandler *handler) argument
30 fListener(handler),
/haiku/src/apps/deskcalc/
H A DExpressionTextView.cpp129 BBitmap** bitmap, BPoint* point, BHandler** handler)
131 InputTextView::GetDragParameters(dragMessage, bitmap, point, handler);
128 GetDragParameters(BMessage* dragMessage, BBitmap** bitmap, BPoint* point, BHandler** handler) argument
/haiku/src/system/kernel/arch/arm64/
H A Darch_int.cpp304 uintptr_t handler = reinterpret_cast<uintptr_t>(thread->fault_handler); local
306 frame->elr = handler;

Completed in 169 milliseconds

1234567891011>>