/foundation/filemanagement/storage_service/services/storage_daemon/include/mock/ |
H A D | fscrypt_key_v2_mock.h | 34 virtual bool LockUece(bool &isFbeSupport) = 0; 53 MOCK_METHOD1(LockUece, bool(bool &isFbeSupport));
|
H A D | fbex_mock.h | 42 virtual int LockUece(uint32_t userIdSingle, uint32_t userIdDouble, bool &isFbeSupport) = 0; 62 MOCK_METHOD3(LockUece, int(uint32_t userIdSingle, uint32_t userIdDouble, bool &isFbeSupport));
|
/foundation/filemanagement/storage_service/services/storage_daemon/mock/ |
H A D | fbex_mock.cpp | 66 int FBEX::LockUece(uint32_t userIdSingle, uint32_t userIdDouble, bool &isFbeSupport) in LockUece() function in FBEX 68 return IFbexMoc::fbexMoc->LockUece(userIdSingle, userIdDouble, isFbeSupport); in LockUece()
|
H A D | fscrypt_key_v2_mock.cpp | 45 bool FscryptKeyV2::LockUece(bool &isFbeSupport) in LockUece() function in FscryptKeyV2 50 return IFscryptKeyV2Moc::fscryptKeyV2Moc->LockUece(isFbeSupport); in LockUece()
|
/foundation/filemanagement/storage_service/services/storage_daemon/include/crypto/ |
H A D | fscrypt_key_v2.h | 45 bool LockUece(bool &isFbeSupport);
|
H A D | fbex.h | 68 static int LockUece(uint32_t userIdSingle, uint32_t userIdDouble, bool &isFbeSupport);
|
H A D | fscrypt_key_v1.h | 48 bool LockUece(bool &isFbeSupport);
|
H A D | base_key.h | 62 virtual bool LockUece(bool &isFbeSupport) = 0;
|
/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/fbex_test/ |
H A D | fbex_test.cpp | 278 * @tc.desc: Verify the fbex LockUece. 282 HWTEST_F(FbexTest, LockUece, TestSize.Level1) in HWTEST_F() 290 int ret = fbex.LockUece(userIdSingle, userIdDouble, isFbeSupport); in HWTEST_F() 297 ret = fbex.LockUece(userIdSingle, userIdDouble, isFbeSupport); in HWTEST_F() 303 ret = fbex.LockUece(userIdSingle, userIdDouble, isFbeSupport); in HWTEST_F()
|
/foundation/filemanagement/storage_service/services/storage_daemon/crypto/src/ |
H A D | fscrypt_key_v2.cpp | 130 bool FscryptKeyV2::LockUece(bool &isFbeSupport) in LockUece() function in OHOS::StorageDaemon::FscryptKeyV2
|
H A D | fscrypt_key_v1_ext.cpp | 249 if (FBEX::LockUece(userId_, userIdDouble, isFbeSupport)) { in LockUeceExt()
|
H A D | fscrypt_key_v1.cpp | 439 bool FscryptKeyV1::LockUece(bool &isFbeSupport) in LockUece() function in OHOS::StorageDaemon::FscryptKeyV1
|
H A D | fbex.cpp | 410 int FBEX::LockUece(uint32_t userIdSingle, uint32_t userIdDouble, bool &isFbeSupport) in LockUece() function in OHOS::StorageDaemon::FBEX
|
H A D | key_manager.cpp | 829 if (!el5Key->LockUece(tempUeceSupport)) { in UpdateUseAuthWithRecoveryKey() 1617 if (el5Key != nullptr && !el5Key->LockUece(saveESecretStatus[user])) { in UpdateCeEceSeceUserAuth()
|
/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/fscrypt_v1_test/ |
H A D | fscrypt_key_v1_test.cpp | 90 * @tc.desc: Verify the fscrypt V1 LockUece. 100 EXPECT_FALSE(g_testKeyV1->LockUece(isFbeSupport)); in HWTEST_F() 103 EXPECT_TRUE(g_testKeyV1->LockUece(isFbeSupport)); in HWTEST_F()
|
/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/fscrypt_key_v1_ext_test/ |
H A D | fscrypt_key_v1_ext_test.cpp | 450 EXPECT_CALL(*fbexMock_, LockUece(_, _, _)).WillOnce(Return(1)); in HWTEST_F() 454 EXPECT_CALL(*fbexMock_, LockUece(_, _, _)).WillOnce(Return(0)); in HWTEST_F()
|
/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/fscrypt_v2_test/ |
H A D | fscrypt_key_v2_test.cpp | 148 * @tc.desc: Verify the fscrypt V2 LockUece. 156 EXPECT_TRUE(g_testKeyV2.LockUece(isFbeSupport)); in HWTEST_F()
|