Searched refs:handlers (Results 1 - 4 of 4) sorted by relevance

/haiku/src/kits/debugger/value/
H A DTypeHandlerRoster.cpp227 TypeHandlerList* handlers = new(std::nothrow) TypeHandlerList(10, false); local
228 ObjectDeleter<TypeHandlerList> listDeleter(handlers);
229 if (handlers == NULL)
234 if (!handlers->AddItem(handler))
239 if (handlers->CountItems() == 0)
242 for (int32 i = 0; TypeHandler* handler = handlers->ItemAt(i); i++)
245 handlers->SortItems(CompareTypeHandlers, type);
247 _handlers = handlers;
/haiku/src/kits/app/
H A DHandler.cpp707 vector<const BHandler*>& handlers = fHandlerMap[what]; local
708 vector<const BHandler*>::iterator iterator = handlers.begin();
710 while (iterator != handlers.end()) {
718 iterator = handlers.erase(iterator);
726 // first iterate over the list of handlers and try to make valid
779 vector<const BHandler*> &handlers = fHandlerMap[what];
782 iter = find(handlers.begin(), handlers.end(), handler);
783 if (iter != handlers.end()) {
788 handlers
[all...]
/haiku/src/system/kernel/arch/ppc/
H A Darch_int.cpp284 void *handlers = (void *)args->arch_args.exception_handlers.start; local
288 if (!IS_KERNEL_ADDRESS(handlers)) {
289 addr_t address = (addr_t)handlers;
297 handlers = (void*)(address);
302 &handlers, B_EXACT_ADDRESS, args->arch_args.exception_handlers.size,
307 dprintf("exception handlers at %p\n", handlers);
309 // copy the handlers into this area
310 memcpy(handlers, &__irqvec_start, args->arch_args.exception_handlers.size);
311 arch_cpu_sync_icache(handlers, arg
[all...]
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DVariablesView.cpp2845 TypeHandlerList* handlers = NULL; local
2847 child->GetType(), handlers);
2851 ObjectDeleter<TypeHandlerList> listDeleter(handlers);
2852 while (handlers->CountItems() > 0) {
2853 TypeHandler* handler = handlers->ItemAt(0);
2874 handlers->RemoveItemAt(0);
2886 for (int32 i = 0; TypeHandler* handler = handlers->ItemAt(i);

Completed in 52 milliseconds