/base/account/os_account/test/fuzztest/iamaccount/updatecredential_fuzzer/ |
D | updatecredential_fuzzer.cpp | 44 std::optional<PinSubType> pinType = {static_cast<PinSubType>(size)}; in UpdateCredentialFuzzTest() local 48 .pinType = pinType, in UpdateCredentialFuzzTest()
|
/base/account/os_account/test/fuzztest/iamaccount/addcredential_fuzzer/ |
D | addcredential_fuzzer.cpp | 45 std::optional<PinSubType> pinType = {static_cast<PinSubType>(size)}; in AddCredentialFuzzTest() local 49 .pinType = pinType, in AddCredentialFuzzTest()
|
/base/useriam/user_auth_framework/interfaces/inner_api/ |
D | user_idm_client_defines.h | 42 std::optional<PinSubType> pinType {}; 76 std::optional<PinSubType> pinType {};
|
/base/useriam/user_auth_framework/frameworks/native/ipc/src/ |
D | user_idm_callback_stub.cpp | 126 int32_t pinType = 0; in ReadCredentialInfoList() local 135 if (!data.ReadInt32(pinType)) { in ReadCredentialInfoList() 144 info.pinType = static_cast<PinSubType>(pinType); in ReadCredentialInfoList()
|
D | user_idm_proxy.cpp | 168 if (!data.WriteInt32(credPara.pinType)) { in AddCredential() 206 if (!data.WriteInt32(credPara.pinType)) { in UpdateCredential()
|
D | user_idm_stub.cpp | 201 credPara.pinType = static_cast<PinSubType>(authSubType); in AddCredentialStub() 243 credPara.pinType = static_cast<PinSubType>(authSubType); in UpdateCredentialStub()
|
D | user_idm_callback_proxy.cpp | 128 if (!data.WriteInt32(info.pinType.value_or(static_cast<PinSubType>(0)))) { in OnCredentialInfos()
|
/base/account/os_account/test/fuzztest/iamaccount_stub/updatecredentialstub_fuzzer/ |
D | updatecredentialstub_fuzzer.cpp | 51 std::optional<PinSubType> pinType = {static_cast<PinSubType>(size)}; in UpdateCredentialStubFuzzTest() local 69 PinSubType pin = pinType.value_or(PinSubType::PIN_MAX); in UpdateCredentialStubFuzzTest()
|
/base/account/os_account/test/fuzztest/iamaccount_stub/addcredentialstub_fuzzer/ |
D | addcredentialstub_fuzzer.cpp | 53 std::optional<PinSubType> pinType = {static_cast<PinSubType>(size)}; in AddCredentialStubFuzzTest() local 70 PinSubType pin = pinType.value_or(PinSubType::PIN_MAX); in AddCredentialStubFuzzTest()
|
/base/account/os_account/frameworks/account_iam/src/ |
D | account_iam_callback_stub.cpp | 122 int32_t pinType = 0; in ProcOnCredentialInfo() local 131 if (!data.ReadInt32(pinType)) { in ProcOnCredentialInfo() 140 info.pinType = static_cast<PinSubType>(pinType); in ProcOnCredentialInfo()
|
D | account_iam_mgr_proxy.cpp | 121 PinSubType pinType = credInfo.pinType.value_or(PinSubType::PIN_MAX); in AddOrUpdateCredential() local 122 if (!data.WriteInt32(pinType)) { in AddOrUpdateCredential()
|
D | account_iam_client.cpp | 82 … SetAuthSubType(userId, static_cast<int32_t>(credInfo.pinType.value_or(PinSubType::PIN_MAX))); in AddCredential() 107 … SetAuthSubType(userId, static_cast<int32_t>(credInfo.pinType.value_or(PinSubType::PIN_MAX))); in UpdateCredential()
|
/base/account/os_account/services/accountmgr/src/account_iam/ |
D | account_iam_client_callback_proxy.cpp | 119 PinSubType pinType = info.pinType.value_or(PinSubType::PIN_MAX); in OnCredentialInfo() local 120 if (!data.WriteInt32(pinType)) { in OnCredentialInfo()
|
/base/useriam/user_auth_framework/frameworks/native/client/src/ |
D | user_idm_client_impl.cpp | 85 credPara.pinType = para.pinType.value_or(PIN_SIX); in AddCredential() 115 credPara.pinType = para.pinType.value_or(PIN_SIX); in UpdateCredential()
|
/base/useriam/user_auth_framework/test/unittest/services/src/ |
D | user_idm_stub_test.cpp | 256 testCredPara.pinType = PIN_SIX; 269 EXPECT_EQ(credPara.pinType, testCredPara.pinType); in __anoneea88afe0502() 287 EXPECT_TRUE(data.WriteInt32(testCredPara.pinType)); 313 testCredPara.pinType = PIN_SIX; 326 EXPECT_EQ(credPara.pinType, testCredPara.pinType); in __anoneea88afe0602() 344 EXPECT_TRUE(data.WriteInt32(testCredPara.pinType));
|
D | user_idm_service_test.cpp | 309 testCredPara.pinType = PIN_SIX; 321 testCredPara.pinType = PIN_SIX; 405 testCredPara.pinType = PIN_SIX; 443 testCredPara.pinType = PIN_SIX; 467 testCredPara.pinType = PIN_SIX;
|
/base/useriam/user_auth_framework/test/unittest/inner_api/src/ |
D | user_idm_proxy_test.cpp | 166 testCredPara.pinType = PIN_SIX; 184 EXPECT_EQ(credPara.pinType, testCredPara.pinType); in __anon523d9cd30902() 202 testCredPara.pinType = PIN_SIX; 220 EXPECT_EQ(credPara.pinType, testCredPara.pinType); in __anon523d9cd30b02()
|
D | user_idm_client_test.cpp | 161 testPara.pinType = std::nullopt; 213 testPara.pinType = PIN_SIX; 228 EXPECT_TRUE(testPara.pinType.has_value()); in __anon1dde66900502() 229 EXPECT_EQ(credPara.pinType, testPara.pinType.value()); in __anon1dde66900502()
|
/base/useriam/user_auth_framework/services/core/inc/ |
D | enrollment.h | 35 PinSubType pinType {PIN_SIX};
|
/base/useriam/user_auth_framework/frameworks/native/ipc/common_defines/ |
D | user_idm_interface.h | 32 PinSubType pinType {PIN_SIX};
|
/base/useriam/user_auth_framework/test/fuzztest/services/useridmservice_fuzzer/ |
D | user_idm_service_fuzzer.cpp | 172 para.pinType = static_cast<PinSubType>(parcel.ReadInt32()); in FuzzAddCredential() 185 para.pinType = static_cast<PinSubType>(parcel.ReadInt32()); in FuzzUpdateCredential()
|
/base/useriam/user_auth_framework/services/context/src/ |
D | context_factory.cpp | 67 enroll->SetPinSubType(para.pinType); in CreateEnrollContext()
|
/base/useriam/user_auth_framework/services/ipc/src/ |
D | user_idm_service.cpp | 132 info.pinType = userInfo->GetPinSubType(); in GetCredentialInfoInner() 270 para.pinType = credPara.pinType; in AddCredential()
|
/base/useriam/user_auth_framework/test/fuzztest/clients/useridmclient_fuzzer/ |
D | user_idm_client_fuzzer.cpp | 210 info.pinType = static_cast<PinSubType>(parcel.ReadInt32()); in FuzzCallbackServiceOnCredentialInfos()
|
/base/account/os_account/interfaces/kits/napi/account_iam/src/ |
D | napi_account_iam_common.cpp | 217 context.addCredInfo.pinType = static_cast<PinSubType>(credSubType); in ParseAddCredInfo() 277 PinSubType pinType = item.pinType.value_or(PinSubType::PIN_MAX); in CreateCredInfoArray() local 278 NAPI_CALL(env, napi_create_uint32(env, pinType, &napiPinType)); in CreateCredInfoArray()
|