OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ssl_pending
(Results
1 - 6
of
6
) sorted by null
/external/openssl/apps/
s_client.c
588
int write_tty,read_tty,write_ssl,read_ssl,tty_on,
ssl_pending
;
local
[
all
...]
/external/chromium_org/third_party/boringssl/src/include/openssl/
ssl.h
352
int (*
ssl_pending
)(const SSL *s);
member in struct:ssl_method_st
[
all
...]
/external/chromium_org/third_party/boringssl/src/ssl/
ssl_lib.c
917
int
SSL_pending
(const SSL *s)
919
/*
SSL_pending
cannot work properly if read-ahead is enabled
921
* and it is impossible to fix since
SSL_pending
cannot report
923
* (Note that
SSL_pending
() is often used as a boolean value,
926
return(s->method->
ssl_pending
(s));
[
all
...]
/external/openssl/include/openssl/
ssl.h
434
int (*
ssl_pending
)(const SSL *s);
member in struct:ssl_method_st
[
all
...]
/external/openssl/ssl/
ssl.h
434
int (*
ssl_pending
)(const SSL *s);
member in struct:ssl_method_st
[
all
...]
ssl_lib.c
844
int
SSL_pending
(const SSL *s)
846
/*
SSL_pending
cannot work properly if read-ahead is enabled
848
* and it is impossible to fix since
SSL_pending
cannot report
850
* (Note that
SSL_pending
() is often used as a boolean value,
853
return(s->method->
ssl_pending
(s));
[
all
...]
Completed in 456 milliseconds