Home
last modified time | relevance | path

Searched refs:DeleteClassEPinCode (Results 1 – 19 of 19) sorted by relevance

/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/mock/
H A Dfscrypt_key_v1_ext_mock.h35 virtual bool DeleteClassEPinCode(uint32_t userId) = 0;
51 MOCK_METHOD1(DeleteClassEPinCode, bool(uint32_t));
H A Dfscrypt_key_v1_ext_mock.cpp52 bool FscryptKeyV1Ext::DeleteClassEPinCode(uint32_t userId) in DeleteClassEPinCode() function in FscryptKeyV1Ext
54 return IFscryptKeyV1Ext::fscryptKeyV1ExtMock->DeleteClassEPinCode(userId); in DeleteClassEPinCode()
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/mock/
H A Dfscrypt_key_v2_mock.h37 virtual bool DeleteClassEPinCode(uint32_t user) = 0;
56 MOCK_METHOD1(DeleteClassEPinCode, bool(uint32_t user));
H A Dfbex_mock.h40 virtual int DeleteClassEPinCode(uint32_t userIdSingle, uint32_t userIdDouble) = 0;
61 MOCK_METHOD2(DeleteClassEPinCode, int(uint32_t userIdSingle, uint32_t userIdDouble));
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/mock/
H A Dfscrypt_key_v2_mock.cpp86 bool FscryptKeyV2::DeleteClassEPinCode(uint32_t user) in DeleteClassEPinCode() function in FscryptKeyV2
91 return IFscryptKeyV2Moc::fscryptKeyV2Moc->DeleteClassEPinCode(user); in DeleteClassEPinCode()
H A Dfbex_mock.cpp49 int FBEX::DeleteClassEPinCode(uint32_t userIdSingle, uint32_t userIdDouble) in DeleteClassEPinCode() function in FBEX
51 return IFbexMoc::fbexMoc->DeleteClassEPinCode(userIdSingle, userIdDouble); in DeleteClassEPinCode()
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/fscrypt_key_v1_ext_test/
H A Dfscrypt_key_v1_ext_test.cpp274 EXPECT_EQ(ext.DeleteClassEPinCode(100), true);
277 EXPECT_CALL(*fbexMock_, DeleteClassEPinCode(_, _)).WillOnce(Return(0));
278 EXPECT_EQ(ext.DeleteClassEPinCode(100), true);
281 EXPECT_CALL(*fbexMock_, DeleteClassEPinCode(_, _)).WillOnce(Return(1));
282 EXPECT_EQ(ext.DeleteClassEPinCode(100), false);
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/crypto/
H A Dfscrypt_key_v2.h38 bool DeleteClassEPinCode(uint32_t userId = 0);
H A Dfscrypt_key_v1_ext.h40 bool DeleteClassEPinCode(uint32_t userId);
H A Dfscrypt_key_v1.h43 bool DeleteClassEPinCode(uint32_t userId = 0);
H A Dfbex.h63 static int DeleteClassEPinCode(uint32_t userIdSingle, uint32_t userIdDouble);
H A Dbase_key.h57 virtual bool DeleteClassEPinCode(uint32_t userId) = 0;
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/fbex_test/
H A Dfbex_test.cpp170 HWTEST_F(FbexTest, DeleteClassEPinCode, TestSize.Level1)
176 int ret = fbex.DeleteClassEPinCode(userIdSingle, userIdDouble);
180 ret = fbex.DeleteClassEPinCode(userIdSingle, userIdDouble);
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/src/
H A Dfscrypt_key_v1_ext.cpp168 bool FscryptKeyV1Ext::DeleteClassEPinCode(uint32_t userId) in DeleteClassEPinCode() function in OHOS::StorageDaemon::FscryptKeyV1Ext
176 if (FBEX::DeleteClassEPinCode(userId_, userIdDouble)) { in DeleteClassEPinCode()
H A Dfscrypt_key_v2.cpp164 bool FscryptKeyV2::DeleteClassEPinCode(uint32_t user) in DeleteClassEPinCode() function in OHOS::StorageDaemon::FscryptKeyV2
H A Dfscrypt_key_v1.cpp205 bool FscryptKeyV1::DeleteClassEPinCode(uint32_t userId) in DeleteClassEPinCode() function in OHOS::StorageDaemon::FscryptKeyV1
208 if (!fscryptV1Ext.DeleteClassEPinCode(userId)) { in DeleteClassEPinCode()
H A Dfbex.cpp305 int FBEX::DeleteClassEPinCode(uint32_t userIdSingle, uint32_t userIdDouble) in DeleteClassEPinCode() function in OHOS::StorageDaemon::FBEX
H A Dkey_manager.cpp852 if (!el5Key->DeleteClassEPinCode(user)) { in UpdateESecret()
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/fscrypt_v2_test/
H A Dfscrypt_key_v2_test.cpp213 EXPECT_TRUE(g_testKeyV2.DeleteClassEPinCode(user));