HomeSort by relevance Sort by last modified time
    Searched defs:handler (Results 651 - 675 of 2987) sorted by null

<<21222324252627282930>>

  /external/ltp/testcases/kernel/syscalls/rt_sigaction/
rt_sigaction01.c 65 static void handler(int sig) function
67 tst_resm(TINFO, "Signal Handler Called with signal number %d\n", sig);
75 sa.sa_handler = (void *)handler;
  /external/ltp/testcases/kernel/syscalls/sigaction/
sigaction02.c 70 * handler()
71 * A dummy signal handler for attempting to catch signals.
73 void handler(int sig) function
76 tst_resm(TINFO, "Inside signal handler. Got signal: %d", sig);
82 * Establish a signal handler for "sig" with the specified flags and
83 * signal to mask while the handler executes.
93 sa.sa_sigaction = (void *)handler;
120 tst_resm(TINFO, "Enter test %d: set handler for SIGKILL",
136 tst_resm(TINFO, "Enter test %d: set handler for SIGSTOP",
151 tst_resm(TINFO, "Enter test %d: set handler for bad
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_nanosleep/
2-2.c 29 void handler(int signo) function
33 printf("In handler\n");
53 act.sa_handler = handler;
9-1.c 28 void handler(int signo) function
32 printf("In handler\n");
50 act.sa_handler = handler;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_settime/
4-2.c 37 void handler(int signo) function
63 act.sa_handler = handler;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/nanosleep/
7-2.c 25 void handler(int signo) function
27 printf("In handler\n");
46 act.sa_handler = handler;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/
9-1.c 33 void handler(int signo) function
35 printf("In handler\n");
58 act.sa_handler = handler;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_wait/
7-1.c 30 void handler(int signo) function
32 printf("In handler\n");
58 act.sa_handler = handler;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
10-1.c 25 void handler(int signo, siginfo_t * info, void *context) function
62 act.sa_sigaction = handler;
29-1.c 25 * -> install a handler for SIGRTMAX signal with SA_SIGINFO set.
92 void handler(int sig, siginfo_t * info, void *context) function
127 /* Set the signal handler */
130 sa.sa_sigaction = handler;
138 /* Install the signal handler for SIGRTMAX */
142 UNRESOLVED(ret, "Failed to set signal handler");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigpause/
2-1.c 19 so the signal handler should not be called yet, and the signal should be
48 static void handler() function
61 act.sa_handler = handler;
3-1.c 35 static void handler() function
46 act.sa_handler = handler;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigsuspend/
4-1.c 38 void handler(int signo) function
86 act.sa_handler = handler;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_create/
1-1.c 16 * 5. If signal handler is called, continue. Otherwise, fail.
17 * 6. If signal handler was called and the time left in sleep ~= the
37 void handler(int signo) function
53 act.sa_handler = handler;
7-1.c 27 void handler(int signo) function
48 act.sa_handler = handler;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_create/speculative/
5-1.c 23 * 4. If signal handler is called, continue. Otherwise, fail.
24 * 5. If signal handler was called and the time left in sleep ~= the
45 void handler(int signo) function
57 act.sa_handler = handler;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_getoverrun/
1-1.c 30 void handler(int signo) function
51 act.sa_handler = handler;
55 * set up handler for SIGTOTEST
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_settime/
1-1.c 18 * 5. If signal handler is called, continue. Otherwise, fail.
19 * 6. If signal handler was called and the time left in sleep ~= the
39 void handler(int signo) function
55 act.sa_handler = handler;
1-2.c 31 void handler(int signo) function
54 act.sa_handler = handler;
3-3.c 27 void handler(int signo) function
83 * Second, set value.it_value = 0 and set up handler to catch
86 act.sa_handler = handler;
5-1.c 34 void handler(int signo) function
51 act.sa_handler = handler;
5-3.c 38 void handler(int signo) function
57 act.sa_handler = handler;
  /external/mockito/src/main/java/org/mockito/internal/handler/
NotifiedMethodInvocationReport.java 5 package org.mockito.internal.handler;
NullResultGuardian.java 5 package org.mockito.internal.handler;
  /external/parameter-framework/asio-1.10.6/include/asio/
async_result.hpp 24 * This template may be specialised for user-defined handler types.
26 template <typename Handler>
33 /// Construct an async result from a given handler.
36 * to initialise some state associated with the handler, which is then
39 explicit async_result(Handler&)
51 // Helper template to deduce the true type of a handler, capture a local copy
52 // of the handler, and then create an async_result for the handler.
53 template <typename Handler, typename Signature>
56 explicit async_result_init(ASIO_MOVE_ARG(Handler) orig_handler
62 typename handler_type<Handler, Signature>::type handler; member in struct:asio::detail::async_result_init
    [all...]

Completed in 960 milliseconds

<<21222324252627282930>>