Home
last modified time | relevance | path

Searched refs:raise (Results 1 - 25 of 588) sorted by relevance

12345678910>>...24

/third_party/python/Python/
H A Dbootstrap_hash.c47 API. Return 0 on success, or raise an exception and return -1 on error. */
49 win32_urandom(unsigned char *buffer, Py_ssize_t size, int raise) in win32_urandom() argument
57 if (raise) { in win32_urandom()
78 initialized yet) and raise=0.
79 - Raise an exception (if raise is non-zero) and return -1 on error:
80 if getrandom() failed with EINTR, raise is non-zero and the Python signal
86 py_getrandom(void *buffer, Py_ssize_t size, int blocking, int raise) in py_getrandom() argument
114 if (raise) { in py_getrandom()
126 if (raise) { in py_getrandom()
155 if (errno == EAGAIN && !raise in py_getrandom()
207 py_getentropy(char *buffer, Py_ssize_t size, int raise) py_getentropy() argument
300 dev_urandom(char *buffer, Py_ssize_t size, int raise) dev_urandom() argument
473 pyurandom(void *buffer, Py_ssize_t size, int blocking, int raise) pyurandom() argument
[all...]
/third_party/PyYAML/yaml/
H A D_yaml.pyx262 raise MemoryError
288 raise TypeError(u"a string or stream input is required")
330 raise ValueError(u"no parser error")
341 raise error
353 raise error
450 raise ValueError(u"unknown token type")
487 raise error
499 raise error
625 raise ValueError(u"unknown event type")
681 raise ComposerErro
[all...]
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigwait/
H A D3-1.c52 if (raise(SIGUSR2) != 0) { in main()
53 printf("Could not raise SIGUSR2\n"); in main()
56 if (raise(SIGUSR2) != 0) { in main()
57 printf("Could not raise SIGUSR2\n"); in main()
60 if (raise(SIGUSR2) != 0) { in main()
61 printf("Could not raise SIGUSR2\n"); in main()
64 if (raise(SIGUSR2) != 0) { in main()
65 printf("Could not raise SIGUSR2\n"); in main()
H A D7-1.c24 * -> raise the signals in the range SIGRTMIN-SIGRTMAX
121 /* raise the signals in no particular order */ in main()
123 ret = raise(i); in main()
126 UNRESOLVED(ret, "Failed to raise the signal"); in main()
131 ret = raise(i); in main()
134 UNRESOLVED(ret, "Failed to raise the signal"); in main()
139 ret = raise(i); in main()
142 UNRESOLVED(ret, "Failed to raise the signal"); in main()
/third_party/musl/libc-test/src/functionalext/sigchain/
H A Dsigchain_add_special_handler.c72 raise(SIGINT); in sigchain_add_special_handler_001()
135 raise(SIGHUP); in sigchain_add_special_handler_002()
201 raise(SIGUSR2); in sigchain_add_special_handler_003()
237 raise(SIGTERM); in sigchain_add_special_handler_004()
283 raise(SIGCHAIN_SIGNAL_64); in sigchain_add_special_handler_005()
333 raise(SIGCHAIN_SIGNAL_37); in sigchain_add_special_handler_006()
383 raise(SIGCHAIN_SIGNAL_43); in sigchain_add_special_handler_007()
433 raise(SIGCHAIN_SIGNAL_45); in sigchain_add_special_handler_008()
502 raise(SIGCHAIN_SIGNAL_56); in sigchain_add_special_handler_009()
H A Dsigchain_rm_special_handler.c74 raise(SIGCONT); in sigchain_rm_special_handler_001()
140 raise(SIGHUP); in sigchain_rm_special_handler_002()
209 raise(SIGUSR2); in sigchain_rm_special_handler_003()
247 raise(SIGCONT); in sigchain_rm_special_handler_004()
295 raise(SIGCHAIN_SIGNAL_64); in sigchain_rm_special_handler_005()
346 raise(SIGCHAIN_SIGNAL_37); in sigchain_rm_special_handler_006()
411 raise(SIGQUIT); in sigchain_rm_all_special_handler_007()
H A Dsigchain_intercept_signal.c42 raise(SIGHUP); in sigchain_intercept_signal_001()
87 raise(SIGUSR2); in sigchain_intercept_signal_002()
131 raise(SIGURG); in sigchain_intercept_signal_003()
H A Dsigchain_intercept_pthread_sigmask.c68 raise(SIGUSR2); in sigchain_intercept_pthread_sigmask_001()
122 raise(SIGPWR); in sigchain_intercept_pthread_sigmask_002()
156 raise(SIGHUP); in sigchain_intercept_pthread_sigmask_003()
H A Dsigchain_intercept_sigaction.c48 raise(SIGHUP); in sigchain_intercept_sigaction_001()
99 raise(SIGUSR2); in sigchain_intercept_sigaction_002()
151 raise(SIGURG); in sigchain_intercept_sigaction_003()
H A Dsigchain_handler_call_order.c34 raise(SIGUSR2); in sigchain_special_handler()
83 raise(SIGHUP); in sigchain_handler_call_order_001()
126 raise(SIGPWR); in sigchain_handler_call_order_002()
/third_party/ltp/testcases/kernel/numa/
H A Dsupport_numa.c110 raise(SIGSTOP); in main()
128 raise(SIGSTOP); in main()
147 raise(SIGSTOP); in main()
151 raise(SIGSTOP); in main()
/third_party/unity/auto/
H A Dgenerate_module.rb58 else raise 'If you specify arguments, it should be a filename or a hash of options'
123 raise "No :unity or :cmock section found in #{config_file}" unless options
143 raise "ERROR: The design pattern '#{pattern}' specified isn't one that I recognize!" if patterns.nil?
202 raise "ERROR: File #{files[0][:name]} already exists. Exiting." if all_files_exist
274 raise "ERROR: You can't have more than one Module name specified!" unless module_name.nil?
280 raise "ERROR: Unknown option specified '#{arg}'"
309 raise 'ERROR: You must have a Module name specified! (use option -h for help)' if module_name.nil?
/third_party/elfutils/tests/
H A Dbacktrace-child.c34 On any arch then sigusr2 calls raise (SIGUSR1) for --ptraceme.
39 # 0 0x7f7ab61e9e6b raise
44 # 0 0x7f7ab61e9e6b raise
57 # 1 0xf7771466 - 1 raise
63 # 1 0xf7771466 - 1 raise
71 But the raise jmp patching was unreliable. It depends on the CFI for the raise()
73 the case. Some newer glibc versions rewrote raise() and now the CFA is calculated
74 differently. So we disable raise jmp patching everywhere.
124 raise (SIGUSR in sigusr2()
[all...]
/third_party/musl/src/exit/
H A Dabort.c60 raise(SIGABRT); in abort()
63 raise(SIGABRT); in abort()
69 * handler that may be present, and re-raise the signal to generate in abort()
85 raise(SIGKILL); in abort()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigpending/
H A D1-3.c44 if (raise(SIGUSR2) != 0) { in handler()
45 printf("Could not raise SIGUSR2\n"); in handler()
48 if (raise(SIGCONT) != 0) { in handler()
49 printf("Could not raise SIGCONT\n"); in handler()
118 if (raise(SIGTTOU) == -1) { in main()
119 perror("Could not raise SIGTTOU"); in main()
H A D1-2.c43 if (raise(SIGCONT) != 0) { in handler()
44 printf("Could not raise SIGCONT\n"); in handler()
47 if (raise(SIGUSR1) != 0) { in handler()
48 printf("Could not raise SIGUSR1\n"); in handler()
103 if (raise(SIGTTOU) == -1) { in main()
104 perror("Could not raise SIGTTOU"); in main()
/third_party/cJSON/tests/unity/auto/
H A Dgenerate_module.rb55 else raise 'If you specify arguments, it should be a filename or a hash of options'
119 raise "No :unity or :cmock section found in #{config_file}" unless options
139 raise "ERROR: The design pattern '#{pattern}' specified isn't one that I recognize!" if patterns.nil?
197 raise "ERROR: File #{files[0][:name]} already exists. Exiting." if all_files_exist
267 raise "ERROR: You can't have more than one Module name specified!" unless module_name.nil?
272 raise "ERROR: Unknown option specified '#{arg}'"
301 raise 'ERROR: You must have a Module name specified! (use option -h for help)' if module_name.nil?
/third_party/musl/porting/liteos_a/user/src/exit/
H A Dabort.c18 raise(SIGABRT); in abort()
23 * handler that may be present, and re-raise the signal to generate in abort()
34 raise(SIGKILL); in abort()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
H A D22-1.c20 4. (child) raise SIGABRT
22 6. (child, signal handler) if count is 1 then raise SIGABRT
54 raise(SIGABRT); in handler()
77 if (raise(SIGABRT) == -1) { in main()
H A D22-4.c20 4. (child) raise SIGCHLD
22 6. (child, signal handler) if count is 1 then raise SIGCHLD
54 raise(SIGCHLD); in handler()
77 if (raise(SIGCHLD) == -1) { in main()
H A D22-5.c20 4. (child) raise SIGCONT
22 6. (child, signal handler) if count is 1 then raise SIGCONT
54 raise(SIGCONT); in handler()
77 if (raise(SIGCONT) == -1) { in main()
H A D22-3.c20 4. (child) raise SIGBUS
22 6. (child, signal handler) if count is 1 then raise SIGBUS
54 raise(SIGBUS); in handler()
77 if (raise(SIGBUS) == -1) { in main()
H A D22-6.c20 4. (child) raise SIGFPE
22 6. (child, signal handler) if count is 1 then raise SIGFPE
54 raise(SIGFPE); in handler()
77 if (raise(SIGFPE) == -1) { in main()
H A D22-7.c20 4. (child) raise SIGHUP
22 6. (child, signal handler) if count is 1 then raise SIGHUP
54 raise(SIGHUP); in handler()
77 if (raise(SIGHUP) == -1) { in main()
H A D22-8.c20 4. (child) raise SIGILL
22 6. (child, signal handler) if count is 1 then raise SIGILL
54 raise(SIGILL); in handler()
77 if (raise(SIGILL) == -1) { in main()

Completed in 9 milliseconds

12345678910>>...24