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

1 2 3 4 5 6 7

  /prebuilts/go/darwin-x86/misc/cgo/testcarchive/src/libgo4/
libgo4.go 11 // Raise SIGIO.
13 pthread_kill(*p, SIGIO);
27 // Catch SIGIO.
31 signal.Notify(c, syscall.SIGIO)
39 // Raise SIGIO.
45 // Return the number of SIGIO signals seen.
  /prebuilts/go/darwin-x86/misc/cgo/testcshared/src/libgo5/
libgo5.go 16 // The channel used to read SIGIO signals.
19 // CatchSIGIO starts catching SIGIO signals.
23 signal.Notify(sigioChan, syscall.SIGIO)
26 // ResetSIGIO stops catching SIGIO signals.
29 signal.Reset(syscall.SIGIO)
32 // SawSIGIO returns whether we saw a SIGIO within a brief pause.
  /prebuilts/go/linux-x86/misc/cgo/testcarchive/src/libgo4/
libgo4.go 11 // Raise SIGIO.
13 pthread_kill(*p, SIGIO);
27 // Catch SIGIO.
31 signal.Notify(c, syscall.SIGIO)
39 // Raise SIGIO.
45 // Return the number of SIGIO signals seen.
  /prebuilts/go/linux-x86/misc/cgo/testcshared/src/libgo5/
libgo5.go 16 // The channel used to read SIGIO signals.
19 // CatchSIGIO starts catching SIGIO signals.
23 signal.Notify(sigioChan, syscall.SIGIO)
26 // ResetSIGIO stops catching SIGIO signals.
29 signal.Reset(syscall.SIGIO)
32 // SawSIGIO returns whether we saw a SIGIO within a brief pause.
  /prebuilts/go/darwin-x86/misc/cgo/testcarchive/src/libgo3/
libgo3.go 16 // The channel used to read SIGIO signals.
19 // CatchSIGIO starts catching SIGIO signals.
23 signal.Notify(sigioChan, syscall.SIGIO)
26 // ResetSIGIO stops catching SIGIO signals.
29 signal.Reset(syscall.SIGIO)
32 // SawSIGIO returns whether we saw a SIGIO within a brief pause.
  /prebuilts/go/linux-x86/misc/cgo/testcarchive/src/libgo3/
libgo3.go 16 // The channel used to read SIGIO signals.
19 // CatchSIGIO starts catching SIGIO signals.
23 signal.Notify(sigioChan, syscall.SIGIO)
26 // ResetSIGIO stops catching SIGIO signals.
29 signal.Reset(syscall.SIGIO)
32 // SawSIGIO returns whether we saw a SIGIO within a brief pause.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
signum.h 63 #define SIGPOLL SIGIO /* Pollable event occurred (System V). */
64 #define SIGIO 29 /* I/O now possible (4.2 BSD). */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
signum.h 63 #define SIGPOLL SIGIO /* Pollable event occurred (System V). */
64 #define SIGIO 29 /* I/O now possible (4.2 BSD). */
  /prebuilts/go/darwin-x86/misc/cgo/test/
sigprocmask.c 18 return sigismember(&mask, SIGIO);
24 sigaddset(&mask, SIGIO);
sigprocmask.go 27 // Verify that SIGIO stays blocked on the C thread
29 signal.Notify(make(chan os.Signal), syscall.SIGIO)
38 t.Error("Go runtime unblocked SIGIO")
  /prebuilts/go/linux-x86/misc/cgo/test/
sigprocmask.c 18 return sigismember(&mask, SIGIO);
24 sigaddset(&mask, SIGIO);
sigprocmask.go 27 // Verify that SIGIO stays blocked on the C thread
29 signal.Notify(make(chan os.Signal), syscall.SIGIO)
38 t.Error("Go runtime unblocked SIGIO")
  /external/chromium-trace/catapult/devil/devil/android/
device_signal.py 39 SIGIO = 29 # I/O possible
  /external/libmojo/third_party/catapult/devil/devil/android/
device_signal.py 39 SIGIO = 29 # I/O possible
  /external/ltp/lib/
signame.h 78 #if defined(SIGIO) && defined(SIGPOLL)
79 /* SIGPOLL same as SIGIO */
80 STRPAIR(SIGIO, "SIGIO/SIGPOLL")
81 #elif defined(SIGIO)
82 PAIR(SIGIO)
  /prebuilts/go/darwin-x86/misc/cgo/testcarchive/
main3.c 81 if (sigaction(SIGIO, &sa, NULL) < 0) {
86 // installed for SIGIO.
89 printf("raising SIGIO\n");
92 if (raise(SIGIO) < 0) {
115 // Tell the Go code to catch SIGIO.
124 printf("raising SIGIO\n");
127 if (raise(SIGIO) < 0) {
136 fprintf(stderr, "Go handler did not see SIGIO\n");
141 fprintf(stderr, "C handler saw SIGIO when only Go handler should have\n");
145 // Tell the Go code to stop catching SIGIO
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/testcshared/
main5.c 50 if (sigaction(SIGIO, &sa, NULL) < 0) {
65 // installed for SIGIO.
68 printf("raising SIGIO\n");
71 if (raise(SIGIO) < 0) {
94 // Tell the Go code to catch SIGIO.
113 printf("raising SIGIO\n");
116 if (raise(SIGIO) < 0) {
124 // Check that the Go code saw SIGIO.
136 fprintf(stderr, "Go handler did not see SIGIO\n");
141 fprintf(stderr, "C handler saw SIGIO when only Go handler should have\n")
    [all...]
  /prebuilts/go/linux-x86/misc/cgo/testcarchive/
main3.c 81 if (sigaction(SIGIO, &sa, NULL) < 0) {
86 // installed for SIGIO.
89 printf("raising SIGIO\n");
92 if (raise(SIGIO) < 0) {
115 // Tell the Go code to catch SIGIO.
124 printf("raising SIGIO\n");
127 if (raise(SIGIO) < 0) {
136 fprintf(stderr, "Go handler did not see SIGIO\n");
141 fprintf(stderr, "C handler saw SIGIO when only Go handler should have\n");
145 // Tell the Go code to stop catching SIGIO
    [all...]
  /prebuilts/go/linux-x86/misc/cgo/testcshared/
main5.c 50 if (sigaction(SIGIO, &sa, NULL) < 0) {
65 // installed for SIGIO.
68 printf("raising SIGIO\n");
71 if (raise(SIGIO) < 0) {
94 // Tell the Go code to catch SIGIO.
113 printf("raising SIGIO\n");
116 if (raise(SIGIO) < 0) {
124 // Check that the Go code saw SIGIO.
136 fprintf(stderr, "Go handler did not see SIGIO\n");
141 fprintf(stderr, "C handler saw SIGIO when only Go handler should have\n")
    [all...]
  /bionic/libc/kernel/uapi/asm-arm/asm/
signal.h 54 #define SIGIO 29
55 #define SIGPOLL SIGIO
  /bionic/libc/kernel/uapi/asm-generic/
signal.h 54 #define SIGIO 29
55 #define SIGPOLL SIGIO
  /bionic/libc/kernel/uapi/asm-mips/asm/
signal.h 52 #define SIGIO 22
53 #define SIGPOLL SIGIO
  /bionic/libc/kernel/uapi/asm-x86/asm/
signal.h 58 #define SIGIO 29
59 #define SIGPOLL SIGIO
  /external/kernel-headers/original/uapi/asm-arm/asm/
signal.h 47 #define SIGIO 29
48 #define SIGPOLL SIGIO
  /external/kernel-headers/original/uapi/asm-generic/
signal.h 40 #define SIGIO 29
41 #define SIGPOLL SIGIO

Completed in 174 milliseconds

1 2 3 4 5 6 7