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:http_flags
(Results
1 - 9
of
9
) sorted by relevance
/third_party/nghttp2/lib/
H
A
D
nghttp2_http.c
79
if ((stream->
http_flags
& flag) || nv->value->len == 0) {
in check_pseudo_header()
82
stream->
http_flags
= stream->
http_flags
| flag;
in check_pseudo_header()
87
return (stream->
http_flags
& NGHTTP2_HTTP_FLAG_METH_HEAD) == 0 &&
in expect_response_body()
98
return (stream->
http_flags
& NGHTTP2_HTTP_FLAG_SCHEME_HTTP) == 0 ||
in check_path()
99
((stream->
http_flags
& NGHTTP2_HTTP_FLAG_PATH_REGULAR) ||
in check_path()
100
((stream->
http_flags
& NGHTTP2_HTTP_FLAG_METH_OPTIONS) &&
in check_path()
101
(stream->
http_flags
& NGHTTP2_HTTP_FLAG_PATH_ASTERISK)));
in check_path()
110
(stream->
http_flags
& NGHTTP2_HTTP_FLAG_PSEUDO_HEADER_DISALLOWED)) {
in http_request_on_header()
128
stream->
http_flags
|
in http_request_on_header()
[all...]
H
A
D
nghttp2_stream.h
219
uint32_t
http_flags
;
member
H
A
D
nghttp2_stream.c
91
stream->
http_flags
= NGHTTP2_HTTP_FLAG_NONE;
in nghttp2_stream_init()
H
A
D
nghttp2_session.c
105
(stream->
http_flags
& NGHTTP2_HTTP_FLAG_EXPECT_FINAL_RESPONSE) == 0;
in session_trailer_headers()
4038
(stream->
http_flags
& NGHTTP2_HTTP_FLAG_PRIORITY)) {
in session_end_stream_headers_received()
4091
if (stream->
http_flags
& NGHTTP2_HTTP_FLAG_EXPECT_FINAL_RESPONSE) {
in session_after_header_block_received()
8082
stream->
http_flags
|= NGHTTP2_HTTP_FLAG_METH_UPGRADE_WORKAROUND;
in nghttp2_session_upgrade()
8103
stream->
http_flags
|= NGHTTP2_HTTP_FLAG_METH_HEAD;
in nghttp2_session_upgrade2()
/third_party/node/deps/nghttp2/lib/
H
A
D
nghttp2_http.c
79
if ((stream->
http_flags
& flag) || nv->value->len == 0) {
in check_pseudo_header()
82
stream->
http_flags
= stream->
http_flags
| flag;
in check_pseudo_header()
87
return (stream->
http_flags
& NGHTTP2_HTTP_FLAG_METH_HEAD) == 0 &&
in expect_response_body()
98
return (stream->
http_flags
& NGHTTP2_HTTP_FLAG_SCHEME_HTTP) == 0 ||
in check_path()
99
((stream->
http_flags
& NGHTTP2_HTTP_FLAG_PATH_REGULAR) ||
in check_path()
100
((stream->
http_flags
& NGHTTP2_HTTP_FLAG_METH_OPTIONS) &&
in check_path()
101
(stream->
http_flags
& NGHTTP2_HTTP_FLAG_PATH_ASTERISK)));
in check_path()
110
(stream->
http_flags
& NGHTTP2_HTTP_FLAG_PSEUDO_HEADER_DISALLOWED)) {
in http_request_on_header()
128
stream->
http_flags
|
in http_request_on_header()
[all...]
H
A
D
nghttp2_stream.h
219
uint32_t
http_flags
;
member
H
A
D
nghttp2_stream.c
91
stream->
http_flags
= NGHTTP2_HTTP_FLAG_NONE;
in nghttp2_stream_init()
H
A
D
nghttp2_session.c
105
(stream->
http_flags
& NGHTTP2_HTTP_FLAG_EXPECT_FINAL_RESPONSE) == 0;
in session_trailer_headers()
4033
(stream->
http_flags
& NGHTTP2_HTTP_FLAG_PRIORITY)) {
in session_end_stream_headers_received()
4086
if (stream->
http_flags
& NGHTTP2_HTTP_FLAG_EXPECT_FINAL_RESPONSE) {
in session_after_header_block_received()
8071
stream->
http_flags
|= NGHTTP2_HTTP_FLAG_METH_UPGRADE_WORKAROUND;
in nghttp2_session_upgrade()
8092
stream->
http_flags
|= NGHTTP2_HTTP_FLAG_METH_HEAD;
in nghttp2_session_upgrade2()
/third_party/nghttp2/tests/
H
A
D
nghttp2_session_test.c
1154
stream->
http_flags
|= NGHTTP2_HTTP_FLAG_EXPECT_FINAL_RESPONSE;
in test_nghttp2_session_recv_data_no_auto_flow_control()
13132
stream->
http_flags
|= NGHTTP2_HTTP_FLAG_METH_CONNECT;
in test_nghttp2_http_ignore_content_length()
13171
CU_ASSERT((stream->
http_flags
& NGHTTP2_HTTP_FLAG_METH_CONNECT) > 0);
in test_nghttp2_http_ignore_content_length()
13209
CU_ASSERT(NGHTTP2_HTTP_FLAG_METH_CONNECT == stream->
http_flags
);
in test_nghttp2_http_record_request_method()
13220
CU_ASSERT((NGHTTP2_HTTP_FLAG_METH_CONNECT & stream->
http_flags
) > 0);
in test_nghttp2_http_record_request_method()
Completed in 35 milliseconds