HomeSort by: relevance | last modified time | path
    Searched refs:handler (Results 1 - 25 of 842) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl2/xcvs/dist/src/
exithandle.c 16 * Register a handler for all signals.
19 signals_register (RETSIGTYPE (*handler)(int))
23 (void) SIG_register (SIGABRT, handler);
26 (void) SIG_register (SIGHUP, handler);
29 (void) SIG_register (SIGINT, handler);
32 (void) SIG_register (SIGQUIT, handler);
38 (void) SIG_register (SIGTERM, handler);
46 * Register a handler for all signals and exit.
49 cleanup_register (void (*handler) (void))
51 atexit (handler);
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/
sparc-sysstep.c 26 handler (int sig) function
33 signal (SIGALRM, handler);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
sparc-sysstep.c 26 handler (int sig) function
33 signal (SIGALRM, handler);
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
zio_inject.c 53 * Data describing each zinject handler registered on the system, and
54 * contains the list node linking the handler in the global zinject
55 * handler list.
73 * This protects insertion into, and traversal of, the inject handler
75 * handler is inserted or removed from the list, this lock should be
97 * Used to assign unique identifying numbers to each new zinject handler.
144 inject_handler_t *handler; local
148 for (handler = list_head(&inject_handlers); handler != NULL;
149 handler = list_next(&inject_handlers, handler))
170 inject_handler_t *handler; local
216 inject_handler_t *handler; local
259 inject_handler_t *handler; local
335 inject_handler_t *handler; local
370 inject_handler_t *handler; local
569 inject_handler_t *handler; local
669 inject_handler_t *handler; local
702 inject_handler_t *handler; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
signals.c 10 handler (int sig) function
12 signal (sig, handler);
32 signal (SIGALRM, handler);
35 signal (SIGUSR1, handler);
branch-to-self.c 25 handler (int sig) function
33 signal (SIGALRM, handler);
kill-after-signal.c 24 handler (int signo) function
33 signal (SIGUSR1, handler);
relativedebug.c 23 static void handler (int signo) function
30 signal (SIGALRM, handler);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
signals.c 10 handler (int sig) function
12 signal (sig, handler);
32 signal (SIGALRM, handler);
35 signal (SIGUSR1, handler);
branch-to-self.c 25 handler (int sig) function
33 signal (SIGALRM, handler);
kill-after-signal.c 24 handler (int signo) function
33 signal (SIGUSR1, handler);
relativedebug.c 23 static void handler (int signo) function
30 signal (SIGALRM, handler);
  /src/external/gpl3/gdb.old/dist/gdb/
async-event.h 28 /* Type of async event handler callbacks.
32 The callback is called when the async event handler is marked. The callback
33 is responsible for clearing the async event handler if it no longer needs
44 /* Call the handler from HANDLER the next time through the event
46 extern void mark_async_signal_handler (struct async_signal_handler *handler);
48 /* Returns true if HANDLER is marked ready. */
51 async_signal_handler_is_marked (struct async_signal_handler *handler);
53 /* Mark HANDLER as NOT ready. */
55 extern void clear_async_signal_handler (struct async_signal_handler *handler);
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
async-event.h 28 /* Type of async event handler callbacks.
32 The callback is called when the async event handler is marked. The callback
33 is responsible for clearing the async event handler if it no longer needs
44 /* Call the handler from HANDLER the next time through the event
46 extern void mark_async_signal_handler (struct async_signal_handler *handler);
48 /* Returns true if HANDLER is marked ready. */
51 async_signal_handler_is_marked (struct async_signal_handler *handler);
53 /* Mark HANDLER as NOT ready. */
55 extern void clear_async_signal_handler (struct async_signal_handler *handler);
    [all...]
  /src/external/gpl3/gcc/dist/libobjc/
objc-foreach.c 32 /* The enumeration mutation handler currently in use. */
36 objc_setEnumerationMutationHandler (void (*handler)(id))
38 __objc_enumeration_mutation_handler = handler;
  /src/external/gpl3/gcc.old/dist/libobjc/
objc-foreach.c 32 /* The enumeration mutation handler currently in use. */
36 objc_setEnumerationMutationHandler (void (*handler)(id))
38 __objc_enumeration_mutation_handler = handler;
  /src/tests/usr.bin/xlint/lint1/
msg_192.c 22 typedef void (*handler)(int); typedef
24 handler (*local_signal)(int, handler);
30 void (*(*local_signal_attr)(int sig, void (*handler)(int)))(int) __attribute__((__unused__));
  /src/external/bsd/atf/dist/tools/
signals.hpp 41 typedef void (*handler)(const int); typedef in namespace:tools::signals
72 const handler m_handler;
77 signal_programmer(const int, const handler);
  /src/external/bsd/wpa/dist/src/utils/
eloop.h 77 * eloop_register_read_sock - Register handler for read events
79 * @handler: Callback function to be called when data is available for reading
84 * Register a read socket notifier for the given file descriptor. The handler
86 * socket. The handler function is responsible for clearing the event after
87 * having processed it in order to avoid eloop from calling the handler again
90 int eloop_register_read_sock(int sock, eloop_sock_handler handler,
94 * eloop_unregister_read_sock - Unregister handler for read events
103 * eloop_register_sock - Register handler for socket events
106 * @handler: Callback function to be called when the event is triggered
112 * handler function will be called whenever the that event is triggered for th
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
new_handler.cc 46 std::set_new_handler (new_handler handler) throw()
50 __atomic_exchange (&__new_handler, &handler, &prev_handler,
55 __new_handler = handler;
63 new_handler handler; variable
65 __atomic_load (&__new_handler, &handler, __ATOMIC_ACQUIRE);
68 handler = __new_handler;
70 return handler;
new_op.cc 52 new_handler handler = std::get_new_handler (); local
53 if (! handler)
55 handler ();
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
new_handler.cc 46 std::set_new_handler (new_handler handler) throw()
50 __atomic_exchange (&__new_handler, &handler, &prev_handler,
55 __new_handler = handler;
63 new_handler handler; variable
65 __atomic_load (&__new_handler, &handler, __ATOMIC_ACQUIRE);
68 handler = __new_handler;
70 return handler;
new_op.cc 52 new_handler handler = std::get_new_handler (); local
53 if (! handler)
55 handler ();
  /src/external/mpl/bind/dist/lib/isc/
proxy2.c 26 isc__proxy2_handler_init_direct(isc_proxy2_handler_t *restrict handler,
30 *handler = (isc_proxy2_handler_t){ .result = ISC_R_UNSET,
32 isc_proxy2_handler_setcb(handler, cb, cbarg);
35 isc_buffer_init(&handler->hdrbuf, handler->buf,
36 sizeof(handler->buf));
38 isc_buffer_init(&handler->hdrbuf, data->base, data->length);
39 isc_buffer_add(&handler->hdrbuf, data->length);
44 isc_proxy2_handler_init(isc_proxy2_handler_t *restrict handler, isc_mem_t *mctx,
47 REQUIRE(handler != NULL)
105 isc_proxy2_handler_t *restrict handler = NULL; local
1063 isc_proxy2_handler_t handler = { 0 }; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
mi-syn-frame.c 9 void handler (int);
45 handler (int sig) function
65 signal (SIGALRM, handler);

Completed in 86 milliseconds

1 2 3 4 5 6 7 8 91011>>