Home
last modified time | relevance | path

Searched refs:pw (Results 1 – 16 of 16) sorted by relevance

/base/telephony/cellular_call/services/connection/include/
Dsupplement_request_ims.h125 …RestrictionRequest(int32_t slotId, std::string &fac, int32_t mode, std::string &pw, int32_t index);
Dsupplement_request_cs.h103 int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index);
/base/telephony/cellular_call/services/connection/src/
Dsupplement_request_ims.cpp116 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()
Dsupplement_request_cs.cpp100 int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index) in SetCallRestrictionRequest() argument
106 size_t cpyLen = strlen(pw.c_str()) + 1; in SetCallRestrictionRequest()
108 …if (strcpy_s(callRestrictionParam.password, cpyLen > maxCpyLen ? maxCpyLen : cpyLen, pw.c_str()) !… in SetCallRestrictionRequest()
/base/telephony/cellular_call/vendor/ims/services/ims_call/include/
Dims_call.h409 …lRestriction(int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw) override;
/base/telephony/cellular_call/services/control/include/
Dcellular_call_supplement.h554 int32_t SetCallRestrictionByIms(int32_t slotId, std::string &fac, int32_t mode, std::string &pw,
/base/telephony/cellular_call/interfaces/innerkits/ims/
Dims_call_interface.h438 … int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index) = 0;
Dims_call_client.h489 int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index);
Dims_call_proxy.h78 …int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index) overri…
/base/telephony/cellular_call/services/ims_service_interaction/src/
Dims_call_client.cpp552 int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index) in SetCallRestriction() argument
558 return imsCallProxy_->SetCallRestriction(slotId, fac, mode, pw, index); in SetCallRestriction()
Dims_call_proxy.cpp761 int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index) in SetCallRestriction() argument
776 if (!in.WriteString(pw)) { in SetCallRestriction()
/base/telephony/cellular_call/vendor/ims/services/ims_call/src/
Dims_call_stub.cpp529 const std::string pw = data.ReadString(); in OnSetCallRestriction() local
530 reply.WriteInt32(SetCallRestriction(slotId, fac, mode, pw)); in OnSetCallRestriction()
Dims_call.cpp646 …ll::SetCallRestriction(int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw) in SetCallRestriction() argument
/base/telephony/cellular_call/services/control/src/
Dcellular_call_supplement.cpp1064 …int32_t slotId, std::string &fac, int32_t mode, std::string &pw, const std::shared_ptr<SsRequestCo… in SetCallRestrictionByIms() argument
1075 int32_t result = supplementRequestIms_.SetCallRestrictionRequest(slotId, fac, mode, pw, index); in SetCallRestrictionByIms()
/base/telephony/call_manager/frameworks/js/napi/src/
Dnapi_call_manager.cpp3494 std::string pw = ""; in GetRestrictionInfo() local
3497 !NapiCallManagerUtils::GetUssdStringProperty(env, objValue, "password", pw)) { in GetRestrictionInfo()
3501 if (pw.length() > static_cast<size_t>(kMaxNumberLen)) { in GetRestrictionInfo()
3505 if (memcpy_s(asyncContext.info.password, kMaxNumberLen, pw.c_str(), pw.length()) != EOK) { in GetRestrictionInfo()
/base/telephony/cellular_call/test/unittest/cstest/
Dcs_test.cpp2424 std::string pw = "test"; variable
2433 … EXPECT_NE(request.SetCallRestrictionRequest(slotId, fac, mode, pw, index), TELEPHONY_SUCCESS);