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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/doc/articles/wiki/
http-sample.go 9 func handler(w http.ResponseWriter, r *http.Request) { func
14 http.HandleFunc("/", handler)
  /prebuilts/go/linux-x86/doc/articles/wiki/
http-sample.go 9 func handler(w http.ResponseWriter, r *http.Request) { func
14 http.HandleFunc("/", handler)
  /external/chromium-trace/catapult/devil/devil/utils/
signal_handler.py 10 def SignalHandler(signalnum, handler):
11 """Sets the signal handler for the given signal in the wrapped context.
14 signum: The signal for which a handler should be added.
15 additional_handler: The handler to add.
20 signal.signal(signalnum, handler)
28 """Adds a signal handler for the given signal in the wrapped context.
30 This runs the new handler after any existing handler rather than
31 replacing the existing handler.
34 signum: The signal for which a handler should be added
39 def handler(signum, frame): function in function:AddSignalHandler
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/kill/
1-1.c 10 * 1) Set up a signal handler for the signal that says we have caught the
13 * 3) If signal handler was called, test passed.
26 static void handler(int signo) function
39 act.sa_handler = handler;
54 printf("Should have exited from signal handler\n");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/raise/
1-1.c 10 * 1) Set up a signal handler for the signal that says we have caught the
13 * 3) If signal handler was called, test passed.
25 void handler(int signo) function
36 act.sa_handler = handler;
51 printf("Should have exited from signal handler\n");
4-1.c 13 * 1) Set up a signal handler for the signal that says we have caught the
16 * 3) If signal handler was called, test passed.
30 void handler(int signo) function
41 act.sa_handler = handler;
56 printf("Should have exited from signal handler\n");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
1-1.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGABRT
28 void handler(int signo) function
37 act.sa_handler = handler;
1-10.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGPIPE
28 void handler(int signo) function
37 act.sa_handler = handler;
1-11.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGQUIT
28 void handler(int signo) function
37 act.sa_handler = handler;
1-12.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGSEGV
28 void handler(int signo) function
37 act.sa_handler = handler;
1-13.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGTERM
28 void handler(int signo) function
37 act.sa_handler = handler;
1-14.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGTSTP
28 void handler(int signo) function
37 act.sa_handler = handler;
1-15.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGTTIN
28 void handler(int signo) function
37 act.sa_handler = handler;
1-16.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGTTOU
28 void handler(int signo) function
37 act.sa_handler = handler;
1-17.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGUSR1
28 void handler(int signo) function
37 act.sa_handler = handler;
1-18.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGUSR2
28 void handler(int signo) function
37 act.sa_handler = handler;
1-19.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGUSR2
28 void handler(int signo) function
38 act.sa_handler = handler;
1-2.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGUSR2
28 void handler(int signo) function
37 act.sa_handler = handler;
1-20.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGPROF
28 void handler(int signo) function
37 act.sa_handler = handler;
1-21.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGSYS
28 void handler(int signo) function
37 act.sa_handler = handler;
1-22.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGTRAP
28 void handler(int signo) function
37 act.sa_handler = handler;
1-23.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGURG
28 void handler(int signo) function
37 act.sa_handler = handler;
1-24.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGVTALRM
28 void handler(int signo) function
37 act.sa_handler = handler;
1-25.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGXCPU
28 void handler(int signo) function
37 act.sa_handler = handler;
1-26.c 14 handler has not been called. (A signal handler of the
17 2. Use sigaction to setup a signal handler for SIGXFSZ
28 void handler(int signo) function
37 act.sa_handler = handler;

Completed in 1257 milliseconds

1 2 3 4 5 6 7 8 91011>>