Home
last modified time | relevance | path

Searched refs:fac (Results 1 – 25 of 128) sorted by relevance

123456

/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/ril/
H A D_sim_lock_info_v10.md22 | String [fac](#fac) | SIM锁类型。 |
24 | int [status](#status) | SIM卡锁状态。 当fac参数为PN,PU,PP时,表示的是锁网锁卡前三层锁的激活状态。 |
57 ### fac subsection
60 String SimLockInfo::fac
100 - 0:去激活(当fac参数为PN,PU,PP时,为解锁操作)。
102 - 1:激活(当fac参数为PN,PU,PP时,不支持激活)。
134 SIM卡锁状态。 当fac参数为PN,PU,PP时,表示的是锁网锁卡前三层锁的激活状态。
H A D_sim_lock_info_v11.md22 | String [fac](#fac) | SIM锁类型。 |
24 | int [status](#status) | SIM卡锁状态。 当fac参数为PN,PU,PP时,表示的是锁网锁卡前三层锁的激活状态。 |
57 ### fac subsection
60 String SimLockInfo::fac
100 - 0:去激活(当fac参数为PN,PU,PP时,为解锁操作)。
102 - 1:激活(当fac参数为PN,PU,PP时,不支持激活)。
134 SIM卡锁状态。 当fac参数为PN,PU,PP时,表示的是锁网锁卡前三层锁的激活状态。
H A D_call_restriction_info_v10.md21 | String [fac](#fac) | 操作对象 |
28 ### fac subsection
31 String CallRestrictionInfo::fac
H A D_call_restriction_info_v11.md21 | String [fac](#fac) | 操作对象 |
28 ### fac subsection
31 String CallRestrictionInfo::fac
H A D_set_barring_info_v10.md20 | String [fac](#fac) | 操作对象 |
28 ### fac subsection
31 String SetBarringInfo::fac
H A D_set_barring_info_v11.md20 | String [fac](#fac) | 操作对象 |
28 ### fac subsection
31 String SetBarringInfo::fac
H A D_sim_password_info_v10.md20 | String [fac](#fac) | SIM锁类型。 |
30 ### fac subsection
33 String SimPasswordInfo::fac
H A D_sim_password_info_v11.md20 | String [fac](#fac) | SIM锁类型。 |
30 ### fac subsection
33 String SimPasswordInfo::fac
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/
H A Dclass_registry.cpp30 bool ClassRegistry::Unregister(const IObjectFactory::Ptr& fac) in Unregister() argument
32 if (!fac) { in Unregister()
39 erased = objectFactories_.erase(fac->GetClassInfo()); in Unregister()
42 onUnregistered_->Invoke({ fac }); in Unregister()
48 bool ClassRegistry::Register(const IObjectFactory::Ptr& fac) in Register() argument
50 if (!fac) { in Register()
56 auto& info = fac->GetClassInfo(); in Register()
63 i = fac; in Register()
65 onRegistered_->Invoke({ fac }); in Register()
H A Dclass_registry.h41 bool Register(const IObjectFactory::Ptr& fac);
42 bool Unregister(const IObjectFactory::Ptr& fac);
/ohos5.0/base/telephony/call_manager/test/unittest/call_manager_gtest/src/
H A Dcall_manager3_gtest.cpp592 info.fac = CallRestrictionType::RESTRICTION_TYPE_ALL_OUTGOING;
621 info.fac = CallRestrictionType::RESTRICTION_TYPE_ALL_OUTGOING;
645 info.fac = CallRestrictionType::RESTRICTION_TYPE_ALL_OUTGOING;
667 info.fac = CallRestrictionType::RESTRICTION_TYPE_ALL_OUTGOING;
697 CallRestrictionType fac = CallRestrictionType::RESTRICTION_TYPE_ALL_CALLS; variable
723 CallRestrictionType fac = CallRestrictionType::RESTRICTION_TYPE_ALL_CALLS; variable
743 CallRestrictionType fac = CallRestrictionType::RESTRICTION_TYPE_ALL_CALLS; variable
746 …EXPECT_EQ(CallManagerGtest::clientPtr_->SetCallRestrictionPassword(slotId, fac, oldPassword, newPa…
763 CallRestrictionType fac = (CallRestrictionType)FALSE_DEFAULT; variable
789 CallRestrictionType fac = CallRestrictionType::RESTRICTION_TYPE_ALL_CALLS; variable
[all …]
/ohos5.0/base/telephony/call_manager/services/call_setting/src/
H A Dcall_setting_manager.cpp77 slotId, info.mode, info.fac); in SetCallRestriction()
91 int32_t slotId, CallRestrictionType fac, const char *oldPassword, const char *newPassword) in SetCallRestrictionPassword() argument
93 TELEPHONY_LOGI("slotId = %{public}d, fac = %{public}d", slotId, fac); in SetCallRestrictionPassword()
94 int32_t ret = GetCallRestrictionPolicy(slotId, fac); in SetCallRestrictionPassword()
103 …return cellularCallConnectionPtr_->SetCallRestrictionPassword(slotId, fac, oldPassword, newPasswor… in SetCallRestrictionPassword()
281 if (info.fac < CallRestrictionType::RESTRICTION_TYPE_ALL_INCOMING || in SetCallRestrictionPolicy()
282 info.fac > CallRestrictionType::RESTRICTION_TYPE_INCOMING_SERVICES) { in SetCallRestrictionPolicy()
/ohos5.0/base/telephony/cellular_call/services/utils/src/
H A Dcellular_call_supplement.cpp993 std::string fac; in SetCallRestriction() local
994 int32_t result = CheckCallRestrictionType(fac, cRInfo.fac); in SetCallRestriction()
1011 utCommand->facility = fac; in SetCallRestriction()
1057 std::string fac; in GetCallRestriction() local
1069 utCommand->facility = fac; in GetCallRestriction()
1094 std::string fac; in SetBarringPassword() local
1106 utCommand->facility = fac; in SetBarringPassword()
1136 fac = BARR_ALL_OUTGOING_CALLS; in CheckCallRestrictionType()
1145 fac = BARR_ALL_INCOMING_CALLS; in CheckCallRestrictionType()
1151 fac = ALL_BARRING_SERVICES; in CheckCallRestrictionType()
[all …]
/ohos5.0/foundation/resourceschedule/ffrt/src/tm/
H A Dtask_factory.cpp21 static TaskFactory fac; in Instance() local
22 return fac; in Instance()
/ohos5.0/base/telephony/cellular_call/services/common/src/
H A Dsupplement_request_ims.cpp104 int32_t SupplementRequestIms::GetCallRestrictionRequest(int32_t slotId, const std::string &fac, int… in GetCallRestrictionRequest() argument
112 return imsCallClient->GetCallRestriction(slotId, fac, index); in GetCallRestrictionRequest()
116 int32_t slotId, std::string &fac, int32_t mode, std::string &pw, int32_t index) in SetCallRestrictionRequest() argument
124 return imsCallClient->SetCallRestriction(slotId, fac, mode, pw, index); in SetCallRestrictionRequest()
H A Dsupplement_request_cs.cpp86 int32_t SupplementRequestCs::GetCallRestrictionRequest(int32_t slotId, const std::string &fac, int3… in GetCallRestrictionRequest() argument
96 return CoreManagerInner::GetInstance().GetCallRestriction(slotId, fac, response); in GetCallRestrictionRequest()
100 int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index) in SetCallRestrictionRequest() argument
105 callRestrictionParam.fac = fac; in SetCallRestrictionRequest()
/ohos5.0/base/telephony/core_service/test/fuzztest/sendsmsmoremode_fuzzer/
H A Dsendsmsmoremode_fuzzer.cpp89 std::string fac(reinterpret_cast<const char *>(data), size); in GetCallList()
113 telRilCall->GetCallRestriction(fac, result); in GetCallList()
114 telRilCall->SetCallRestriction(fac, index, password, result); in GetCallList()
120 telRilCall->SetBarringPassword(fac, oldPassword.c_str(), newPassword.c_str(), result); in GetCallList()
234 std::string fac(reinterpret_cast<const char *>(data), size); in GetSimStatus()
253 telRilSim->GetSimLockStatus(fac, result); in GetSimStatus()
254 telRilSim->SetSimLock(fac, serial, password, result); in GetSimStatus()
/ohos5.0/base/telephony/cellular_call/test/unittest/cstest/
H A Dcs_test.cpp400 int32_t fac = 0; in SetCallRestriction() local
401 std::cin >> fac; in SetCallRestriction()
402 info.fac = static_cast<CallRestrictionType>(fac); in SetCallRestriction()
431 int32_t fac = 0; in SetCallRestrictionPassword() local
432 std::cin >> fac; in SetCallRestrictionPassword()
433 CallRestrictionType facType = static_cast<CallRestrictionType>(fac); in SetCallRestrictionPassword()
/ohos5.0/foundation/resourceschedule/ffrt/src/sched/
H A Dtask_scheduler.h104 static SchedulerFactory fac; in Instance() local
105 return fac; in Instance()
/ohos5.0/base/telephony/ril_adapter/interfaces/innerkits/include/
H A Dhril_vendor_call_defs.h174 const char *fac; member
192 const char *fac; member
646 void (*GetCallRestriction)(const ReqDataInfo *requestInfo, const char *fac);
/ohos5.0/base/telephony/cellular_call/services/common/include/
H A Dsupplement_request_ims.h112 int32_t GetCallRestrictionRequest(int32_t slotId, const std::string &fac, int32_t index);
125 …int32_t SetCallRestrictionRequest(int32_t slotId, std::string &fac, int32_t mode, std::string &pw,…
H A Dsupplement_request_cs.h89 int32_t GetCallRestrictionRequest(int32_t slotId, const std::string &fac, int32_t index);
103 int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index);
/ohos5.0/base/telephony/core_service/interfaces/innerkits/include/
H A Dtel_ril_sim_parcel.h173 std::string fac = ""; member
227 std::string fac = ""; member
/ohos5.0/base/telephony/cellular_call/test/unittest/imstest/
H A Dzero_branch_test.cpp436 std::string fac("AO"); variable
437 …callSup.SetCallRestrictionByIms(SIM1_SLOTID, fac, static_cast<int32_t>(crInfo.mode), info, crComma…
438 …callSup.SetCallRestrictionByIms(SIM2_SLOTID, fac, static_cast<int32_t>(crInfo.mode), info, crComma…
612 std::string fac; variable
613 …ASSERT_EQ(callSup.CheckCallRestrictionType(fac, CallRestrictionType::RESTRICTION_TYPE_ALL_OUTGOING…
615 …ASSERT_EQ(callSup.CheckCallRestrictionType(fac, CallRestrictionType::RESTRICTION_TYPE_INTERNATIONA…
617 ASSERT_EQ(callSup.CheckCallRestrictionType(fac,
619 …ASSERT_EQ(callSup.CheckCallRestrictionType(fac, CallRestrictionType::RESTRICTION_TYPE_ALL_INCOMING…
621 …ASSERT_EQ(callSup.CheckCallRestrictionType(fac, CallRestrictionType::RESTRICTION_TYPE_ROAMING_INCO…
623 … ASSERT_EQ(callSup.CheckCallRestrictionType(fac, CallRestrictionType::RESTRICTION_TYPE_ALL_CALLS),
[all …]
/ohos5.0/base/telephony/core_service/services/tel_ril/src/
H A Dtel_ril_sim.cpp336 int32_t TelRilSim::GetSimLockStatus(std::string fac, const AppExecFwk::InnerEvent::Pointer &respons… in GetSimLockStatus() argument
340 simLockInfo.fac = fac; in GetSimLockStatus()
347 …std::string fac, int32_t mode, std::string passwd, const AppExecFwk::InnerEvent::Pointer &response) in SetSimLock() argument
350 simLockInfo.fac = fac; in SetSimLock()
357 int32_t TelRilSim::ChangeSimPassword(std::string fac, std::string oldPassword, std::string newPassw… in ChangeSimPassword() argument
361 simPwdInfo.fac = fac; in ChangeSimPassword()

123456