Home
last modified time | relevance | path

Searched refs:reportId (Results 1 – 17 of 17) sorted by relevance

/base/telephony/call_manager/services/telephony_interaction/src/
Dcall_status_callback.cpp127 CallResultReportId reportId = CallResultReportId::START_DTMF_REPORT_ID; in StartDtmfResult() local
131 …return DelayedSingleton<CallAbilityReportProxy>::GetInstance()->ReportAsyncResults(reportId, resul… in StartDtmfResult()
136 CallResultReportId reportId = CallResultReportId::STOP_DTMF_REPORT_ID; in StopDtmfResult() local
140 …return DelayedSingleton<CallAbilityReportProxy>::GetInstance()->ReportAsyncResults(reportId, resul… in StopDtmfResult()
145 CallResultReportId reportId = CallResultReportId::SEND_USSD_REPORT_ID; in SendUssdResult() local
149 …return DelayedSingleton<CallAbilityReportProxy>::GetInstance()->ReportAsyncResults(reportId, resul… in SendUssdResult()
166 CallResultReportId reportId = CallResultReportId::GET_IMS_CALL_DATA_REPORT_ID; in GetImsCallDataResult() local
170 …return DelayedSingleton<CallAbilityReportProxy>::GetInstance()->ReportAsyncResults(reportId, resul… in GetImsCallDataResult()
177 CallResultReportId reportId = CallResultReportId::GET_CALL_WAITING_REPORT_ID; in UpdateGetWaitingResult() local
182 … DelayedSingleton<CallAbilityReportProxy>::GetInstance()->ReportAsyncResults(reportId, resultInfo); in UpdateGetWaitingResult()
[all …]
/base/telephony/call_manager/services/call_report/include/
Dcall_ability_callback_proxy.h34 …int32_t OnReportAsyncResults(CallResultReportId reportId, AppExecFwk::PacMap &resultInfo) override;
39 …void PackDataParcel(CallResultReportId reportId, AppExecFwk::PacMap &resultInfo, MessageParcel &da…
Dcall_ability_report_proxy.h38 int32_t ReportAsyncResults(const CallResultReportId reportId, AppExecFwk::PacMap &resultInfo);
/base/telephony/call_manager/services/call_report/src/
Dcall_ability_callback_proxy.cpp102 int32_t CallAbilityCallbackProxy::OnReportAsyncResults(CallResultReportId reportId, AppExecFwk::Pac… in OnReportAsyncResults() argument
111 PackDataParcel(reportId, resultInfo, dataParcel); in OnReportAsyncResults()
149 CallResultReportId reportId, AppExecFwk::PacMap &resultInfo, MessageParcel &dataParcel) in PackDataParcel() argument
151 dataParcel.WriteInt32(static_cast<int32_t>(reportId)); in PackDataParcel()
153 switch (reportId) { in PackDataParcel()
Dcall_ability_report_proxy.cpp167 const CallResultReportId reportId, AppExecFwk::PacMap &resultInfo) in ReportAsyncResults() argument
174 ret = (*it)->OnReportAsyncResults(reportId, resultInfo); in ReportAsyncResults()
182 TELEPHONY_LOGI("ReportAsyncResults success, reportId:%{public}d", reportId); in ReportAsyncResults()
/base/telephony/call_manager/frameworks/js/napi/src/
Dnapi_call_manager_callback.cpp58 int32_t NapiCallManagerCallback::OnReportAsyncResults(CallResultReportId reportId, AppExecFwk::PacM… in OnReportAsyncResults() argument
61 …DelayedSingleton<NapiCallAbilityCallback>::GetInstance()->UpdateAsyncResultsInfo(reportId, resultI… in OnReportAsyncResults()
Dnapi_call_ability_callback.cpp563 const CallResultReportId reportId, AppExecFwk::PacMap &resultInfo) in UpdateAsyncResultsInfo() argument
566 TELEPHONY_LOGI("UpdateAsyncResultsInfo reportId = %{public}d", reportId); in UpdateAsyncResultsInfo()
567 auto itFunc = memberFuncMap_.find(reportId); in UpdateAsyncResultsInfo()
/base/telephony/call_manager/test/unittest/ui_client/
Dcall_manager_callback_test.cpp47 int32_t CallManagerCallbackTest::OnReportAsyncResults(CallResultReportId reportId, AppExecFwk::PacM… in OnReportAsyncResults() argument
50 << "reportId:" << (int32_t)reportId << std::endl; in OnReportAsyncResults()
51 switch (reportId) { in OnReportAsyncResults()
Dcall_manager_callback_test.h34 …int32_t OnReportAsyncResults(CallResultReportId reportId, AppExecFwk::PacMap &resultInfo) override;
/base/telephony/call_manager/frameworks/native/src/
Dcall_ability_callback.cpp65 int32_t CallAbilityCallback::OnReportAsyncResults(CallResultReportId reportId, AppExecFwk::PacMap &… in OnReportAsyncResults() argument
69 return callbackPtr_->OnReportAsyncResults(reportId, resultInfo); in OnReportAsyncResults()
Dcall_ability_callback_stub.cpp125 CallResultReportId reportId = static_cast<CallResultReportId>(data.ReadInt32()); in OnUpdateAysncResults() local
127 switch (reportId) { in OnUpdateAysncResults()
165 result = OnReportAsyncResults(reportId, resultInfo); in OnUpdateAysncResults()
/base/telephony/call_manager/frameworks/js/napi/include/
Dnapi_call_manager_callback.h34 …int32_t OnReportAsyncResults(CallResultReportId reportId, AppExecFwk::PacMap &resultInfo) override;
Dnapi_call_ability_callback.h63 … int32_t UpdateAsyncResultsInfo(const CallResultReportId reportId, AppExecFwk::PacMap &resultInfo);
/base/telephony/call_manager/interfaces/innerkits/
Dcall_manager_callback.h33 …virtual int32_t OnReportAsyncResults(CallResultReportId reportId, AppExecFwk::PacMap &resultInfo) …
/base/telephony/call_manager/frameworks/native/include/
Dcall_ability_callback.h37 …int32_t OnReportAsyncResults(CallResultReportId reportId, AppExecFwk::PacMap &resultInfo) override;
Di_call_ability_callback.h34 …virtual int32_t OnReportAsyncResults(CallResultReportId reportId, AppExecFwk::PacMap &resultInfo) …
/base/telephony/call_manager/test/unittest/call_manager_gtest/include/
Dcall_manager_connect.h233 int32_t OnReportAsyncResults(CallResultReportId reportId, AppExecFwk::PacMap &resultInfo) in OnReportAsyncResults() argument
305 CallResultReportId reportId = static_cast<CallResultReportId>(data.ReadInt32()); in OnUpdateAsyncResultRequest() local
307 switch (reportId) { in OnUpdateAsyncResultRequest()
345 int32_t result = OnReportAsyncResults(reportId, resultInfo); in OnUpdateAsyncResultRequest()
374 int32_t OnReportAsyncResults(CallResultReportId reportId, AppExecFwk::PacMap &resultInfo) in OnReportAsyncResults() argument