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:KEEP_SEND_PAUSE
(Results
1 - 4
of
4
) sorted by relevance
/third_party/curl/lib/
H
A
D
easy.c
1095
oldstate = k->keepon & (KEEP_RECV_PAUSE|
KEEP_SEND_PAUSE
);
in curl_easy_pause()
1098
newstate = (k->keepon &~ (KEEP_RECV_PAUSE|
KEEP_SEND_PAUSE
)) |
in curl_easy_pause()
1100
((action & CURLPAUSE_SEND)?
KEEP_SEND_PAUSE
:0);
in curl_easy_pause()
1102
if((newstate & (KEEP_RECV_PAUSE|
KEEP_SEND_PAUSE
)) == oldstate) {
in curl_easy_pause()
1109
if((k->keepon & ~newstate &
KEEP_SEND_PAUSE
) &&
in curl_easy_pause()
1127
if(!(newstate &
KEEP_SEND_PAUSE
)) {
in curl_easy_pause()
1138
if((newstate & (KEEP_RECV_PAUSE|
KEEP_SEND_PAUSE
)) !=
in curl_easy_pause()
1139
(KEEP_RECV_PAUSE|
KEEP_SEND_PAUSE
)) {
in curl_easy_pause()
H
A
D
transfer.c
262
k->keepon |=
KEEP_SEND_PAUSE
; /* mark socket send as paused */
in Curl_fillreadbuffer()
563
k->keepon &= ~
KEEP_SEND_PAUSE
; /* no pausing anymore either */
in readwrite_data()
688
if(!nread && (k->keepon &
KEEP_SEND_PAUSE
)) {
in readwrite_upload()
858
!(data->req.keepon &
KEEP_SEND_PAUSE
)))
in select_bits_paused()
861
return (data->req.keepon & (KEEP_RECV_PAUSE|
KEEP_SEND_PAUSE
));
in select_bits_paused()
H
A
D
urldata.h
576
#define
KEEP_SEND_PAUSE
(1<<5) /* writing is paused */
macro
579
#define KEEP_SENDBITS (KEEP_SEND | KEEP_SEND_HOLD |
KEEP_SEND_PAUSE
)
H
A
D
c-hyper.c
727
if((data->req.keepon &
KEEP_SEND_PAUSE
) !=
KEEP_SEND_PAUSE
)
in uploadstreamed()
Completed in 13 milliseconds