Searched refs:postDial (Results 1 – 8 of 8) sorted by relevance
/ohos5.0/base/telephony/cellular_call/test/unittest/imstest/ |
H A D | standardize_utils_test.cpp | 57 std::string postDial; variable 58 standardizeUtils.ExtractAddressAndPostDial(phoneString, networkAddress, postDial); 60 EXPECT_EQ(postDial, ",;!@$%^&*()_-={}[]|:<>?");
|
H A D | zero_branch1_test.cpp | 945 std::string postDial = "11111111"; variable 948 standardizeUtils.ExtractAddressAndPostDial(phoneString, networkAddress, postDial); 949 ASSERT_EQ(postDial, "11111111,123321");
|
/ohos5.0/base/telephony/cellular_call/services/connection/src/ |
H A D | cellular_call_connection_satellite.cpp | 173 std::shared_ptr<PostDialData> postDial = std::make_shared<PostDialData>(); in ProcessPostDialCallChar() local 174 postDial->callId = GetIndex(); in ProcessPostDialCallChar() 175 postDial->isIms = false; in ProcessPostDialCallChar() 176 cellularCallHandle->SendEvent(EVENT_EXECUTE_POST_DIAL, postDial, PAUSE_DELAY_TIME); in ProcessPostDialCallChar()
|
H A D | cellular_call_connection_cs.cpp | 311 std::shared_ptr<PostDialData> postDial = std::make_shared<PostDialData>(); in ProcessPostDialCallChar() local 312 postDial->callId = GetIndex(); in ProcessPostDialCallChar() 313 postDial->isIms = false; in ProcessPostDialCallChar() 314 cellularCallHandle->SendEvent(EVENT_EXECUTE_POST_DIAL, postDial, PAUSE_DELAY_TIME); in ProcessPostDialCallChar()
|
H A D | cellular_call_connection_ims.cpp | 373 std::shared_ptr<PostDialData> postDial = std::make_shared<PostDialData>(); in ProcessPostDialCallChar() local 374 postDial->callId = GetIndex(); in ProcessPostDialCallChar() 375 postDial->isIms = true; in ProcessPostDialCallChar() 376 handle->SendEvent(EVENT_EXECUTE_POST_DIAL, postDial, PAUSE_DELAY_TIME); in ProcessPostDialCallChar()
|
/ohos5.0/base/telephony/cellular_call/services/utils/src/ |
H A D | standardize_utils.cpp | 59 std::string &postDial) in ExtractAddressAndPostDial() argument 79 postDial += c; in ExtractAddressAndPostDial()
|
/ohos5.0/base/telephony/cellular_call/services/utils/include/ |
H A D | standardize_utils.h | 53 …essAndPostDial(const std::string &phoneString, std::string &networkAddress, std::string &postDial);
|
/ohos5.0/base/telephony/cellular_call/services/manager/src/ |
H A D | cellular_call_handler.cpp | 776 std::shared_ptr<PostDialData> postDial = std::make_shared<PostDialData>(); in SendDtmfResponse() local 777 postDial->callId = result->flag; in SendDtmfResponse() 778 postDial->isIms = event->GetParam() == static_cast<int32_t>(CallType::TYPE_IMS); in SendDtmfResponse() 779 this->SendEvent(EVENT_EXECUTE_POST_DIAL, postDial, DELAY_TIME); in SendDtmfResponse()
|