Searched refs:ret (Results 51 - 75 of 2809) sorted by relevance

1234567891011>>

/external/zlib/src/test/
H A Dinfcover.c287 int ret; local
296 ret = inflateInit2(&strm, win);
297 if (ret != Z_OK) {
309 ret = inflateGetHeader(&strm, &head); assert(ret == Z_OK);
320 ret = inflate(&strm, Z_NO_FLUSH); assert(err == 9 || ret == err);
321 if (ret != Z_OK && ret != Z_BUF_ERROR && ret !
352 int ret; local
390 int ret; local
472 int ret; local
509 int ret; local
619 int ret; local
[all...]
/external/valgrind/main/drd/
H A Ddrd_qtcore_intercepts.c92 int ret; local
97 CALL_FN_W_WW(ret, fn, mutex, mode);
107 int ret; local
112 CALL_FN_W_WW(ret, fn, mutex, mode);
121 int ret; local
126 CALL_FN_W_W(ret, fn, mutex);
135 int ret; local
140 CALL_FN_W_W(ret, fn, mutex);
149 int ret; local
154 CALL_FN_W_W(ret, f
163 int ret; local
179 int ret; local
194 int ret; local
[all...]
/external/openssl/crypto/asn1/
H A Dx_info.c67 X509_INFO *ret=NULL; local
69 ret=(X509_INFO *)OPENSSL_malloc(sizeof(X509_INFO));
70 if (ret == NULL)
76 ret->enc_cipher.cipher=NULL;
77 ret->enc_len=0;
78 ret->enc_data=NULL;
80 ret->references=1;
81 ret->x509=NULL;
82 ret->crl=NULL;
83 ret
[all...]
H A Da_enum.c140 ASN1_ENUMERATED *ret; local
144 ret=M_ASN1_ENUMERATED_new();
146 ret=ai;
147 if (ret == NULL)
152 if(BN_is_negative(bn)) ret->type = V_ASN1_NEG_ENUMERATED;
153 else ret->type=V_ASN1_ENUMERATED;
156 if (ret->length < len+4)
158 unsigned char *new_data=OPENSSL_realloc(ret->data, len+4);
164 ret->data=new_data;
167 ret
176 BIGNUM *ret; local
[all...]
H A Dx_attrib.c101 X509_ATTRIBUTE *ret=NULL;
104 if ((ret=X509_ATTRIBUTE_new()) == NULL)
106 ret->object=OBJ_nid2obj(nid);
107 ret->single=0;
108 if ((ret->value.set=sk_ASN1_TYPE_new_null()) == NULL) goto err;
110 if (!sk_ASN1_TYPE_push(ret->value.set,val)) goto err;
113 return(ret);
115 if (ret != NULL) X509_ATTRIBUTE_free(ret);
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
H A Deap_otp.c35 struct eap_method_ret *ret,
45 ret->ignore = TRUE;
62 ret->ignore = TRUE;
66 ret->ignore = FALSE;
68 ret->methodState = METHOD_DONE;
69 ret->decision = DECISION_COND_SUCC;
70 ret->allowNotifications = FALSE;
92 int ret; local
103 ret = eap_peer_method_register(eap);
104 if (ret)
34 eap_otp_process(struct eap_sm *sm, void *priv, struct eap_method_ret *ret, const struct wpabuf *reqData) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_otp.c29 struct eap_method_ret *ret,
39 ret->ignore = TRUE;
56 ret->ignore = TRUE;
60 ret->ignore = FALSE;
62 ret->methodState = METHOD_DONE;
63 ret->decision = DECISION_COND_SUCC;
64 ret->allowNotifications = FALSE;
86 int ret; local
97 ret = eap_peer_method_register(eap);
98 if (ret)
28 eap_otp_process(struct eap_sm *sm, void *priv, struct eap_method_ret *ret, const struct wpabuf *reqData) argument
[all...]
H A Deap_md5.c30 struct eap_method_ret *ret,
42 ret->ignore = TRUE;
50 ret->ignore = TRUE;
63 ret->ignore = TRUE;
66 ret->ignore = FALSE;
72 ret->methodState = METHOD_DONE;
73 ret->decision = DECISION_COND_SUCC;
74 ret->allowNotifications = TRUE;
92 ret->ignore = TRUE;
105 int ret; local
29 eap_md5_process(struct eap_sm *sm, void *priv, struct eap_method_ret *ret, const struct wpabuf *reqData) argument
[all...]
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_otp.c29 struct eap_method_ret *ret,
39 ret->ignore = TRUE;
56 ret->ignore = TRUE;
60 ret->ignore = FALSE;
62 ret->methodState = METHOD_DONE;
63 ret->decision = DECISION_COND_SUCC;
64 ret->allowNotifications = FALSE;
86 int ret; local
97 ret = eap_peer_method_register(eap);
98 if (ret)
28 eap_otp_process(struct eap_sm *sm, void *priv, struct eap_method_ret *ret, const struct wpabuf *reqData) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_otp.c29 struct eap_method_ret *ret,
39 ret->ignore = TRUE;
56 ret->ignore = TRUE;
60 ret->ignore = FALSE;
62 ret->methodState = METHOD_DONE;
63 ret->decision = DECISION_COND_SUCC;
64 ret->allowNotifications = FALSE;
86 int ret; local
97 ret = eap_peer_method_register(eap);
98 if (ret)
28 eap_otp_process(struct eap_sm *sm, void *priv, struct eap_method_ret *ret, const struct wpabuf *reqData) argument
[all...]
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Drtcpmuxfilter.cc44 bool ret = false; local
48 ret = true;
52 return ret;
56 bool ret = false; local
61 ret = true;
65 ret = true;
74 return ret;
/external/libselinux/src/
H A Dget_initial_context.c19 int fd, ret; local
35 ret = -1;
39 ret = read(fd, buf, size - 1);
40 if (ret < 0)
45 ret = -1;
48 ret = 0;
53 return ret;
/external/openssl/crypto/evp/
H A Dbio_md.c120 int ret=0; local
128 ret=BIO_read(b->next_bio,out,outl);
131 if (ret > 0)
134 (unsigned int)ret)<=0) return (-1);
139 return(ret);
144 int ret=0; local
151 ret=BIO_write(b->next_bio,in,inl);
154 if (ret > 0)
157 (unsigned int)ret))
169 return(ret);
177 long ret=1; local
240 long ret=1; local
255 unsigned int ret; local
[all...]
/external/openssl/crypto/bn/
H A Dbn_kron.c66 int ret = -2; /* avoid 'uninitialized' warning */ local
100 ret = BN_abs_is_word(A, 1);
108 ret = 0;
123 /* set 'ret' to $(-1)^{(A^2-1)/8}$ */
124 ret = tab[BN_lsw(A) & 7];
129 ret = 1;
136 ret = -ret;
140 * to compute the Jacobi symbol (A/B) and multiply it by 'ret' */
150 ret
[all...]
/external/valgrind/main/helgrind/
H A Dhg_intercepts.c235 int ret; local
255 CALL_FN_W_WWWW(ret, fn, thread,attr,mythread_wrapper,&xargs[0]);
257 if (ret == 0) {
270 DO_PthAPIerror( "pthread_create", ret );
278 fprintf(stderr, " :: pth_create -> %d >>\n", ret);
280 return ret;
313 int ret; local
320 CALL_FN_W_WW(ret, fn, thread,value_pointer);
325 if (ret == 0 /*success*/) {
328 DO_PthAPIerror( "pthread_join", ret );
410 int ret; local
448 int ret; local
477 int ret; local
521 int ret; local
562 int ret; local
601 int ret; local
651 int ret; local
733 int ret; local
830 int ret; local
882 int ret; local
930 int ret; local
994 int ret; local
1029 int ret; local
1066 int ret; local
1119 int ret; local
1167 int ret; local
1204 int ret; local
1249 int ret; local
1317 int ret; local
1363 int ret; local
1407 int ret; local
1455 int ret; local
1503 int ret; local
1557 int ret; local
1610 int ret; local
1686 int ret; local
1734 int ret; local
1785 int ret; local
1838 int ret; local
1888 sem_t* ret; local
1922 int ret; local
2089 long ret; local
2119 long ret; local
2159 long ret; local
2173 long ret; local
[all...]
/external/wpa_supplicant_6/wpa_supplicant/
H A Dctrl_iface.c44 int ret = 0; local
67 ret = -1;
72 ret = -1;
75 ret = -1;
77 ret = -1;
79 return ret;
171 int ret; local
186 ret = wpas_wps_start_pin(wpa_s, _bssid, pin);
187 if (ret < 0)
189 ret
320 int res, verbose, ret; local
444 int ret; local
496 int ret; local
545 int ret; local
593 int first = 1, ret; local
642 int first, ret; local
738 int ret; local
767 int ret; local
825 int ret; local
1003 int ret; local
1173 int ret; local
1199 int ret, first = 1; local
1247 int ret, first = 1; local
1304 int ret; local
1357 int ret, first = 1; local
1399 int ret, first = 1; local
1509 int ret; local
1629 int ret; local
[all...]
/external/linux-tools-perf/
H A Dbuiltin-probe.c73 int ret; local
82 ret = parse_perf_probe_command(str, pev);
85 return ret;
90 int i, len, ret; local
104 ret = parse_probe_event(buf);
106 return ret;
135 int ret = 0; local
138 ret = parse_line_range_desc(str, &params.line_range);
142 return ret;
149 int ret; local
262 int ret; local
[all...]
/external/openssl/crypto/lhash/
H A Dlhash.c116 _LHASH *ret; local
119 if ((ret=OPENSSL_malloc(sizeof(_LHASH))) == NULL)
121 if ((ret->b=OPENSSL_malloc(sizeof(LHASH_NODE *)*MIN_NODES)) == NULL)
124 ret->b[i]=NULL;
125 ret->comp=((c == NULL)?(LHASH_COMP_FN_TYPE)strcmp:c);
126 ret->hash=((h == NULL)?(LHASH_HASH_FN_TYPE)lh_strhash:h);
127 ret->num_nodes=MIN_NODES/2;
128 ret->num_alloc_nodes=MIN_NODES;
129 ret->p=0;
130 ret
183 void *ret; local
221 void *ret; local
252 void *ret; local
407 LHASH_NODE **ret,*n1; local
445 unsigned long ret=0; local
[all...]
/external/openssl/crypto/dh/
H A Ddh_lib.c122 DH *ret; local
124 ret=(DH *)OPENSSL_malloc(sizeof(DH));
125 if (ret == NULL)
131 ret->meth = DH_get_default_method();
138 OPENSSL_free(ret);
141 ret->engine = engine;
144 ret->engine = ENGINE_get_default_DH();
145 if(ret->engine)
147 ret->meth = ENGINE_get_DH(ret
[all...]
/external/openssl/crypto/ecdh/
H A Dech_lib.c140 ECDH_DATA *ret; local
142 ret=(ECDH_DATA *)OPENSSL_malloc(sizeof(ECDH_DATA));
143 if (ret == NULL)
149 ret->init = NULL;
151 ret->meth = ECDH_get_default_method();
152 ret->engine = engine;
154 if (!ret->engine)
155 ret->engine = ENGINE_get_default_ECDH();
156 if (ret->engine)
158 ret
[all...]
/external/openssl/crypto/ec/
H A Dec_print.c62 BIGNUM *ret,
82 ret = BN_bin2bn(buf, buf_len, ret);
86 return ret;
96 EC_POINT *ret; local
111 if ((ret = EC_POINT_new(group)) == NULL)
118 ret = point;
120 if (!EC_POINT_oct2point(group, ret, buf, buf_len, ctx))
123 EC_POINT_clear_free(ret);
129 return ret;
59 EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BIGNUM *ret, BN_CTX *ctx) argument
140 char *ret, *p; local
184 EC_POINT *ret=NULL; local
[all...]
/external/openssl/crypto/x509/
H A Dx509_r2x.c70 X509 *ret=NULL; local
74 if ((ret=X509_new()) == NULL)
81 xi=ret->cert_info;
92 if (X509_set_subject_name(ret,X509_NAME_dup(xn)) == 0)
94 if (X509_set_issuer_name(ret,X509_NAME_dup(xn)) == 0)
102 X509_set_pubkey(ret,X509_REQ_get_pubkey(r));
104 if (!X509_sign(ret,pkey,EVP_md5()))
109 X509_free(ret);
110 ret=NULL;
112 return(ret);
[all...]
/external/valgrind/main/coregrind/m_mach/
H A Dmach_traps-x86-darwin.S42 ret
51 ret
60 ret
69 ret
78 ret
87 ret
96 ret
105 ret
114 ret
123 ret
[all...]
/external/openssl/crypto/bio/
H A Dbss_conn.c96 * callback(BIO,state,ret); The callback should return
97 * 'ret'. state is for compatibility with the ssl info_callback */
98 int (*info_callback)(const BIO *bio,int state,int ret);
130 int ret= -1,i; local
212 ret=socket(AF_INET,SOCK_STREAM,SOCKET_PROTOCOL);
213 if (ret == INVALID_SOCKET)
221 b->num=ret;
255 ret=connect(b->num,
259 if (ret < 0)
261 if (BIO_sock_should_retry(ret))
323 BIO_CONNECT *ret; local
404 int ret=0; local
431 int ret; local
457 long ret=1; local
608 long ret=1; local
629 int n,ret; local
638 BIO *ret; local
[all...]
/external/openssh/contrib/caldera/
H A Dsshd.init29 local ret=-1
39 ret=3
42 ret=2
48 ret=0
52 ret=1
54 return $ret
80 ret=$?
91 ret=$?
102 ret=$?
109 ret
[all...]

Completed in 3173 milliseconds

1234567891011>>