/ohos5.0/base/telephony/core_service/interfaces/innerkits/include/ |
H A D | sim_state_type.h | 337 std::u16string showName = u""; member 353 this->showName = DEFAULT_SHOW_NAME; in Init() 374 this->showName = name; in SetShowName() 399 if (!parcel.WriteString16(showName)) { in Marshalling() 424 parcel.ReadString16(showName); in ReadFromParcel()
|
H A D | i_sim_manager.h | 73 virtual int32_t GetShowName(int32_t slotId, std::u16string &showName) = 0;
|
H A D | core_service_client.h | 424 int32_t GetShowName(int32_t slotId, std::u16string &showName);
|
H A D | i_core_service.h | 98 virtual int32_t GetShowName(int32_t slotId, std::u16string &showName) = 0;
|
H A D | core_service_proxy.h | 78 int32_t GetShowName(int32_t slotId, std::u16string &showName) override;
|
H A D | core_manager_inner.h | 265 int32_t GetShowName(int32_t slotId, std::u16string &showName);
|
/ohos5.0/base/telephony/core_service/test/unittest/core_service_gtest/ |
H A D | sim_test.cpp | 482 std::u16string showName; variable 483 CoreServiceClient::GetInstance().GetShowName(SimTest::slotId_, showName); 484 std::string result = Str16ToStr8(showName); 500 std::u16string showName; variable 501 CoreServiceClient::GetInstance().GetShowName(SimTest::slotId1_, showName); 502 std::string result = Str16ToStr8(showName); 517 std::u16string showName; variable 518 CoreServiceClient::GetInstance().GetShowName(SimTest::slotId_, showName); 519 std::string result = Str16ToStr8(showName);
|
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/examples/showcase/src/main/js/default/pages/component/input/radio/attr/ |
H A D | attr.js | 26 showName: function(e) {
|
/ohos5.0/base/telephony/core_service/services/sim/include/ |
H A D | sim_rdb_info.h | 33 std::string showName; variable
|
H A D | multi_sim_controller.h | 56 int32_t GetShowName(int32_t slotId, std::u16string &showName);
|
H A D | sim_manager.h | 84 int32_t GetShowName(int32_t slotId, std::u16string &showName) override;
|
/ohos5.0/base/telephony/core_service/services/sim/src/ |
H A D | multi_sim_controller.cpp | 469 iccAccountInfo_.showName = Str8ToStr16(it->showName); in RefreshActiveIccAccountInfoList() 679 info.showName = Str8ToStr16(localCacheInfo_[slotId].showName); in GetSimAccountInfo() 1077 int32_t MultiSimController::GetShowName(int32_t slotId, std::u16string &showName) in GetShowName() argument 1088 showName = Str8ToStr16(localCacheInfo_[slotId].showName); in GetShowName() 1122 localCacheInfo_[slotId].showName = Str16ToStr8(name); // save to cache in SetShowName()
|
H A D | sim_manager.cpp | 540 int32_t SimManager::GetShowName(int32_t slotId, std::u16string &showName) in GetShowName() argument 546 return multiSimController_->GetShowName(slotId, showName); in GetShowName()
|
H A D | sim_rdb_helper.cpp | 391 result->GetString(index, simBean.showName); in SaveDataToBean()
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v4.0-beta2/ |
H A D | js-apidiff-telephony.md | 29 |访问级别有变化|类名:IccAccountInfo;<br>方法or属性:showName: string;<br>旧版本信息:systemapi|类名:IccAccountInfo;<br>方法…
|
/ohos5.0/docs/en/release-notes/api-diff/v4.0-Release-vs-v4.0-beta2/ |
H A D | js-apidiff-telephony.md | 29 …attribute name: showName: string;<br>Old version information: systemapi|Class name: IccAccountInfo…
|
/ohos5.0/base/telephony/core_service/services/sim/test/ |
H A D | test.cpp | 831 iccAccountInfo.showName = defaultName; in TestGetSimSubscriptionInfo() 837 << "receive showName = [" << Str16ToStr8(iccAccountInfo.showName) << "]" << std::endl in TestGetSimSubscriptionInfo() 898 std::string showName; in TestSetShowName() local 900 std::cin >> showName; in TestSetShowName() 901 int32_t result = g_telephonyService->SetShowName(slot, Str8ToStr16(showName)); in TestSetShowName() 946 … << i << ". receive showName = [" << Str16ToStr8(iccAccountInfo.showName) << "]" << std::endl in TestGetActiveSimAccountInfoList()
|
/ohos5.0/base/telephony/core_service/interfaces/kits/js/ |
H A D | @ohos.telephony.sim.d.ts | 2312 showName: string;
|
/ohos5.0/base/telephony/core_service/frameworks/native/src/ |
H A D | core_service_client.cpp | 534 int32_t CoreServiceClient::GetShowName(int32_t slotId, std::u16string &showName) in GetShowName() argument 541 return proxy->GetShowName(slotId, showName); in GetShowName()
|
H A D | core_manager_inner.cpp | 1968 int32_t CoreManagerInner::GetShowName(int32_t slotId, std::u16string &showName) in GetShowName() argument 1974 return simManager_->GetShowName(slotId, showName); in GetShowName()
|
H A D | core_service_proxy.cpp | 1397 int32_t CoreServiceProxy::GetShowName(int32_t slotId, std::u16string &showName) in GetShowName() argument 1423 showName = reply.ReadString16(); in GetShowName()
|
/ohos5.0/base/telephony/core_service/services/core/include/ |
H A D | core_service.h | 156 int32_t GetShowName(int32_t slotId, std::u16string &showName) override;
|
/ohos5.0/base/telephony/core_service/services/core/src/ |
H A D | core_service.cpp | 772 int32_t CoreService::GetShowName(int32_t slotId, std::u16string &showName) in GetShowName() argument 787 return simManager_->GetShowName(slotId, showName); in GetShowName()
|
H A D | core_service_stub.cpp | 1347 std::u16string showName; in OnGetShowName() local 1348 int32_t result = GetShowName(slotId, showName); in OnGetShowName() 1351 ret = (ret && reply.WriteString16(showName)); in OnGetShowName()
|
/ohos5.0/base/telephony/core_service/frameworks/js/sim/src/ |
H A D | napi_sim.cpp | 298 SetPropertyToNapiObject(env, val, "showName", NapiUtil::ToUtf8(iccAccountInfo.showName)); in IccAccountInfoConversion() 1777 std::u16string showName; in NativeGetShowName() local 1779 … DelayedRefSingleton<CoreServiceClient>::GetInstance().GetShowName(asyncContext->slotId, showName); in NativeGetShowName() 1781 asyncContext->callbackVal = NapiUtil::ToUtf8(showName); in NativeGetShowName()
|