Home
last modified time | relevance | path

Searched refs:UnlockScreenToKernel (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/mock/
H A Dfbex_mock.h34 … virtual int UnlockScreenToKernel(uint32_t userId, uint32_t type, uint8_t *iv, uint32_t size) = 0;
55 …MOCK_METHOD4(UnlockScreenToKernel, int(uint32_t userId, uint32_t type, uint8_t *iv, uint32_t size)…
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/mock/
H A Dfbex_mock.cpp77 int FBEX::UnlockScreenToKernel(uint32_t userId, uint32_t type, uint8_t *iv, uint32_t size) in UnlockScreenToKernel() function in FBEX
79 return IFbexMoc::fbexMoc->UnlockScreenToKernel(userId, type, iv, size); in UnlockScreenToKernel()
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/fbex_test/
H A Dfbex_test.cpp315 HWTEST_F(FbexTest, UnlockScreenToKernel, TestSize.Level1)
323 int ret = fbex.UnlockScreenToKernel(userId, type, nullptr, size);
328 ret = fbex.UnlockScreenToKernel(userId, type, iv, size);
332 ret = fbex.UnlockScreenToKernel(userId, type, iv, size);
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/crypto/
H A Dfbex.h55 static int UnlockScreenToKernel(uint32_t userId, uint32_t type, uint8_t *iv, uint32_t size);
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/fscrypt_key_v1_ext_test/
H A Dfscrypt_key_v1_ext_test.cpp198 EXPECT_CALL(*fbexMock_, UnlockScreenToKernel(_, _, _, _)).WillOnce(Return(0));
202 EXPECT_CALL(*fbexMock_, UnlockScreenToKernel(_, _, _, _)).WillOnce(Return(1));
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/src/
H A Dfscrypt_key_v1_ext.cpp130 if (FBEX::UnlockScreenToKernel(user, type_, iv, size)) { in UnlockUserScreenExt()
H A Dfbex.cpp440 int FBEX::UnlockScreenToKernel(uint32_t userId, uint32_t type, uint8_t *iv, uint32_t size) in UnlockScreenToKernel() function in OHOS::StorageDaemon::FBEX