Home
last modified time | relevance | path

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

/base/telephony/cellular_call/services/common/src/
Dstandardize_utils.cpp40 std::string &postDial) in ExtractAddressAndPostDial() argument
60 postDial += c; in ExtractAddressAndPostDial()
/base/telephony/cellular_call/services/common/include/
Dstandardize_utils.h45 …essAndPostDial(const std::string &phoneString, std::string &networkAddress, std::string &postDial);
/base/telephony/cellular_call/services/connection/src/
Dcellular_call_connection_cs.cpp310 std::shared_ptr<PostDialData> postDial = std::make_shared<PostDialData>(); in ProcessPostDialCallChar() local
311 postDial->callId = GetIndex(); in ProcessPostDialCallChar()
312 postDial->isIms = false; in ProcessPostDialCallChar()
313 handle->SendEvent(EVENT_EXECUTE_POST_DIAL, postDial, PAUSE_DELAY_TIME); in ProcessPostDialCallChar()
Dcellular_call_connection_ims.cpp399 std::shared_ptr<PostDialData> postDial = std::make_shared<PostDialData>(); in ProcessPostDialCallChar() local
400 postDial->callId = GetIndex(); in ProcessPostDialCallChar()
401 postDial->isIms = true; in ProcessPostDialCallChar()
402 handle->SendEvent(EVENT_EXECUTE_POST_DIAL, postDial, PAUSE_DELAY_TIME); in ProcessPostDialCallChar()
/base/telephony/cellular_call/services/manager/src/
Dcellular_call_handler.cpp504 std::shared_ptr<PostDialData> postDial = std::make_shared<PostDialData>(); in SendDtmfResponse() local
505 postDial->callId = result->flag; in SendDtmfResponse()
506 postDial->isIms = event->GetParam() == static_cast<int32_t>(CallType::TYPE_IMS); in SendDtmfResponse()
507 this->SendEvent(EVENT_EXECUTE_POST_DIAL, postDial, DELAY_TIME); in SendDtmfResponse()