Searched refs:clnt (Results 1 – 11 of 11) sorted by relevance
/external/chromium_org/third_party/boringssl/src/ssl/ |
D | d1_srtp.c | 272 STACK_OF(SRTP_PROTECTION_PROFILE) *clnt=0; in ssl_add_clienthello_use_srtp_ext() 275 clnt=SSL_get_srtp_profiles(s); in ssl_add_clienthello_use_srtp_ext() 276 ct=sk_SRTP_PROTECTION_PROFILE_num(clnt); /* -1 if clnt == 0 */ in ssl_add_clienthello_use_srtp_ext() 296 prof=sk_SRTP_PROTECTION_PROFILE_value(clnt,i); in ssl_add_clienthello_use_srtp_ext() 314 STACK_OF(SRTP_PROTECTION_PROFILE) *clnt = 0,*srvr; in ssl_parse_clienthello_use_srtp_ext() 328 clnt = sk_SRTP_PROTECTION_PROFILE_new_null(); in ssl_parse_clienthello_use_srtp_ext() 342 sk_SRTP_PROTECTION_PROFILE_push(clnt, cprof); in ssl_parse_clienthello_use_srtp_ext() 358 for(j=0;j<sk_SRTP_PROTECTION_PROFILE_num(clnt);j++) in ssl_parse_clienthello_use_srtp_ext() 360 cprof=sk_SRTP_PROTECTION_PROFILE_value(clnt,j); in ssl_parse_clienthello_use_srtp_ext() 374 if(clnt) sk_SRTP_PROTECTION_PROFILE_free(clnt); in ssl_parse_clienthello_use_srtp_ext() [all …]
|
D | s3_lib.c | 1778 const SSL_CIPHER *ssl3_choose_cipher(SSL *s, STACK_OF(SSL_CIPHER) *clnt, in ssl3_choose_cipher() argument 1806 sk_SSL_CIPHER_set_cmp_func(clnt, ssl_cipher_ptr_id_cmp); in ssl3_choose_cipher() 1816 printf("Client sent %d from %p:\n", sk_SSL_CIPHER_num(clnt), (void *)clnt); in ssl3_choose_cipher() 1817 for(i=0 ; i < sk_SSL_CIPHER_num(clnt) ; ++i) in ssl3_choose_cipher() 1819 c=sk_SSL_CIPHER_value(clnt,i); in ssl3_choose_cipher() 1828 allow = clnt; in ssl3_choose_cipher() 1832 prio = clnt; in ssl3_choose_cipher()
|
D | ssl_locl.h | 896 const SSL_CIPHER *ssl3_choose_cipher(SSL *ssl,STACK_OF(SSL_CIPHER) *clnt,
|
/external/openssl/ssl/ |
D | d1_srtp.c | 257 STACK_OF(SRTP_PROTECTION_PROFILE) *clnt=0; in ssl_add_clienthello_use_srtp_ext() 260 clnt=SSL_get_srtp_profiles(s); in ssl_add_clienthello_use_srtp_ext() 261 ct=sk_SRTP_PROTECTION_PROFILE_num(clnt); /* -1 if clnt == 0 */ in ssl_add_clienthello_use_srtp_ext() 281 prof=sk_SRTP_PROTECTION_PROFILE_value(clnt,i); in ssl_add_clienthello_use_srtp_ext() 406 STACK_OF(SRTP_PROTECTION_PROFILE) *clnt; in ssl_parse_serverhello_use_srtp_ext() 432 clnt=SSL_get_srtp_profiles(s); in ssl_parse_serverhello_use_srtp_ext() 435 if (clnt == NULL) in ssl_parse_serverhello_use_srtp_ext() 445 for(i=0;i<sk_SRTP_PROTECTION_PROFILE_num(clnt);i++) in ssl_parse_serverhello_use_srtp_ext() 447 prof=sk_SRTP_PROTECTION_PROFILE_value(clnt,i); in ssl_parse_serverhello_use_srtp_ext()
|
D | s3_lib.c | 3887 SSL_CIPHER *ssl3_choose_cipher(SSL *s, STACK_OF(SSL_CIPHER) *clnt, in ssl3_choose_cipher() argument 3911 sk_SSL_CIPHER_set_cmp_func(clnt, ssl_cipher_ptr_id_cmp); in ssl3_choose_cipher() 3921 printf("Client sent %d from %p:\n", sk_SSL_CIPHER_num(clnt), (void *)clnt); in ssl3_choose_cipher() 3922 for(i=0 ; i < sk_SSL_CIPHER_num(clnt) ; ++i) in ssl3_choose_cipher() 3924 c=sk_SSL_CIPHER_value(clnt,i); in ssl3_choose_cipher() 3932 allow = clnt; in ssl3_choose_cipher() 3936 prio = clnt; in ssl3_choose_cipher()
|
D | ssl_locl.h | 926 SSL_CIPHER *ssl3_choose_cipher(SSL *ssl,STACK_OF(SSL_CIPHER) *clnt,
|
/external/javassist/src/main/javassist/tools/web/ |
D | Webserver.java | 188 final void process(Socket clnt) throws IOException { in process() argument 189 InputStream in = new BufferedInputStream(clnt.getInputStream()); in process() 191 logging(clnt.getInetAddress().getHostName(), in process() 196 OutputStream out = new BufferedOutputStream(clnt.getOutputStream()); in process() 207 clnt.close(); in process()
|
/external/iproute2/misc/ |
D | rtacct.c | 391 int clnt = accept(fd, NULL, NULL); in server_loop() local 392 if (clnt >= 0) { in server_loop() 395 close(clnt); in server_loop() 399 close(clnt); in server_loop() 403 send_db(clnt); in server_loop()
|
D | nstat.c | 397 int clnt = accept(fd, NULL, NULL); in server_loop() local 398 if (clnt >= 0) { in server_loop() 401 close(clnt); in server_loop() 405 close(clnt); in server_loop() 407 FILE *fp = fdopen(clnt, "w"); in server_loop()
|
D | ifstat.c | 512 int clnt = accept(fd, NULL, NULL); in server_loop() local 513 if (clnt >= 0) { in server_loop() 516 close(clnt); in server_loop() 520 close(clnt); in server_loop() 522 FILE *fp = fdopen(clnt, "w"); in server_loop()
|
/external/openssl/patches/ |
D | 0011-ecdhe_psk.patch | 615 @@ -3979,7 +3999,7 @@ SSL_CIPHER *ssl3_choose_cipher(SSL *s, STACK_OF(SSL_CIPHER) *clnt,
|