Searched defs:ret (Results 101 - 125 of 3891) sorted by relevance

1234567891011>>

/external/toybox/toys/android/
H A Dsetenforce.c23 int state, ret; local
30 ret = security_setenforce(state);
31 if (ret == -1) perror_msg("Couldn't set enforcing status to '%s'", new);
/external/valgrind/none/tests/ppc32/
H A Dtest_tm.c5 int ret; local
8 ret = r3;
11 ret = r4;
12 } return ret;
18 int ret; local
19 ret = htm_begin (10, 20);
20 printf ("ret = %d, expected = 10\n", ret);
/external/valgrind/none/tests/ppc64/
H A Dtest_tm.c5 int ret; local
8 ret = r3;
11 ret = r4;
12 } return ret;
18 int ret; local
19 ret = htm_begin (10, 20);
20 printf ("ret = %d, expected = 10\n", ret);
/external/valgrind/none/tests/solaris/
H A Dblock_all_signals.c30 pid_t ret; local
33 while ((ret = waitpid(pid, &status, 0)) != pid) {
/external/webrtc/webrtc/test/win/
H A Drun_loop_win.cc25 BOOL ret; local
26 while ((ret = GetMessage(&msg, NULL, 0, 0)) != 0) {
27 assert(ret != -1);
/external/boringssl/src/crypto/x509/
H A Dx509type.c64 int ret = 0, i; local
79 ret = EVP_PK_RSA | EVP_PKT_SIGN;
81 ret |= EVP_PKT_ENC;
84 ret = EVP_PK_DSA | EVP_PKT_SIGN;
87 ret = EVP_PK_EC | EVP_PKT_SIGN | EVP_PKT_EXCH;
90 ret = EVP_PK_DH | EVP_PKT_EXCH;
94 ret = EVP_PKT_EXCH | EVP_PKT_SIGN;
106 ret |= EVP_PKS_RSA;
110 ret |= EVP_PKS_DSA;
113 ret |
[all...]
H A Dx_x509.c96 X509 *ret = (X509 *)*pval; local
101 ret->name = NULL;
102 ret->ex_flags = 0;
103 ret->ex_pathlen = -1;
104 ret->skid = NULL;
105 ret->akid = NULL;
106 ret->aux = NULL;
107 ret->crldp = NULL;
108 ret->buf = NULL;
109 CRYPTO_new_ex_data(&ret
[all...]
/external/boringssl/src/decrepit/ssl/
H A Dssl_decrepit.c132 int ret = 0; local
142 ret = 1;
162 return ret;
/external/clang/test/CodeGen/
H A Dinline-asm-mrv.c6 int ret; local
10 asm volatile("set %0 %1" : "=r"(ret) : "r"(blk1));
11 return ret;
/external/compiler-rt/test/builtins/Unit/
H A Dextendhfsf2_test.c23 int ret = compareResultH(x, expected); local
25 if (ret){
29 return ret;
H A Dfixtfdi_test.c26 int ret = (x != expected); local
28 if (ret)
33 return ret;
H A Dfixtfsi_test.c25 int ret = (x != expected); local
27 if (ret){
31 return ret;
H A Dfixunstfsi_test.c25 int ret = (x != expected); local
27 if (ret)
32 return ret;
H A Dtruncdfhf2_test.c23 int ret = compareResultH(x, expected); local
25 if (ret){
29 return ret;
H A Dtruncsfhf2_test.c23 int ret = compareResultH(x, expected); local
25 if (ret){
29 return ret;
H A Dtrunctfdf2_test.c26 int ret = compareResultD(x, expected); local
28 if (ret)
33 return ret;
H A Dtrunctfsf2_test.c26 int ret = compareResultF(x, expected); local
28 if (ret){
32 return ret;
/external/compiler-rt/test/msan/Linux/
H A Deventfd.cc13 int ret = eventfd_read(efd, &v); local
14 assert(ret == 0);
/external/iptables/iptables/
H A Dip6tables-standalone.c43 int ret; local
48 ret = xtables_init_all(&ip6tables_globals, NFPROTO_IPV6);
49 if (ret < 0) {
61 ret = do_command6(argc, argv, &table, &handle, false);
62 if (ret) {
63 ret = ip6tc_commit(handle);
67 if (!ret) {
80 exit(!ret);
H A Diptables-standalone.c45 int ret; local
52 ret = xtables_init_all(&iptables_globals, NFPROTO_IPV4);
53 if (ret < 0) {
64 ret = do_command4(argc, argv, &table, &handle, false);
65 if (ret) {
66 ret = iptc_commit(handle);
70 if (!ret) {
84 exit(!ret);
H A Dxtables-arp-standalone.c48 int ret; local
55 ret = xtables_init_all(&arptables_globals, NFPROTO_ARP);
56 if (ret < 0) {
67 ret = do_commandarp(&h, argc, argv, &table);
68 if (ret)
69 ret = nft_commit(&h);
73 if (!ret)
76 exit(!ret);
H A Dxtables-eb-standalone.c48 int ret; local
55 ret = xtables_init_all(&ebtables_globals, NFPROTO_BRIDGE);
56 if (ret < 0) {
66 ret = do_commandeb(&h, argc, argv, &table);
67 if (ret)
68 ret = nft_commit(&h);
70 if (!ret)
73 exit(!ret);
/external/jemalloc/test/src/
H A Dthd.c14 thd_join(thd_t thd, void **ret) argument
17 if (WaitForSingleObject(thd, INFINITE) == WAIT_OBJECT_0 && ret) {
20 *ret = (void *)(uintptr_t)exit_code;
34 thd_join(thd_t thd, void **ret) argument
37 pthread_join(thd, ret);
/external/libchrome/base/files/
H A Dscoped_file.cc32 int ret = IGNORE_EINTR(close(fd)); local
40 PCHECK(0 == ret);
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.absolute/
H A Dabsolute.pass.cpp46 path ret = absolute(p, base); local
47 TEST_CHECK(ret.is_absolute());
48 TEST_CHECK(ret == p);
61 path ret = absolute(p, base); local
62 TEST_CHECK(ret.is_absolute());
63 TEST_CHECK(ret.has_root_name());
64 TEST_CHECK(ret.root_name() == path("//net"));
65 TEST_CHECK(ret.has_root_directory());
66 TEST_CHECK(ret.root_directory() == path("/"));
67 TEST_CHECK(ret
80 path ret = absolute(p, base); local
94 path ret = absolute(p, base); local
110 const path ret = absolute(p); local
[all...]

Completed in 375 milliseconds

1234567891011>>