/base/telephony/cellular_call/services/control/include/ |
D | cellular_call_supplement.h | 164 int32_t GetCallRestriction(int32_t slotId, CallRestrictionType facType); 182 … int32_t slotId, CallRestrictionType facType, const char *oldPassword, const char *newPassword); 553 int32_t CheckCallRestrictionType(std::string &fac, const CallRestrictionType &facType);
|
/base/telephony/cellular_call/test/fuzztest/getcallrestriction_fuzzer/ |
D | getcallrestriction_fuzzer.cpp | 201 int32_t facType = static_cast<int32_t>(size); in GetCallRestriction() local 203 dataMessageParcel.WriteInt32(facType); in GetCallRestriction() 217 int32_t facType = static_cast<int32_t>(size); in SetCallRestrictionPassword() local 220 dataMessageParcel.WriteInt32(facType); in SetCallRestrictionPassword()
|
/base/telephony/cellular_call/services/control/src/ |
D | cellular_call_supplement.cpp | 463 std::string facType = ObtainBarringInstallation(mmiData.serviceCode); in HandleCallRestriction() local 479 utCommand->facility = facType; in HandleCallRestriction() 485 result = supplementRequestIms_.GetCallRestrictionRequest(slotId, facType, index); in HandleCallRestriction() 487 result = supplementRequestCs_.GetCallRestrictionRequest(slotId, facType, index); in HandleCallRestriction() 499 slotId, facType, mmiData.actionString == activate, infoA, index); in HandleCallRestriction() 502 slotId, facType, mmiData.actionString == activate, infoA, index); in HandleCallRestriction() 1082 int32_t CellularCallSupplement::GetCallRestriction(int32_t slotId, CallRestrictionType facType) in GetCallRestriction() argument 1085 int32_t result = CheckCallRestrictionType(fac, facType); in GetCallRestriction() 1119 int32_t slotId, CallRestrictionType facType, const char *oldPassword, const char *newPassword) in SetBarringPassword() argument 1122 int32_t result = CheckCallRestrictionType(fac, facType); in SetBarringPassword() [all …]
|
/base/telephony/cellular_call/services/manager/include/ |
D | cellular_call_service.h | 348 int32_t GetCallRestriction(int32_t slotId, CallRestrictionType facType) override; 360 …int32_t slotId, CallRestrictionType facType, const char *oldPassword, const char *newPassword) ove…
|
/base/telephony/call_manager/services/telephony_interaction/include/ |
D | cellular_call_connection.h | 253 int GetCallRestriction(CallRestrictionType facType, int32_t slotId);
|
/base/telephony/call_manager/interfaces/innerkits/ |
D | cellular_call_interface.h | 279 virtual int32_t GetCallRestriction(int32_t slotId, CallRestrictionType facType) = 0;
|
D | cellular_call_proxy.h | 292 int32_t GetCallRestriction(int32_t slotId, CallRestrictionType facType) override;
|
/base/telephony/cellular_call/services/manager/src/ |
D | cellular_call_stub.cpp | 741 auto facType = static_cast<CallRestrictionType>(data.ReadInt32()); in OnGetCallRestrictionInner() local 743 reply.WriteInt32(GetCallRestriction(slotId, facType)); in OnGetCallRestrictionInner() 756 auto facType = static_cast<CallRestrictionType>(data.ReadInt32()); in OnSetCallRestrictionPasswordInner() local 760 reply.WriteInt32(SetCallRestrictionPassword(slotId, facType, oldPassword, newPassword)); in OnSetCallRestrictionPasswordInner()
|
D | cellular_call_service.cpp | 920 int32_t CellularCallService::GetCallRestriction(int32_t slotId, CallRestrictionType facType) in GetCallRestriction() argument 928 return cellularCallSupplement.GetCallRestriction(slotId, facType); in GetCallRestriction() 932 int32_t slotId, CallRestrictionType facType, const char *oldPassword, const char *newPassword) in SetCallRestrictionPassword() argument 939 return cellularCallSupplement.SetBarringPassword(slotId, facType, oldPassword, newPassword); in SetCallRestrictionPassword()
|
/base/telephony/cellular_call/vendor/ims/test/unittest/ims_service_gtest/ |
D | ims_service_test.cpp | 1601 std::string facType = "AO"; variable 1602 ret = imsCallPtr_->GetCallRestriction(DEFAULT_SLOTID, facType); 1623 std::string facType = "AO"; variable 1624 ret = imsCallPtr_->GetCallRestriction(SIM_SLOT_ID_1, facType);
|
/base/telephony/call_manager/services/telephony_interaction/src/ |
D | cellular_call_connection.cpp | 477 int CellularCallConnection::GetCallRestriction(CallRestrictionType facType, int32_t slotId) in GetCallRestriction() argument 483 return cellularCallInterfacePtr_->GetCallRestriction(slotId, facType); in GetCallRestriction()
|
/base/telephony/cellular_call/vendor/ims/test/ui_client/ |
D | ims_unit_test.cpp | 653 std::string facType = "AO"; in GetCallRestriction() local 654 return imsCallPtr->GetCallRestriction(slotId, facType); in GetCallRestriction()
|
/base/telephony/cellular_call/test/unittest/cstest/ |
D | cs_test.cpp | 598 int32_t facType = 0; in GetCallRestriction() local 599 std::cin >> facType; in GetCallRestriction() 600 return telephonyService->GetCallRestriction(slotId, static_cast<CallRestrictionType>(facType)); in GetCallRestriction() 612 CallRestrictionType facType = static_cast<CallRestrictionType>(fac); in SetCallRestrictionPassword() local 619 …int32_t ret = telephonyService->SetCallRestrictionPassword(slotId, facType, oldPassword, newPasswo… in SetCallRestrictionPassword()
|
/base/telephony/call_manager/frameworks/native/src/ |
D | cellular_call_proxy.cpp | 812 int32_t CellularCallProxy::GetCallRestriction(int32_t slotId, CallRestrictionType facType) in GetCallRestriction() argument 822 if (!in.WriteInt32((int32_t)facType)) { in GetCallRestriction()
|
/base/telephony/cellular_call/test/unittest/imstest/ |
D | ims_test.cpp | 1444 CallRestrictionType facType = CallRestrictionType::RESTRICTION_TYPE_ALL_INCOMING; variable 1445 int32_t ret = telephonyService->GetCallRestriction(SIM1_SLOTID, facType); 1449 CallRestrictionType facType = CallRestrictionType::RESTRICTION_TYPE_ALL_INCOMING; variable 1450 int32_t ret = telephonyService->GetCallRestriction(SIM2_SLOTID, facType);
|