Home
last modified time | relevance | path

Searched refs:bindNetId (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/communication/netmanager_base/frameworks/native/netconnclient/src/
H A Dnet_conn_client.cpp651 int32_t bindNetId = 0; in GetDefaultHttpProxy() local
652 GetAppNet(bindNetId); in GetDefaultHttpProxy()
653 return proxy->GetDefaultHttpProxy(bindNetId, httpProxy); in GetDefaultHttpProxy()
/ohos5.0/foundation/communication/netmanager_base/interfaces/innerkits/netconnclient/include/proxy/
H A Di_net_conn_service.h81 virtual int32_t GetDefaultHttpProxy(int32_t bindNetId, HttpProxy &httpProxy) = 0;
H A Dnet_conn_service_proxy.h67 int32_t GetDefaultHttpProxy(int32_t bindNetId, HttpProxy &httpProxy) override;
/ohos5.0/foundation/communication/netmanager_base/test/netconnmanager/unittest/net_conn_manager_test/
H A Dnet_conn_service_stub_test.h200 int32_t GetDefaultHttpProxy(int32_t bindNetId, HttpProxy &httpProxy) override in GetDefaultHttpProxy() argument
H A Dnet_conn_service_test.cpp634 int32_t bindNetId = 0; variable
636 int32_t ret = NetConnService::GetInstance()->GetDefaultHttpProxy(bindNetId, defaultHttpProxy);
642 int32_t bindNetId = NET_ID; variable
644 int32_t ret = NetConnService::GetInstance()->GetDefaultHttpProxy(bindNetId, defaultHttpProxy);
/ohos5.0/foundation/communication/netmanager_base/services/netconnmanager/src/stub/
H A Dnet_conn_service_stub.cpp1128 int32_t bindNetId = 0; in OnGetDefaultHttpProxy() local
1129 if (!data.ReadInt32(bindNetId)) { in OnGetDefaultHttpProxy()
1133 int32_t result = GetDefaultHttpProxy(bindNetId, httpProxy); in OnGetDefaultHttpProxy()
/ohos5.0/foundation/communication/netmanager_base/frameworks/native/netconnclient/src/proxy/
H A Dnet_conn_service_proxy.cpp1098 int32_t NetConnServiceProxy::GetDefaultHttpProxy(int32_t bindNetId, HttpProxy &httpProxy) in GetDefaultHttpProxy() argument
1106 if (!data.WriteInt32(bindNetId)) { in GetDefaultHttpProxy()
/ohos5.0/foundation/communication/netmanager_base/test/fuzztest/netconnclient_fuzzer/
H A Dnet_conn_client_fuzzer.cpp633 int32_t bindNetId = NetConnGetData<int32_t>(); in GetDefaultHttpProxyFuzzTest() local
634 dataParcel.WriteInt32(bindNetId); in GetDefaultHttpProxyFuzzTest()
/ohos5.0/foundation/communication/netmanager_base/services/netconnmanager/include/
H A Dnet_conn_service.h311 int32_t GetDefaultHttpProxy(int32_t bindNetId, HttpProxy &httpProxy) override;
/ohos5.0/foundation/communication/netmanager_base/services/netconnmanager/src/
H A Dnet_conn_service.cpp1631 int32_t NetConnService::GetDefaultHttpProxy(int32_t bindNetId, HttpProxy &httpProxy) in GetDefaultHttpProxy() argument
1641 auto iter = networks_.find(bindNetId); in GetDefaultHttpProxy()