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:MethodForPost
(Results
1 - 23
of
23
) sorted by relevance
/foundation/communication/netstack/frameworks/native/http/http_client/
H
A
D
http_client_request.cpp
60
bool HttpClientRequest::
MethodForPost
(const std::string &method)
in MethodForPost()
function in OHOS::NetStack::HttpClient::HttpClientRequest
67
if (!MethodForGet(method) && !
MethodForPost
(method) && !method.empty()) {
in SetMethod()
/foundation/communication/netstack/frameworks/js/builtin/fetch/include/
H
A
D
http_request_utils.h
44
bool
MethodForPost
(const std::string &method);
/foundation/communication/netstack/frameworks/js/napi/fetch/fetch_exec/include/
H
A
D
fetch_exec.h
44
static bool
MethodForPost
(const std::string &method);
/foundation/communication/netstack/frameworks/js/builtin/fetch/src/
H
A
D
http_request.cpp
134
if (!MethodForGet(method) && !
MethodForPost
(method)) {
in SetOption()
140
if (
MethodForPost
(method)) {
in SetOption()
H
A
D
http_request_utils.cpp
64
bool
MethodForPost
(const std::string &method)
in MethodForPost()
function
H
A
D
fetch_module.cpp
210
if (
MethodForPost
(requestData->GetMethod())) {
in ParseExtraData()
/foundation/communication/netstack/frameworks/js/napi/fetch/fetch_exec/src/
H
A
D
fetch_exec.cpp
189
bool FetchExec::
MethodForPost
(const std::string &method)
in MethodForPost()
function in OHOS::NetStack::Fetch::FetchExec
235
if (!MethodForGet(method) && !
MethodForPost
(method)) {
in SetOption()
287
if (
MethodForPost
(method) && !context->request.GetBody().empty()) {
in SetOption()
/foundation/communication/netstack/interfaces/innerkits/http_client/include/
H
A
D
http_client_request.h
202
bool
MethodForPost
(const std::string &method);
/foundation/communication/netmanager_base/test/netsysbpfstats/unittest/bpf_core_test/
H
A
D
BpfRequestTest.cpp
284
bool method = req.
MethodForPost
("");
in HWTEST_F()
291
bool method = req.
MethodForPost
("POST");
in HWTEST_F()
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_core_test/
H
A
D
NetSysRequestTest.cpp
284
bool method = req.
MethodForPost
("");
in HWTEST_F()
291
bool method = req.
MethodForPost
("POST");
in HWTEST_F()
/foundation/communication/netmanager_ext/test/vpnmanager/unittest/vpn_core_test/
H
A
D
VpnRequestTest.cpp
284
bool method = req.
MethodForPost
("");
in HWTEST_F()
291
bool method = req.
MethodForPost
("POST");
in HWTEST_F()
/foundation/communication/netstack/test/unittest/http_test/
H
A
D
HttpClientRequestTest.cpp
284
bool method = req.
MethodForPost
("");
in HWTEST_F()
291
bool method = req.
MethodForPost
("POST");
in HWTEST_F()
/foundation/communication/netmanager_ext/test/networksharemanager/unittest/netshare_core_test/
H
A
D
NetShareRequestTest.cpp
284
bool method = req.
MethodForPost
("");
in HWTEST_F()
291
bool method = req.
MethodForPost
("POST");
in HWTEST_F()
/foundation/communication/netstack/test/unittest/http_client_test/
H
A
D
HttpClientRequestTest.cpp
284
bool method = req.
MethodForPost
("");
in HWTEST_F()
291
bool method = req.
MethodForPost
("POST");
in HWTEST_F()
/foundation/communication/netstack/test/unittest/http_client/
H
A
D
HttpClientRequestTest.cpp
284
bool method = req.
MethodForPost
("");
in HWTEST_F()
291
bool method = req.
MethodForPost
("POST");
in HWTEST_F()
/foundation/communication/netstack/test/unittest/websocket_core_test/
H
A
D
WebSocketRequestTest.cpp
284
bool method = req.
MethodForPost
("");
in HWTEST_F()
291
bool method = req.
MethodForPost
("POST");
in HWTEST_F()
/foundation/communication/netstack/frameworks/cj/http/include/
H
A
D
net_http_client_exec.h
47
static bool
MethodForPost
(const std::string &method);
/foundation/communication/netstack/frameworks/js/napi/http/http_exec/include/
H
A
D
http_exec.h
72
static bool
MethodForPost
(const std::string &method);
/foundation/communication/netstack/frameworks/cj/http/src/
H
A
D
net_http_request_context.cpp
420
if (NetHttpClientExec::
MethodForPost
(options.GetMethod())) {
in ParseHeader()
461
if (NetHttpClientExec::
MethodForPost
(options.GetMethod())) {
in ParseExtraData()
H
A
D
net_http_client_exec.cpp
308
bool NetHttpClientExec::
MethodForPost
(const std::string &method)
in MethodForPost()
function in OHOS::NetStack::Http::NetHttpClientExec
766
if (!MethodForGet(method) && !
MethodForPost
(method)) {
in SetOption()
778
if (
MethodForPost
(method) && !context->options.GetBody().empty()) {
in SetOption()
/foundation/communication/netstack/frameworks/js/napi/fetch/async_context/src/
H
A
D
fetch_context.cpp
113
if (FetchExec::
MethodForPost
(request.GetMethod())) {
in ParseData()
/foundation/communication/netstack/frameworks/js/napi/http/async_context/src/
H
A
D
request_context.cpp
242
if (HttpExec::
MethodForPost
(options.GetMethod())) {
in ParseHeader()
316
if (HttpExec::
MethodForPost
(options.GetMethod())) {
in ParseExtraData()
/foundation/communication/netstack/frameworks/js/napi/http/http_exec/src/
H
A
D
http_exec.cpp
415
if (
MethodForPost
(method)) {
in AddCurlHandle()
680
bool HttpExec::
MethodForPost
(const std::string &method)
in AddCurlHandle()
function in OHOS::NetStack::Http::HttpExec
1154
if (!MethodForGet(method) && !
MethodForPost
(method)) {
in AddCurlHandle()
1173
if (
MethodForPost
(method) && !context->options.GetBody().empty()) {
in AddCurlHandle()
Completed in 17 milliseconds