Home
last modified time | relevance | path

Searched refs:ottVec (Results 1 – 14 of 14) sorted by relevance

/base/telephony/call_manager/services/call_manager_service/src/
Dcall_manager_service.cpp1088 int32_t CallManagerService::ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec) in ReportOttCallDetailsInfo() argument
1090 if (ottVec.empty()) { in ReportOttCallDetailsInfo()
1097 …(void)memcpy_s(detailsInfo.bundleName, kMaxBundleNameLen, ottVec[0].bundleName, kMaxBundleNameLen); in ReportOttCallDetailsInfo()
1102 std::vector<OttCallDetailsInfo>::iterator it = ottVec.begin(); in ReportOttCallDetailsInfo()
1103 for (; it != ottVec.end(); ++it) { in ReportOttCallDetailsInfo()
Dcall_manager_service_stub.cpp1108 std::vector<OttCallDetailsInfo> ottVec; in OnReportOttCallDetailsInfo() local
1115 ottVec.push_back(*infoPtr); in OnReportOttCallDetailsInfo()
1117 result = ReportOttCallDetailsInfo(ottVec); in OnReportOttCallDetailsInfo()
/base/telephony/call_manager/frameworks/js/napi/include/
Dnapi_call_manager_types.h171 std::vector<OttCallDetailsInfo> ottVec {};
/base/telephony/call_manager/interfaces/innerkits/
Dcall_manager_client.h522 int32_t ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec);
/base/telephony/call_manager/frameworks/native/include/
Dcall_manager_service_proxy.h594 int32_t ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec) override;
Di_call_manager_service.h100 virtual int32_t ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec) = 0;
Dcall_manager_proxy.h106 int32_t ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec);
/base/telephony/call_manager/frameworks/native/src/
Dcall_manager_client.cpp632 int32_t CallManagerClient::ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec) in ReportOttCallDetailsInfo() argument
635 return g_callManagerProxy->ReportOttCallDetailsInfo(ottVec); in ReportOttCallDetailsInfo()
Dcall_manager_service_proxy.cpp1451 int32_t CallManagerServiceProxy::ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec) in ReportOttCallDetailsInfo() argument
1460 if (ottVec.empty()) { in ReportOttCallDetailsInfo()
1464 dataParcel.WriteInt32(ottVec.size()); in ReportOttCallDetailsInfo()
1465 std::vector<OttCallDetailsInfo>::iterator it = ottVec.begin(); in ReportOttCallDetailsInfo()
1466 for (; it != ottVec.end(); ++it) { in ReportOttCallDetailsInfo()
Dcall_manager_proxy.cpp1095 int32_t CallManagerProxy::ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec) in ReportOttCallDetailsInfo() argument
1102 int32_t errCode = callManagerServicePtr_->ReportOttCallDetailsInfo(ottVec); in ReportOttCallDetailsInfo()
/base/telephony/call_manager/services/call_manager_service/include/
Dcall_manager_service.h629 int32_t ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec) override;
/base/telephony/call_manager/test/unittest/call_manager_gtest/src/
Dcall_manager_gtest.cpp5305 std::vector<OttCallDetailsInfo> ottVec { info }; variable
5306 EXPECT_EQ(CallManagerGtest::clientPtr_->ReportOttCallDetailsInfo(ottVec), RETURN_VALUE_IS_ZERO);
5320 std::vector<OttCallDetailsInfo> ottVec; variable
5321 EXPECT_NE(CallManagerGtest::clientPtr_->ReportOttCallDetailsInfo(ottVec), RETURN_VALUE_IS_ZERO);
5563 std::vector<OttCallDetailsInfo> ottVec; variable
5564 ASSERT_NE(callManagerService->ReportOttCallDetailsInfo(ottVec), TELEPHONY_SUCCESS);
Dzero_branch_test.cpp999 std::vector<OttCallDetailsInfo> ottVec; variable
1000 callManagerClient->ReportOttCallDetailsInfo(ottVec);
/base/telephony/call_manager/frameworks/js/napi/src/
Dnapi_call_manager.cpp2752 (asyncContext->ottVec).clear(); in ReportOttCallDetailsInfo()
2781 (asyncContext->ottVec).push_back(tmpOttVec); in ReportOttCallDetailsInfo()
4649 …DelayedSingleton<CallManagerClient>::GetInstance()->ReportOttCallDetailsInfo(asyncContext->ottVec); in NativeReportOttCallDetailsInfo()