Home
last modified time | relevance | path

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

123

/ohos5.0/drivers/peripheral/codec/test/unittest/hdi_image/
H A Dcodec_hdi_heif_encode_test.cpp165 PropWriter pw; in CreateMetaItem() local
167 (void)pw.Finalize(item.properties); in CreateMetaItem()
173 PropWriter pw; in SetValidNclxColor() local
183 return pw.Finalize(item.liteProperties); in SetValidNclxColor()
187 PropWriter pw; in SetColorTypeOnly() local
189 return pw.Finalize(item.liteProperties); in SetColorTypeOnly()
193 PropWriter pw; in SetInvalidRiccColor() local
213 PropWriter pw; in SetInvalidNclxColor() local
221 return pw.Finalize(item.liteProperties); in SetInvalidNclxColor()
225 PropWriter pw; in SetPropeForTmap() local
[all …]
/ohos5.0/base/telephony/cellular_call/services/common/src/
H A 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()
H A 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()
/ohos5.0/base/telephony/cellular_call/services/common/include/
H A Dsupplement_request_ims.h125 …RestrictionRequest(int32_t slotId, std::string &fac, int32_t mode, std::string &pw, int32_t index);
H A Dsupplement_request_cs.h103 int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/
H A Ddistributeddb_storage_rd_single_ver_natural_executor_test.cpp448 CipherPassword pw; variable
449 EXPECT_EQ(emptyConn->Import("/a.b", pw), -E_INVALID_DB);
450 EXPECT_EQ(emptyConn->Export("/a.b", pw), -E_INVALID_DB);
H A Ddistributeddb_storage_sqlite_single_ver_natural_executor_test.cpp861 CipherPassword pw; variable
862 EXPECT_EQ(emptyConn->Import("/a.b", pw), -E_INVALID_DB);
863 EXPECT_EQ(emptyConn->Export("/a.b", pw), -E_INVALID_DB);
/ohos5.0/foundation/filemanagement/app_file_service/frameworks/native/backup_ext/src/
H A Dtar_file.cpp470 struct passwd *pw = getpwuid(st.st_uid); in FillOwnerName() local
471 if (pw != nullptr) { in FillOwnerName()
472 … auto ret = snprintf_s(hdr.uname, sizeof(hdr.uname), sizeof(hdr.uname) - 1, "%s", pw->pw_name); in FillOwnerName()
/ohos5.0/base/telephony/cellular_call/services/utils/include/
H A Dcellular_call_supplement.h554 int32_t SetCallRestrictionByIms(int32_t slotId, std::string &fac, int32_t mode, std::string &pw,
/ohos5.0/base/telephony/cellular_call/vendor/ims/services/ims_call/include/
H A Dims_call.h409 …lRestriction(int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw) override;
/ohos5.0/base/telephony/cellular_call/test/unittest/imstest/
H A Dzero_branch1_test.cpp754 std::string pw = ""; variable
755 SRequestIms.SetCallRestrictionRequest(SIM1_SLOTID, fac, 0, pw, 0);
910 std::string pw = ""; variable
924 …ASSERT_EQ(supplementRequestCs.SetCallRestrictionRequest(SIM1_SLOTID, fac, 0, pw, 0), TELEPHONY_ERR…
H A Dcellular_call_hisysevent_test.cpp391 std::string pw; variable
393 int32_t ret = supplementRequestIms.SetCallRestrictionRequest(slotId, fac, mode, pw, index);
/ohos5.0/base/telephony/cellular_call/interfaces/innerkits/ims/
H A Dims_call_interface.h471 … int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index) = 0;
H A Dims_call_client.h519 int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index);
H A Dims_call_proxy.h83 …int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index) overri…
/ohos5.0/base/telephony/cellular_call/services/ims_service_interaction/src/
H A Dims_call_client.cpp632 int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index) in SetCallRestriction() argument
639 return imsCallProxy_->SetCallRestriction(slotId, fac, mode, pw, index); in SetCallRestriction()
H A Dims_call_proxy.cpp812 int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index) in SetCallRestriction() argument
827 if (!in.WriteString(pw)) { in SetCallRestriction()
/ohos5.0/base/telephony/cellular_call/vendor/ims/services/ims_call/src/
H A Dims_call_stub.cpp565 const std::string pw = data.ReadString(); in OnSetCallRestriction() local
566 reply.WriteInt32(SetCallRestriction(slotId, fac, mode, pw)); in OnSetCallRestriction()
H A Dims_call.cpp646 …ll::SetCallRestriction(int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw) in SetCallRestriction() argument
/ohos5.0/base/telephony/cellular_call/test/unittest/cstest/
H A Dcs2_test.cpp809 std::string pw = "test"; variable
818 … EXPECT_NE(request.SetCallRestrictionRequest(slotId, fac, mode, pw, index), TELEPHONY_SUCCESS);
/ohos5.0/base/telephony/cellular_call/services/utils/src/
H A Dcellular_call_supplement.cpp1037 …int32_t slotId, std::string &fac, int32_t mode, std::string &pw, const std::shared_ptr<SsRequestCo… in SetCallRestrictionByIms() argument
1048 int32_t result = supplementRequestIms_.SetCallRestrictionRequest(slotId, fac, mode, pw, index); in SetCallRestrictionByIms()
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/pulseaudio/modules/hdi/
H A Dhdi_sink.c2919 const uint64_t pw = u->offload.prewrite; in ThreadFuncRendererTimerOffloadProcess() local
2924 if (pos <= hdiPos + pw && hdistate == 0) { in ThreadFuncRendererTimerOffloadProcess()
3125 const uint64_t pw = u->multiChannel.prewrite; in ProcessMCHData() local
3141 if (u->multiChannel.timestamp <= now + pw && pa_atomic_load(&u->multiChannel.dflag) == 0) { in ProcessMCHData()
/ohos5.0/base/telephony/call_manager/frameworks/js/napi/src/
H A Dnapi_call_manager.cpp3950 std::string pw = ""; in GetRestrictionInfo() local
3953 !NapiCallManagerUtils::GetUssdStringProperty(env, objValue, "password", pw)) { in GetRestrictionInfo()
3957 if (pw.length() > static_cast<size_t>(kMaxNumberLen)) { in GetRestrictionInfo()
3961 if (memcpy_s(asyncContext.info.password, kMaxNumberLen, pw.c_str(), pw.length()) != EOK) { in GetRestrictionInfo()
/ohos5.0/foundation/multimedia/av_codec/test/unittest/resources/video_res/test_cbr/720_2M/
H A Dvideo_72011.ts2742 …ܸ�]2��^,��$Q���x��>�y(�.�=����5�ϼ���G�<�����������������f�T��\|�IM�uW�J�]�̮���pw�&����
3127 YR�$:D�svy��pZ���d��d*�2��>�v���(�N���R�z�ͫ�z2����X�����pw�8ܙ�S�>\���6%�G=�ä��B�2��Б:E�޲��F��f�…
3433 …�/ ���Qۄ %я 4�R�G�I���8c�X��t�=�)UC_��g��������VB�� iks�;�ũ�'J��pw`���熚���D�A̫��f��A]�…
/ohos5.0/foundation/multimedia/av_codec/test/unittest/resources/video_res/test_hls/
H A Dout000.ts315 ���� ��QL�ZU��;�"�9��)�D�j!S�r}W�K'h����6mȳ��"e��%�C��pw� ,��W�v`GV�W����,c�܎(h�t~�

123