Searched refs:handler (Results 226 - 250 of 282) sorted by path

1234567891011>>

/haiku/src/kits/debugger/controllers/
H A DThreadHandler.cpp56 ExpressionEvaluationListener(ThreadHandler* handler) argument
58 fHandler(handler)
283 // fall through if no handler or if we failed to
284 // set a breakpoint at the handler
/haiku/src/kits/interface/
H A DAlert.cpp418 BAlert::DispatchMessage(BMessage* msg, BHandler* handler) argument
420 BWindow::DispatchMessage(msg, handler);
H A DBMCPrivate.cpp77 _BMCFilter_::Filter(BMessage* message, BHandler** handler) argument
80 if (BView* view = dynamic_cast<BView*>(*handler)) {
85 *handler = fMenuField;
H A DMenu.cpp1034 BMenu::SetTargetForItems(BHandler* handler) argument
1038 status = ItemAt(i)->SetTarget(handler);
1602 // Menu windows get the BMenu's handler name
H A DMenuBar.cpp725 BHandler* handler = NULL; local
728 (void**)&handler) == B_OK) {
729 BView* view = dynamic_cast<BView*>(handler);
H A DMenuWindow.cpp258 BMenuWindow::DispatchMessage(BMessage *message, BHandler *handler) argument
260 BWindow::DispatchMessage(message, handler);
H A DTextView.cpp3123 BHandler** handler)
3152 if (handler != NULL)
3153 *handler = NULL;
3122 GetDragParameters(BMessage* drag, BBitmap** bitmap, BPoint* point, BHandler** handler) argument
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...]
/haiku/src/kits/network/libnetservices/
H A DUrlProtocolDispatchingListener.cpp26 (BHandler* handler)
28 fMessenger(handler)
25 BUrlProtocolDispatchingListener(BHandler* handler) argument
/haiku/src/kits/package/
H A DPackageInfo.cpp1187 BPackageInfoContentHandler handler(*this);
1188 return packageReader.ParseContent(&handler);
1203 BHPKG::V1::BPackageInfoContentHandler handler(*this);
1204 return packageReader.ParseContent(&handler);
/haiku/src/kits/package/hpkg/
H A DPackageWriterImpl.cpp673 PackageContentHandler handler(fRootAttribute, fListener, fStringCache);
675 result = packageReader.ParseContent(&handler);
H A DReaderImplBase.cpp685 // the child-handler will notify when it's done
728 // notify the content handler
1018 // init the attribute handler stack
1041 while (AttributeHandler* handler = PopAttributeHandler()) {
1042 if (handler != rootAttributeHandler)
1043 handler->Delete(context);
1108 AttributeHandler* handler = PopAttributeHandler(); local
1109 error = handler->NotifyDone(context);
1115 error = handler->Delete(context);
1130 // create an ignore handler, i
[all...]
/haiku/src/kits/tracker/
H A DFilePanelPriv.cpp112 key_down_filter(BMessage* message, BHandler** handler, BMessageFilter* filter) argument
149 filter->Looper()->PostMessage(B_CANCEL, *handler);
453 TFilePanel::DispatchMessage(BMessage* message, BHandler* handler) argument
455 _inherited::DispatchMessage(message, handler);
1289 // send handler a message and close
H A DFilePanelPriv.h75 virtual void DispatchMessage(BMessage* message, BHandler* handler);
H A DTracker.cpp233 const BHandler* handler, const BLooper* looper = NULL)
235 return TTracker::WatchNode(node, flags, BMessenger(handler, looper));
883 // if folder or query has a preferred handler and it's not the
945 if (message->FindRef("handler", &handlingApp) == B_OK)
960 // Open With resulted in passing refs and a handler,
962 message->RemoveName("handler");
232 WatchNode(const node_ref* node, uint32 flags, const BHandler* handler, const BLooper* looper = NULL) argument
/haiku/src/libs/compat/freebsd_iflib/
H A Diflib.c1671 driver_filter_t filter, driver_intr_t handler, void *arg,
1691 KASSERT(filter == NULL || handler == NULL, ("filter and handler can't both be non-NULL"));
1693 filter, handler, arg, &tag);
6349 driver_filter_t filter, void *filter_arg, driver_intr_t handler, void *arg, const char *name)
6352 return (_iflib_irq_alloc(ctx, irq, rid, filter, handler, arg, name));
1670 _iflib_irq_alloc(if_ctx_t ctx, if_irq_t irq, int rid, driver_filter_t filter, driver_intr_t handler, void *arg, const char *name) argument
6348 iflib_irq_alloc(if_ctx_t ctx, if_irq_t irq, int rid, driver_filter_t filter, void *filter_arg, driver_intr_t handler, void *arg, const char *name) argument
/haiku/src/libs/compat/freebsd_network/
H A Dbus.cpp39 driver_intr_t *handler; member in struct:internal_intr
324 //device_printf(intr->dev, "in interrupt handler.\n");
345 //device_printf(intr->dev, "in soft interrupt handler.\n");
351 intr->handler(intr->arg);
378 driver_filter_t* filter, driver_intr_t handler, void *arg, void **_cookie)
390 intr->handler = handler;
409 snprintf(semName, sizeof(semName), "%s intr handler", dev->device_name);
377 bus_setup_intr(device_t dev, struct resource *res, int flags, driver_filter_t* filter, driver_intr_t handler, void *arg, void **_cookie) argument
H A Dtaskqueue.c173 _task_init(struct task *task, int prio, task_fn_t handler, void *context) argument
177 task->ta_func = 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 Dhaiku-module.h90 status_t __haiku_handle_fbsd_drivers_list(status_t (*handler)(driver_t *[], driver_t *[]));
H A Dsysctl.h107 int (*handler) (SYSCTL_HANDLER_ARGS), const char *fmt, const char *descr)
125 #define SYSCTL_ADD_OID(ctx, parent, nbr, name, kind, a1, a2, handler, fmt, descr) \
126 sysctl_add_oid(ctx, parent, nbr, name, kind, a1, a2, handler, fmt, \
129 #define SYSCTL_ADD_NODE(ctx, parent, nbr, name, access, handler, descr) \
131 0, 0, handler, "N", __DESCR(descr))
174 #define SYSCTL_ADD_PROC(ctx, parent, nbr, name, access, ptr, arg, handler, fmt, descr) \
175 sysctl_add_oid(ctx, parent, nbr, name, (access), ptr, arg, handler, fmt, \
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/appearance/
H A DCurView.cpp24 // Description: cursor handler for the app
410 BitmapView::BitmapView(const BPoint &pt,BMessage *message, const BHandler *handler, const BLooper *looper=NULL) argument
412 BInvoker(message,handler,looper)
H A DCurView.h24 // Description: System cursor handler
54 const BHandler *handler, const BLooper *looper=NULL);
/haiku/src/preferences/filetypes/
H A DIconView.cpp1453 IconView::SetTarget(const BHandler* handler, const BLooper* looper = NULL) argument
1455 return BControl::SetTarget(handler,

Completed in 244 milliseconds

1234567891011>>