HomeSort by relevance Sort by last modified time
    Searched refs:SIGPIPE (Results 1 - 25 of 344) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/native/services/sensorservice/
main_sensorservice.cpp 23 signal(SIGPIPE, SIG_IGN);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
3-10.c 15 2. Set the signal handler for SIGPIPE to handler
17 4. raise SIGPIPE
40 if (sigaction(SIGPIPE, &act, 0) == -1) {
46 if (sigaction(SIGPIPE, 0, &oact) == -1) {
52 if (raise(SIGPIPE) == -1) {
1-10.c 17 2. Use sigaction to setup a signal handler for SIGPIPE
18 3. Raise SIGPIPE.
40 if (sigaction(SIGPIPE, &act, 0) == -1) {
46 if (raise(SIGPIPE) == -1) {
28-10.c 24 * -> register a signal handler for SIGPIPE with signal().
65 if (signal(SIGPIPE, handler_1) == SIG_ERR) {
85 ret = sigaction(SIGPIPE, &sa, &save);
93 ret = raise(SIGPIPE);
106 ret = sigaction(SIGPIPE, &save, 0);
114 ret = raise(SIGPIPE);
22-10.c 18 3. (child) Setup a signal handler for SIGPIPE with SA_NODEFER set
20 4. (child) raise SIGPIPE
22 6. (child, signal handler) if count is 1 then raise SIGPIPE
44 printf("SIGPIPE caught\n");
54 printf("Raising SIGPIPE\n");
55 raise(SIGPIPE);
56 printf("Returning from raising SIGPIPE\n");
72 if (sigaction(SIGPIPE, &act, 0) == -1) {
78 if (raise(SIGPIPE) == -1) {
25-10.c 17 3. (child) Setup a signal handler for SIGPIPE
18 4. (child) raise SIGPIPE
20 6. (child, signal handler) if count is 1 then raise SIGPIPE
41 printf("SIGPIPE caught\n");
52 printf("Raising SIGPIPE\n");
53 raise(SIGPIPE);
54 printf("Returning from raising SIGPIPE\n");
70 if (sigaction(SIGPIPE, &act, 0) == -1) {
76 if (raise(SIGPIPE) == -1) {
8-11.c 26 printf("Caught SIGPIPE\n");
32 raise(SIGPIPE);
46 sigaddset(&act.sa_mask, SIGPIPE);
56 if (sigaction(SIGPIPE, &act, 0) == -1) {
13-10.c 31 printf("Caught SIGPIPE\n");
52 if (sigaction(SIGPIPE, &act, 0) == -1) {
64 if (raise(SIGPIPE) == -1) {
2-10.c 14 1. Call sigaction to set handler for SIGPIPE to use handler1
15 2. Call sigaction again to set handler for SIGPIPE to use handler2,
42 if (sigaction(SIGPIPE, &act, 0) == -1) {
50 if (sigaction(SIGPIPE, &act, &oact) == -1) {
4-10.c 16 3. (child) Setup a signal handler for SIGPIPE with SIGKILL added to
18 4. (child) raise SIGPIPE
54 if (sigaction(SIGPIPE, &act, 0) == -1) {
60 if (raise(SIGPIPE) == -1) {
6-10.c 9 setting the SA_INFO bit in the signal mask for SIGPIPE will result
37 if (sigaction(SIGPIPE, &act, 0) == -1) {
43 if (raise(SIGPIPE) == -1) {
12-10.c 32 printf("Caught SIGPIPE\n");
53 if (sigaction(SIGPIPE, &act, 0) == -1) {
73 if (raise(SIGPIPE) == -1) {
12-36.c 30 printf("Caught SIGPIPE\n");
51 if (sigaction(SIGPIPE, &act, 0) == -1) {
63 if (raise(SIGPIPE) == -1) {
18-10.c 24 * -> register a handler for SIGPIPE without SA_SIGINFO, and a known function
26 * -> raise SIGPIPE, and check the function has been called.
68 /* Install the signal handler for SIGPIPE */
69 ret = sigaction(SIGPIPE, &sa, 0);
82 ret = raise(SIGPIPE);
85 perror("Failed to raise SIGPIPE");
4-36.c 16 3. (child) Setup a signal handler for SIGPIPE with SIGSTOP added to
18 4. (child) raise SIGPIPE
53 if (sigaction(SIGPIPE, &act, 0) == -1) {
59 if (raise(SIGPIPE) == -1) {
8-10.c 31 printf("Caught SIGPIPE\n");
47 if (sigaction(SIGPIPE, &act, 0) == -1) {
62 if (raise(SIGPIPE) == -1) {
4-62.c 10 that attempting to add SIGKILL to the signal mask of SIGPIPE will
33 if (sigaction(SIGPIPE, &act, 0) == -1) {
4-88.c 10 that attempting to add SIGSTOP to the signal mask of SIGPIPE will
33 if (sigaction(SIGPIPE, &act, 0) == -1) {
  /bootable/recovery/minadbd/
minadbd.cpp 31 signal(SIGPIPE, SIG_IGN);
  /external/curl/lib/
sigpipe.h 37 * sigpipe_ignore() makes sure we ignore SIGPIPE while running libcurl
51 sigaction(SIGPIPE, NULL, &ig->old_pipe_act);
55 sigaction(SIGPIPE, &action, NULL);
61 * and SIGPIPE handling. It MUST only be called after a corresponding
68 sigaction(SIGPIPE, &ig->old_pipe_act, NULL);
  /external/chromium-trace/catapult/devil/devil/android/
device_signal.py 23 SIGPIPE = 13 # Broken pipe
  /external/libmojo/third_party/catapult/devil/devil/android/
device_signal.py 23 SIGPIPE = 13 # Broken pipe
  /system/core/logcat/
logcat_main.cpp 25 signal(SIGPIPE, exit);
  /external/valgrind/none/tests/
coolo_sigaction.cpp 36 sigaddset(&(act.sa_mask), SIGPIPE);
38 sigaction( SIGPIPE, &act, 0L);
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
13-1.c 21 (0 == SIGPIPE) ||

Completed in 927 milliseconds

1 2 3 4 5 6 7 8 91011>>