/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/external/isc/libsodium/dist/m4/ |
ax_check_catchable_abrt.m4 | 7 # Check whether SIGABRT can be caught using signal handlers. 53 [AC_DEFINE([HAVE_CATCHABLE_ABRT], [1], [Define if SIGABRT can be caught using signal handlers])], 54 [AC_MSG_WARN([On this platform, SIGABRT cannot be caught using signal handlers.])]
|
ax_check_catchable_segv.m4 | 7 # Check whether segmentation violations can be caught using signal handlers. 38 [AC_DEFINE([HAVE_CATCHABLE_SEGV], [1], [Define if segmentation violations can be caught using signal handlers])], 39 [AC_MSG_WARN([On this platform, segmentation violations cannot be caught using signal handlers. This is expected if you enabled a tool such as Address Sanitizer (-fsanitize=address), but be aware that using Address Sanitizer may also significantly reduce performance.])]
|
/src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
Makefile | 3 GVT_SOURCE := gvt.o aperture_gm.o handlers.o vgpu.o trace_points.o firmware.o \
|
/src/sys/arch/acorn32/doc/ |
interrupts | 48 the chain of attached interrupt handlers. 80 when serviced. Stray IRQ handlers may or may not be attached to the end
|
/src/sys/dev/pci/cxgb/ |
cxgb_offload.c | 676 if (toe_tid->ctx && toe_tid->client && toe_tid->client->handlers && 677 toe_tid->client->handlers[CPL_ACT_OPEN_RPL]) { 678 return toe_tid->client->handlers[CPL_ACT_OPEN_RPL] (dev, m, 695 if (toe_tid->ctx && toe_tid->client->handlers && 696 toe_tid->client->handlers[p->opcode]) { 697 return toe_tid->client->handlers[p->opcode] (dev, m, toe_tid->ctx); 719 if (toe_tid->ctx && toe_tid->client->handlers && 720 toe_tid->client->handlers[p->opcode]) { 721 return toe_tid->client->handlers[p->opcode] 739 if (toe_tid->ctx && toe_tid->client->handlers & [all...] |
cxgb_offload.h | 80 cxgb_cpl_handler_func *handlers; member in struct:cxgb_client 117 /* Flags for return value of CPL message handlers */
|
/src/libexec/httpd/ |
lua-bozo.c | 130 SIMPLEQ_INSERT_TAIL(&map->handlers, handler, h_next); 205 SIMPLEQ_INIT(&map->handlers); 364 SIMPLEQ_FOREACH(hndlr, &map->handlers, h_next) {
|
bozohttpd.h | 78 SIMPLEQ_HEAD(, lua_handler) handlers;
|
/src/sys/arch/m68k/060sp/dist/ |
fpsp.doc | 42 Package. This package is essentially a set of exception handlers 44 These exception handlers emulate Unimplemented FP instructions, 47 includes exception handlers to provide full IEEE-754 compliant
|
/src/sys/arch/m68k/fpsp/ |
fpsp.h | 42 * All FPSP handlers begin by executing: 74 * On exit, the handlers execute: 85 * type that was generated. Some handlers may omit the 'frestore'
|
/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
|
ena_com.c | 198 ena_trc_err("aenq handlers pointer is NULL\n"); 1948 if ((group < ENA_MAX_HANDLERS) && aenq_handlers->handlers[group]) 1949 return aenq_handlers->handlers[group];
|
/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/arch/mips/mips/ |
locore_mips1.S | 995 * R3000 TLB exception handlers 1708 #### The kernel exception handlers. 1743 ##### The user exception handlers.
|
mipsX_subr.S | 371 * Loongson2 processors don't have separate tlbmiss and xtlbmiss handlers; 1823 * R4000 TLB exception handlers 3026 #### The kernel exception handlers. 3074 ##### The user exception handlers.
|
/src/sys/dev/pci/ |
if_ena.c | 246 * Contains pointers to event handlers, e.g. link state change. 1330 "Failed to get TX queue handlers. TX queue num" 1359 "Failed to get RX queue handlers. RX queue num" 3957 ******************************** AENQ Handlers ******************************* 3989 * This handler will called for unknown event group or unimplemented handlers 3999 .handlers = {
|
/src/sys/arch/sparc/sparc/ |
locore.s | 287 * C code---or rewired to fast in-window handlers. The latter are good 1457 * at the window overflow and underflow handlers and make sure they 2444 * through all the registered handlers and no one claims it, we report a 2456 * (2) we always call all the registered handlers (there is no way 2785 * Fast flush handlers. xcalled from other CPUs throught soft interrupt 14 2789 * As always, these fast trap handlers should preserve all registers 2808 ! common return from Fast Flush handlers 4427 * Step 4: change the trap base register, now that our trap handlers
|