Searched refs:proxyIpAddress (Results 1 - 9 of 9) sorted by relevance
/base/telephony/cellular_data/services/include/state_machine/ |
H A D | cellular_data_state_machine.h | 64 void UpdateHttpProxy(const std::string &proxyIpAddress); 69 void SplitProxyIpAddress(const std::string &proxyIpAddress, std::string &host, uint16_t &port);
|
/base/telephony/cellular_data/services/src/state_machine/ |
H A D | cellular_data_state_machine.cpp | 277 void CellularDataStateMachine::SplitProxyIpAddress(const std::string &proxyIpAddress, std::string &host, uint16_t &port) in SplitProxyIpAddress() argument 282 while ((found = proxyIpAddress.find(':', pos)) != std::string::npos) { in SplitProxyIpAddress() 283 address.push_back(proxyIpAddress.substr(pos, found - pos)); in SplitProxyIpAddress() 286 address.push_back(proxyIpAddress.substr(pos)); in SplitProxyIpAddress() 298 void CellularDataStateMachine::UpdateHttpProxy(const std::string &proxyIpAddress) in UpdateHttpProxy() argument 302 SplitProxyIpAddress(proxyIpAddress, host, port); in UpdateHttpProxy()
|
/base/telephony/telephony_data/interfaces/innerkits/include/ |
H A D | pdp_profile_data.h | 133 std::string proxyIpAddress = ""; member
|
/base/telephony/cellular_data/services/src/apn_manager/ |
H A D | apn_item.cpp | 144 if (strcpy_s(apnItem->attr_.proxyIpAddress_, ALL_APN_ITEM_CHAR_LENGTH, apnData.proxyIpAddress.c_str()) != EOK) { in BuildOtherApnAttributes()
|
/base/telephony/cellular_data/test/ |
H A D | cellular_state_machine_test.cpp | 1725 std::string proxyIpAddress = ""; in HWTEST_F() local 1728 cellularMachine->SplitProxyIpAddress(proxyIpAddress, host, port); in HWTEST_F() 1742 std::string proxyIpAddress = "192.168.1.1"; in HWTEST_F() local 1745 cellularMachine->SplitProxyIpAddress(proxyIpAddress, host, port); in HWTEST_F() 1759 std::string proxyIpAddress = "192.168.1.1:8080"; in HWTEST_F() local 1762 cellularMachine->SplitProxyIpAddress(proxyIpAddress, host, port); in HWTEST_F()
|
H A D | zero_branch_test.cpp | 1704 std::string proxyIpAddress = "1234:567"; in HWTEST_F() local 1707 cellularMachine->SplitProxyIpAddress(proxyIpAddress, host, port); in HWTEST_F()
|
/base/telephony/telephony_data/common/src/ |
H A D | parser_util.cpp | 163 bean.proxyIpAddress = ParseString(cJSON_GetObjectItem(itemRoot, ITEM_IP_ADDRESS)); in ParserPdpProfileInfos() 206 value.PutString(PdpProfileData::PROXY_IP_ADDRESS, bean.proxyIpAddress); in ParserPdpProfileToValuesBucket()
|
/base/telephony/cellular_data/services/src/utils/ |
H A D | cellular_data_rdb_helper.cpp | 246 result->GetString(index, apnBean.proxyIpAddress); in MakePdpProfile()
|
/base/telephony/cellular_data/services/src/ |
H A D | cellular_data_handler.cpp | 802 std::string proxyIpAddress = ""; in EstablishDataConnectionComplete() local 805 proxyIpAddress = attachApn->attr_.proxyIpAddress_; in EstablishDataConnectionComplete() 807 stateMachine->UpdateHttpProxy(proxyIpAddress); in EstablishDataConnectionComplete()
|
Completed in 28 milliseconds