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:httpProxyObj
(Results
1 - 3
of
3
) sorted by relevance
/foundation/communication/netmanager_base/interfaces/kits/c/netconnclient/src/
H
A
D
net_connection_adapter.cpp
120
int32_t Conv2HttpProxy(const HttpProxy &
httpProxyObj
, NetConn_HttpProxy *httpProxy)
in Conv2HttpProxy()
argument
122
int32_t ret = Conv2Ch(
httpProxyObj
.GetHost(), httpProxy->host);
in Conv2HttpProxy()
126
httpProxy->port =
httpProxyObj
.GetPort();
in Conv2HttpProxy()
129
for (const auto &exclusion :
httpProxyObj
.GetExclusionList()) {
in Conv2HttpProxy()
140
httpProxy->exclusionListSize = static_cast<int32_t>(
httpProxyObj
.GetExclusionList().size());
in Conv2HttpProxy()
145
void ConvertNetConn2HttpProxy(const NetConn_HttpProxy &netConn, HttpProxy &
httpProxyObj
)
in ConvertNetConn2HttpProxy()
argument
147
httpProxyObj
.SetHost(std::string(netConn.host));
in ConvertNetConn2HttpProxy()
148
httpProxyObj
.SetPort(netConn.port);
in ConvertNetConn2HttpProxy()
153
httpProxyObj
.SetExclusionList(exclusionList);
in ConvertNetConn2HttpProxy()
H
A
D
net_connection.cpp
205
HttpProxy
httpProxyObj
= HttpProxy();
in OH_NetConn_GetDefaultHttpProxy()
local
206
int32_t ret = NetConnClient::GetInstance().GetDefaultHttpProxy(
httpProxyObj
);
in OH_NetConn_GetDefaultHttpProxy()
207
int32_t retConv = Conv2HttpProxy(
httpProxyObj
, httpProxy);
in OH_NetConn_GetDefaultHttpProxy()
338
HttpProxy
httpProxyObj
;
in OH_NetConn_SetAppHttpProxy()
local
339
ConvertNetConn2HttpProxy(*httpProxy,
httpProxyObj
);
in OH_NetConn_SetAppHttpProxy()
340
int32_t ret = NetConnClient::GetInstance().SetAppHttpProxy(
httpProxyObj
);
in OH_NetConn_SetAppHttpProxy()
/foundation/communication/netmanager_base/interfaces/kits/c/netconnclient/include/
H
A
D
net_connection_adapter.h
43
int32_t Conv2HttpProxy(const HttpProxy &
httpProxyObj
, NetConn_HttpProxy *httpProxy);
45
void ConvertNetConn2HttpProxy(const NetConn_HttpProxy &netConn, HttpProxy &
httpProxyObj
);
Completed in 3 milliseconds