Searched defs:ret (Results 176 - 200 of 3891) sorted by relevance

1234567891011>>

/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
H A D18-19.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGPOLL, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGPOLL);
84 if (ret != 0) {
H A D18-2.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGALRM, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGALRM);
84 if (ret != 0) {
H A D18-20.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGPROF, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGPROF);
84 if (ret != 0) {
H A D18-21.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGSYS, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGSYS);
84 if (ret != 0) {
H A D18-22.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGTRAP, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGTRAP);
84 if (ret != 0) {
H A D18-23.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGURG, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGURG);
84 if (ret != 0) {
H A D18-24.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGVTALRM, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGVTALRM);
84 if (ret != 0) {
H A D18-25.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGXCPU, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGXCPU);
84 if (ret != 0) {
H A D18-26.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGXFSZ, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGXFSZ);
84 if (ret != 0) {
H A D18-3.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGBUS, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGBUS);
84 if (ret != 0) {
H A D18-4.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGCHLD, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGCHLD);
84 if (ret != 0) {
H A D18-5.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGCONT, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGCONT);
84 if (ret != 0) {
H A D18-6.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGFPE, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGFPE);
84 if (ret != 0) {
H A D18-7.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGHUP, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGHUP);
84 if (ret != 0) {
H A D18-8.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGILL, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGILL);
84 if (ret != 0) {
H A D18-9.c55 int ret; local
61 ret = sigemptyset(&sa.sa_mask);
63 if (ret != 0) {
69 ret = sigaction(SIGINT, &sa, 0);
71 if (ret != 0) {
82 ret = raise(SIGINT);
84 if (ret != 0) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/
H A D4-1.c28 int ret, err = 0; local
37 ret = sigaddset(&signalset, sigs[i]);
39 if (ret != -1 || errno != EINVAL) {
41 printf("Failed sigaddset(..., %i) ret=%i errno=%i\n",
42 sigs[i], ret, errno);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigdelset/
H A D4-1.c30 int i, ret, err = 0; local
38 ret = sigdelset(&signalset, sigs[i]);
40 if (ret != -1 || errno != EINVAL) {
42 printf("Failed sigdelset(..., %i) ret=%i errno=%i\n",
43 sigs[i], ret, errno);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sighold/
H A D3-1.c27 int i, ret, err = 0; local
30 ret = sighold(sigs[i]);
32 if (ret != -1 || errno != EINVAL) {
34 printf("Failed sighold(%i) ret=%i errno=%i\n",
35 sigs[i], ret, errno);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigignore/
H A D5-1.c26 int i, ret, err = 0; local
29 ret = sigignore(sigs[i]);
31 if (ret != -1 || errno != EINVAL) {
33 printf("Failed sigignore(%i) ret=%i errno=%i\n",
34 sigs[i], ret, errno);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigismember/
H A D5-1.c29 int i, ret, err = 0; local
37 ret = sigismember(&signalset, sigs[i]);
39 if (ret != -1 || errno != EINVAL) {
41 printf("Failed sigaddset(..., %i) ret=%i errno=%i\n",
42 sigs[i], ret, errno);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigrelse/
H A D3-1.c30 int i, ret, err = 0; local
33 ret = sigrelse(sigs[i]);
35 if (ret != -1 || errno != EINVAL) {
37 printf("Failed sigrelse(%i) ret=%i errno=%i\n",
38 sigs[i], ret, errno);
/external/openssh/openbsd-compat/
H A Dtimingsafe_bcmp.c27 int ret = 0; local
30 ret |= *p1++ ^ *p2++;
31 return (ret != 0);
/external/pdfium/testing/libfuzzer/
H A Dpdf_cfx_saxreader_fuzzer.cc29 int32_t ret = reader.ContinueParse(nullptr); local
30 if (ret < 0 || ret > 99)
/external/selinux/libselinux/src/
H A Dcheck_context.c15 int fd, ret; local
27 ret = write(fd, con, strlen(con) + 1);
29 if (ret < 0)
38 int ret; local
44 ret = security_check_context_raw(rcon);
48 return ret;

Completed in 278 milliseconds

1234567891011>>