Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:WANT_READ
(Results
1 - 8
of
8
) sorted by relevance
/third_party/nghttp2/examples/
H
A
D
client.c
65
enum { IO_NONE,
WANT_READ
, WANT_WRITE };
enumerator
82
/*
WANT_READ
if SSL/TLS connection needs more input; or WANT_WRITE
177
(err == SSL_ERROR_WANT_READ ?
WANT_READ
: WANT_WRITE);
in send_callback()
207
(err == SSL_ERROR_WANT_READ ?
WANT_READ
: WANT_WRITE);
in recv_callback()
466
connection->want_io ==
WANT_READ
) {
in ctl_poll()
/third_party/skia/third_party/externals/microhttpd/src/examples/
H
A
D
mhd2spdy_spdy.c
172
WANT_READ
: WANT_WRITE);
in spdy_cb_send()
243
WANT_READ
: WANT_WRITE);
in spdy_cb_recv()
266
connection->want_io |=
WANT_READ
;
in spdy_cb_recv()
655
connection->want_io &
WANT_READ
)
681
connection->want_io &
WANT_READ
)
in spdy_ctl_select()
H
A
D
mhd2spdy_structures.h
53
/*
WANT_READ
if SSL connection needs more input; or WANT_WRITE if it
62
WANT_READ
,
enumerator
/third_party/skia/third_party/externals/microhttpd/src/testspdy/
H
A
D
test_new_connection.c
103
WANT_READ
,
enumerator
110
/*
WANT_READ
if SSL connection needs more input; or WANT_WRITE if it
238
WANT_READ
: WANT_WRITE);
in send_callback()
270
WANT_READ
: WANT_WRITE);
in recv_callback()
580
connection->want_io ==
WANT_READ
) {
in ctl_poll()
H
A
D
test_request_response.c
85
WANT_READ
,
enumerator
92
/*
WANT_READ
if SSL connection needs more input; or WANT_WRITE if it
220
WANT_READ
: WANT_WRITE);
in send_callback()
252
WANT_READ
: WANT_WRITE);
in recv_callback()
568
connection->want_io ==
WANT_READ
) {
in ctl_poll()
H
A
D
test_notls.c
82
WANT_READ
,
enumerator
88
/*
WANT_READ
if SSL connection needs more input; or WANT_WRITE if it
265
connection->want_io =
WANT_READ
;
in recv_callback()
532
connection->want_io ==
WANT_READ
) {
in ctl_poll()
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
H
A
D
error.rs
22
pub const
WANT_READ
: ErrorCode = ErrorCode(ffi::SSL_ERROR_WANT_READ);
consts
104
ErrorCode::
WANT_READ
=> match self.io_error() {
in fmt()
H
A
D
mod.rs
3444
ErrorCode::
WANT_READ
| ErrorCode::WANT_WRITE => {
in handshake()
3752
ErrorCode::
WANT_READ
| ErrorCode::WANT_WRITE => {
in make_error()
3807
Err(ref e) if e.code() == ErrorCode::
WANT_READ
&& e.io_error().is_none() => {}
in read()
3823
Err(ref e) if e.code() == ErrorCode::
WANT_READ
&& e.io_error().is_none() => {}
in write()
3906
ErrorCode::
WANT_READ
| ErrorCode::WANT_WRITE => {
in connect()
3925
ErrorCode::
WANT_READ
| ErrorCode::WANT_WRITE => {
in accept()
3950
ErrorCode::
WANT_READ
| ErrorCode::WANT_WRITE => {
in handshake()
Completed in 13 milliseconds