/base/telephony/call_manager/test/unittest/call_manager_gtest/src/ |
H A D | call_manager8_gtest.cpp | 710 std::vector<OttCallDetailsInfo> ottVec { info }; in HWTEST_F() 711 EXPECT_EQ(CallManagerGtest::clientPtr_->ReportOttCallDetailsInfo(ottVec), RETURN_VALUE_IS_ZERO); in HWTEST_F() 725 std::vector<OttCallDetailsInfo> ottVec; in HWTEST_F() local 726 EXPECT_NE(CallManagerGtest::clientPtr_->ReportOttCallDetailsInfo(ottVec), RETURN_VALUE_IS_ZERO); in HWTEST_F()
|
H A D | call_manager7_gtest.cpp | 264 std::vector<OttCallDetailsInfo> ottVec; in HWTEST_F() local 265 ASSERT_NE(callManagerService->ReportOttCallDetailsInfo(ottVec), TELEPHONY_SUCCESS); in HWTEST_F() 294 std::vector<OttCallDetailsInfo> ottVec { info }; in HWTEST_F() 295 callManagerService->ReportOttCallDetailsInfo(ottVec); in HWTEST_F()
|
H A D | call_manager2_gtest.cpp | 266 std::vector<OttCallDetailsInfo> ottVec; in HWTEST_F() local 267 ASSERT_EQ(client->ReportOttCallDetailsInfo(ottVec), TELEPHONY_ERR_UNINIT); in HWTEST_F()
|
/base/telephony/call_manager/frameworks/native/src/ |
H A D | call_manager_service_proxy.cpp | 1128 int32_t CallManagerServiceProxy::ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec) in ReportOttCallDetailsInfo() argument 1135 if (ottVec.empty()) { in ReportOttCallDetailsInfo() 1136 TELEPHONY_LOGE("ottVec is empty"); in ReportOttCallDetailsInfo() 1139 dataParcel.WriteInt32(ottVec.size()); in ReportOttCallDetailsInfo() 1140 std::vector<OttCallDetailsInfo>::iterator it = ottVec.begin(); in ReportOttCallDetailsInfo() 1141 for (; it != ottVec.end(); ++it) { in ReportOttCallDetailsInfo()
|
H A D | call_manager_client.cpp | 672 int32_t CallManagerClient::ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec) in ReportOttCallDetailsInfo() argument 675 return g_callManagerProxy->ReportOttCallDetailsInfo(ottVec); in ReportOttCallDetailsInfo()
|
H A D | call_manager_proxy.cpp | 1417 int32_t CallManagerProxy::ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec) in ReportOttCallDetailsInfo() argument 1428 int32_t errCode = callManagerServicePtr_->ReportOttCallDetailsInfo(ottVec); in ReportOttCallDetailsInfo()
|
/base/telephony/call_manager/services/call_manager_service/src/ |
H A D | call_manager_service.cpp | 1253 int32_t CallManagerService::ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec) in ReportOttCallDetailsInfo() argument 1255 if (ottVec.empty()) { in ReportOttCallDetailsInfo() 1256 TELEPHONY_LOGE("ottVec is empty!"); in ReportOttCallDetailsInfo() 1262 (void)memcpy_s(detailsInfo.bundleName, kMaxBundleNameLen, ottVec[0].bundleName, kMaxBundleNameLen); in ReportOttCallDetailsInfo() 1267 std::vector<OttCallDetailsInfo>::iterator it = ottVec.begin(); in ReportOttCallDetailsInfo() 1268 for (; it != ottVec.end(); ++it) { in ReportOttCallDetailsInfo()
|
H A D | call_manager_service_stub.cpp | 1209 std::vector<OttCallDetailsInfo> ottVec; in OnReportOttCallDetailsInfo() local 1216 ottVec.push_back(*infoPtr); in OnReportOttCallDetailsInfo() 1218 result = ReportOttCallDetailsInfo(ottVec); in OnReportOttCallDetailsInfo()
|
/base/telephony/call_manager/frameworks/js/napi/include/ |
H A D | napi_call_manager_types.h | 170 std::vector<OttCallDetailsInfo> ottVec {};
|
/base/telephony/call_manager/interfaces/innerkits/ |
H A D | call_manager_client.h | 539 * @param ottVec[in], ott call status detail info list 542 int32_t ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec);
|
/base/telephony/call_manager/frameworks/native/include/ |
H A D | call_manager_service_proxy.h | 615 * @param ottVec[in], ott call status detail info list 618 int32_t ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec) override;
|
H A D | i_call_manager_service.h | 104 virtual int32_t ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec) = 0;
|
H A D | call_manager_proxy.h | 111 int32_t ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec);
|
/base/telephony/call_manager/services/call_manager_service/include/ |
H A D | call_manager_service.h | 650 * @param ottVec[in], ott call status detail info list 653 int32_t ReportOttCallDetailsInfo(std::vector<OttCallDetailsInfo> &ottVec) override; 659 * @param ottVec[in], ott call status detail info list
|
/base/telephony/call_manager/test/unittest/call_manager_zero_gtest/src/ |
H A D | zero_branch4_test.cpp | 767 std::vector<OttCallDetailsInfo> ottVec; in HWTEST_F() local 768 callManagerClient->ReportOttCallDetailsInfo(ottVec); in HWTEST_F()
|
/base/telephony/call_manager/frameworks/js/napi/src/ |
H A D | napi_call_manager.cpp | 2867 (asyncContext->ottVec).clear(); in ReportOttCallDetailsInfo() 2896 (asyncContext->ottVec).push_back(tmpOttVec); in ReportOttCallDetailsInfo() 4863 DelayedSingleton<CallManagerClient>::GetInstance()->ReportOttCallDetailsInfo(asyncContext->ottVec); in NativeReportOttCallDetailsInfo()
|