Home
last modified time | relevance | path

Searched refs:postDial (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/base/telephony/cellular_call/test/unittest/imstest/
H A Dstandardize_utils_test.cpp57 std::string postDial; variable
58 standardizeUtils.ExtractAddressAndPostDial(phoneString, networkAddress, postDial);
60 EXPECT_EQ(postDial, ",;!@$%^&*()_-={}[]|:<>?");
H A Dzero_branch1_test.cpp945 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 Dcellular_call_connection_satellite.cpp173 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 Dcellular_call_connection_cs.cpp311 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 Dcellular_call_connection_ims.cpp373 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 Dstandardize_utils.cpp59 std::string &postDial) in ExtractAddressAndPostDial() argument
79 postDial += c; in ExtractAddressAndPostDial()
/ohos5.0/base/telephony/cellular_call/services/utils/include/
H A Dstandardize_utils.h53 …essAndPostDial(const std::string &phoneString, std::string &networkAddress, std::string &postDial);
/ohos5.0/base/telephony/cellular_call/services/manager/src/
H A Dcellular_call_handler.cpp776 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()