HomeSort by: relevance | last modified time | path
    Searched defs:handlers (Results 1 - 4 of 4) sorted by relevancy

  /src/lib/libc/stdlib/
quick_exit.c 39 * Linked list of quick exit handlers. This is simpler than the atexit()
49 * Lock protecting the handlers list.
56 * Stack of cleanup handlers. These will be invoked in reverse order when
58 static struct quick_exit_handler *handlers; variable in typeref:struct:quick_exit_handler *
73 h->next = handlers;
74 handlers = h;
90 for (h = handlers; NULL != h; h = h->next)
  /src/sys/dev/pci/cxgb/
cxgb_offload.h 80 cxgb_cpl_handler_func *handlers; member in struct:cxgb_client
117 /* Flags for return value of CPL message handlers */
  /src/sbin/sysctl/
sysctl.c 160 * "handlers"
182 } handlers[] = { variable in typeref:typename:const struct handlespec[]
358 if ((re = malloc(sizeof(*re) * __arraycount(handlers))) == NULL)
413 p = &handlers[0];
  /src/sys/external/bsd/ena-com/
ena_com.h 394 /* Holds aenq handlers. Indexed by AENQ event group */
396 ena_aenq_handler handlers[ENA_MAX_HANDLERS]; member in struct:ena_aenq_handlers
437 * @aenq_handlers: Those handlers to be called upon event.
485 /* ena_com_get_io_handlers - Return the io queue handlers

Completed in 43 milliseconds