/foundation/filemanagement/storage_service/services/storage_daemon/ |
H A D | sdc.cpp | 142 static int32_t ActiveUserKey(const std::vector<std::string> &args) in ActiveUserKey() function 157 return OHOS::StorageDaemon::StorageDaemonClient::ActiveUserKey(userId, {}, secret); in ActiveUserKey() 159 return OHOS::StorageDaemon::StorageDaemonClient::ActiveUserKey(userId, {}, {}); in ActiveUserKey() 362 {"active_user_key", ActiveUserKey},
|
/foundation/filemanagement/storage_service/services/storage_manager/client/ |
H A D | storage_manager_client.cpp | 115 int32_t StorageManagerClient::ActiveUserKey(uint32_t userId, in ActiveUserKey() function in OHOS::StorageManager::StorageManagerClient 125 return client->ActiveUserKey(userId, token, secret); in ActiveUserKey()
|
/foundation/filemanagement/storage_service/services/storage_manager/include/crypto/ |
H A D | filesystem_crypto.h | 39 int32_t ActiveUserKey(uint32_t userId,
|
/foundation/filemanagement/storage_service/services/storage_manager/include/client/ |
H A D | storage_manager_client.h | 40 static int32_t ActiveUserKey(uint32_t userId,
|
/foundation/filemanagement/storage_service/services/storage_manager/crypto/test/ |
H A D | filesystem_crypto_test.cpp | 171 * @tc.desc: Test function of ActiveUserKey interface for SUCCESS. 186 result = fileSystemCrypto_->ActiveUserKey(userId, {}, {}); in HWTEST_F() 196 * @tc.desc: Test function of ActiveUserKey interface for Parameters ERROR which userId not in [101, 1099]. 208 uint32_t ret = fileSystemCrypto_->ActiveUserKey(userId, {}, {}); in HWTEST_F() 233 ret = fileSystemCrypto_->ActiveUserKey(userId, {}, {}); in HWTEST_F()
|
/foundation/filemanagement/storage_service/services/storage_daemon/client/include/ |
H A D | storage_daemon_client.h | 52 static int32_t ActiveUserKey(uint32_t userId,
|
/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/ |
H A D | key_manager_mock.cpp | 53 int32_t KeyManager::ActiveUserKey(unsigned int user, const std::vector<uint8_t> &token, in ActiveUserKey() function in OHOS::StorageDaemon::KeyManager
|
/foundation/filemanagement/storage_service/services/storage_manager/client/test/ |
H A D | storage_manager_client_test.cpp | 180 * @tc.desc: Test function of ActiveUserKey interface for SUCCESS.
197 ret = storageManagerClient_->ActiveUserKey(userId, {}, {});
in HWTEST_F() 224 ret = storageManagerClient_->ActiveUserKey(userId, {}, {});
in HWTEST_F()
|
/foundation/filemanagement/storage_service/services/storage_manager/crypto/ |
H A D | filesystem_crypto.cpp | 110 int32_t FileSystemCrypto::ActiveUserKey(uint32_t userId, in ActiveUserKey() function in OHOS::StorageManager::FileSystemCrypto 122 err = sdCommunication->ActiveUserKey(userId, token, secret); in ActiveUserKey()
|
/foundation/filemanagement/storage_service/services/storage_daemon/ipc/test/ |
H A D | storage_daemon_stub_mock.h | 49 MOCK_METHOD3(ActiveUserKey, int32_t (uint32_t, const std::vector<uint8_t> &, const std::vector<uint8_t> &));
|
H A D | storage_daemon_service_mock.h | 145 virtual int32_t ActiveUserKey(uint32_t userId,
|
/foundation/filemanagement/storage_service/test/fuzztest/storagemanagerproxy_fuzzer/ |
H A D | storagemanagerproxy_fuzzer.cpp | 65 proxy->ActiveUserKey(metaData2, token, secret); in StorageManagerProxyFuzzTest()
|
/foundation/filemanagement/storage_service/services/storage_daemon/client/ |
H A D | storage_daemon_client.cpp | 294 int32_t StorageDaemonClient::ActiveUserKey(uint32_t userId, in ActiveUserKey() function in OHOS::StorageDaemon::StorageDaemonClient 309 return client->ActiveUserKey(userId, token, secret); in ActiveUserKey()
|
/foundation/filemanagement/storage_service/services/storage_manager/include/mock/ |
H A D | storage_daemon_proxy_mock.h | 56 virtual int32_t ActiveUserKey(uint32_t userId,
|
/foundation/filemanagement/storage_service/services/storage_manager/include/storage_daemon_communication/ |
H A D | storage_daemon_communication.h | 57 int32_t ActiveUserKey(uint32_t userId,
|
/foundation/filemanagement/storage_service/services/storage_manager/ipc/test/ |
H A D | storage_manager_stub_mock.h | 65 MOCK_METHOD3(ActiveUserKey, int32_t(uint32_t, const std::vector<uint8_t> &, const std::vector<uint8_t> &));
|
/foundation/filemanagement/storage_service/services/storage_daemon/include/ipc/ |
H A D | storage_daemon_proxy.h | 56 virtual int32_t ActiveUserKey(uint32_t userId,
|
H A D | istorage_daemon.h | 63 virtual int32_t ActiveUserKey(uint32_t userId,
|
/foundation/filemanagement/storage_service/services/storage_manager/mock/ |
H A D | storage_daemon_proxy_mock.cpp | 121 int32_t StorageDaemonProxy::ActiveUserKey(uint32_t userId, in ActiveUserKey() function in OHOS::StorageDaemon::StorageDaemonProxy
|
/foundation/filemanagement/storage_service/test/fuzztest/filesystemcrypto_fuzzer/ |
H A D | filesystemcrypto_fuzzer.cpp | 111 int32_t result = fileSystem->ActiveUserKey(userId, token, secret); in ActiveUserKeyFuzzTest() 113 LOGI("file system crypto fuzz test of interface FileSystemCrypto::ActiveUserKey failed!"); in ActiveUserKeyFuzzTest()
|
/foundation/filemanagement/storage_service/services/storage_manager/ipc/src/ |
H A D | storage_manager.cpp | 443 int32_t StorageManager::ActiveUserKey(uint32_t userId, in ActiveUserKey() function in OHOS::StorageManager::StorageManager 450 int32_t err = fsCrypto->ActiveUserKey(userId, token, secret); in ActiveUserKey()
|
/foundation/filemanagement/storage_service/services/storage_manager/storage_daemon_communication/test/ |
H A D | storage_daemon_communication_test.cpp | 672 * @tc.desc: Test function of ActiveUserKey interface for SUCCESS. 689 result = sdCommunication->ActiveUserKey(userId, {}, {}); in HWTEST_F() 745 result = sdCommunication->ActiveUserKey(userId, {}, {}); in HWTEST_F()
|
/foundation/filemanagement/storage_service/services/storage_manager/storage_daemon_communication/src/ |
H A D | storage_daemon_communication.cpp | 308 int32_t StorageDaemonCommunication::ActiveUserKey(uint32_t userId, in ActiveUserKey() function in OHOS::StorageManager::StorageDaemonCommunication 322 return storageDaemon_->ActiveUserKey(userId, token, secret); in ActiveUserKey()
|
/foundation/ability/ability_runtime/test/unittest/uri_permission_impl_test/mock/include/ |
H A D | mock_storage_manager_service.h | 223 virtual int32_t ActiveUserKey(uint32_t userId,
|
/foundation/filemanagement/storage_service/services/storage_manager/include/ipc/ |
H A D | storage_manager.h | 88 int32_t ActiveUserKey(uint32_t userId,
|