Home
last modified time | relevance | path

Searched refs:UpdateUserAuth (Results 1 - 25 of 45) sorted by relevance

12

/foundation/filemanagement/storage_service/services/storage_daemon/
H A Dsdc.cpp119 static int32_t UpdateUserAuth(const std::vector<std::string> &args) in UpdateUserAuth() function
136 return OHOS::StorageDaemon::StorageDaemonClient::UpdateUserAuth(userId, 0, {}, oldSecret, newSecret); in UpdateUserAuth()
139 return OHOS::StorageDaemon::StorageDaemonClient::UpdateUserAuth(userId, 0, {}, {}, newSecret); in UpdateUserAuth()
361 {"update_user_auth", UpdateUserAuth},
/foundation/filemanagement/storage_service/services/storage_manager/client/
H A Dstorage_manager_client.cpp86 int32_t StorageManagerClient::UpdateUserAuth(uint32_t userId, uint64_t secureUid, in UpdateUserAuth() function in OHOS::StorageManager::StorageManagerClient
97 return client->UpdateUserAuth(userId, secureUid, token, oldSecret, newSecret); in UpdateUserAuth()
/foundation/filemanagement/storage_service/services/storage_manager/include/crypto/
H A Dfilesystem_crypto.h30 int32_t UpdateUserAuth(uint32_t userId, uint64_t secureUid,
/foundation/filemanagement/storage_service/services/storage_manager/include/client/
H A Dstorage_manager_client.h31 static int32_t UpdateUserAuth(uint32_t userId, uint64_t secureUid,
/foundation/filemanagement/storage_service/services/storage_manager/crypto/test/
H A Dfilesystem_crypto_test.cpp125 * @tc.desc: Test function of UpdateUserAuth interface for SUCCESS.
140 result = fileSystemCrypto_->UpdateUserAuth(userId, 0, {}, {}, {}); in HWTEST_F()
150 * @tc.desc: Test function of UpdateUserAuth interface for Parameters ERROR which userId not in [101, 1099].
162 uint32_t ret = fileSystemCrypto_->UpdateUserAuth(userId, 0, {}, {}, {}); in HWTEST_F()
405 ret = fileSystemCrypto_->UpdateUserAuth(userId, 0, {}, {}, {}); in HWTEST_F()
/foundation/filemanagement/storage_service/services/storage_daemon/client/include/
H A Dstorage_daemon_client.h43 static int32_t UpdateUserAuth(uint32_t userId, uint64_t secureUid,
/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/
H A Dkey_manager_mock.cpp41 int32_t KeyManager::UpdateUserAuth(unsigned int user, struct UserTokenSecret &userTokenSecret) in UpdateUserAuth() function in OHOS::StorageDaemon::KeyManager
/foundation/filemanagement/storage_service/services/storage_daemon/client/test/
H A Dstorage_daemon_client_test.cpp201 * @tc.desc: Verify the UpdateUserAuth function.
217 ret = storageDaemonClient_->UpdateUserAuth(userid, 0, {}, {}, {}); in HWTEST_F()
218 EXPECT_TRUE(ret == E_OK) << "UpdateUserAuth error"; in HWTEST_F()
242 ret = storageDaemonClient_->UpdateUserAuth(userid, 0, {}, {}, {}); in HWTEST_F()
243 EXPECT_TRUE(ret == E_OK) << "UpdateUserAuth error"; in HWTEST_F()
/foundation/filemanagement/storage_service/services/storage_daemon/include/crypto/
H A Dkey_manager.h63 int UpdateUserAuth(unsigned int user, struct UserTokenSecret &userTokenSecret,
68 int UpdateUserAuth(unsigned int user, struct UserTokenSecret &userTokenSecret);
/foundation/filemanagement/storage_service/services/storage_manager/client/test/
H A Dstorage_manager_client_test.cpp153 * @tc.desc: Test function of UpdateUserAuth interface for SUCCESS.
170 ret = storageManagerClient_->UpdateUserAuth(userId, 0, {}, {}, {}); in HWTEST_F()
171 EXPECT_TRUE(ret == E_OK) << "UpdateUserAuth error"; in HWTEST_F()
255 ret = storageManagerClient_->UpdateUserAuth(userId, 0, {}, {}, {}); in HWTEST_F()
256 EXPECT_TRUE(ret == E_OK) << "UpdateUserAuth error"; in HWTEST_F()
/foundation/filemanagement/storage_service/services/storage_manager/crypto/
H A Dfilesystem_crypto.cpp75 int32_t FileSystemCrypto::UpdateUserAuth(uint32_t userId, uint64_t secureUid, in UpdateUserAuth() function in OHOS::StorageManager::FileSystemCrypto
88 err = sdCommunication->UpdateUserAuth(userId, secureUid, token, oldSecret, newSecret); in UpdateUserAuth()
/foundation/filemanagement/storage_service/services/storage_daemon/ipc/test/
H A Dstorage_daemon_stub_mock.h45 MOCK_METHOD5(UpdateUserAuth, int32_t(uint32_t, uint64_t, const std::vector<uint8_t> &,
H A Dstorage_daemon_service_mock.h128 virtual int32_t UpdateUserAuth(uint32_t userId, uint64_t secureUid,
/foundation/filemanagement/storage_service/test/fuzztest/storagemanagerproxy_fuzzer/
H A Dstoragemanagerproxy_fuzzer.cpp67 proxy->UpdateUserAuth(metaData2, metaData4, token, secret, secret); in StorageManagerProxyFuzzTest()
/foundation/filemanagement/storage_service/services/storage_daemon/client/
H A Dstorage_daemon_client.cpp255 int32_t StorageDaemonClient::UpdateUserAuth(uint32_t userId, uint64_t secureUid, in UpdateUserAuth() function in OHOS::StorageDaemon::StorageDaemonClient
271 return client->UpdateUserAuth(userId, secureUid, token, oldSecret, newSecret); in UpdateUserAuth()
/foundation/filemanagement/storage_service/services/storage_manager/include/mock/
H A Dstorage_daemon_proxy_mock.h47 virtual int32_t UpdateUserAuth(uint32_t userId, uint64_t secureUid,
/foundation/filemanagement/storage_service/services/storage_manager/include/storage_daemon_communication/
H A Dstorage_daemon_communication.h48 int32_t UpdateUserAuth(uint32_t userId, uint64_t secureUid,
/foundation/filemanagement/storage_service/services/storage_manager/ipc/test/
H A Dstorage_manager_stub_mock.h61 MOCK_METHOD5(UpdateUserAuth, int32_t(uint32_t, uint64_t, const std::vector<uint8_t> &,
/foundation/filemanagement/storage_service/services/storage_daemon/include/ipc/
H A Dstorage_daemon_proxy.h47 virtual int32_t UpdateUserAuth(uint32_t userId, uint64_t secureUid,
H A Distorage_daemon.h54 virtual int32_t UpdateUserAuth(uint32_t userId, uint64_t secureUid,
/foundation/filemanagement/storage_service/services/storage_manager/mock/
H A Dstorage_daemon_proxy_mock.cpp104 int32_t StorageDaemonProxy::UpdateUserAuth(uint32_t userId, uint64_t secureUid, in UpdateUserAuth() function in OHOS::StorageDaemon::StorageDaemonProxy
/foundation/filemanagement/storage_service/test/fuzztest/filesystemcrypto_fuzzer/
H A Dfilesystemcrypto_fuzzer.cpp89 int32_t result = fileSystem->UpdateUserAuth(userId, secureUid, token, oldSecret, newSecret); in UpdateUserAuthFuzzTest()
91 LOGI("file system crypto fuzz test of interface FileSystemCrypto::UpdateUserAuth failed!"); in UpdateUserAuthFuzzTest()
/foundation/filemanagement/storage_service/services/storage_manager/ipc/src/
H A Dstorage_manager.cpp412 int32_t StorageManager::UpdateUserAuth(uint32_t userId, uint64_t secureUid, in UpdateUserAuth() function in OHOS::StorageManager::StorageManager
420 int32_t err = fsCrypto->UpdateUserAuth(userId, secureUid, token, oldSecret, newSecret); in UpdateUserAuth()
/foundation/filemanagement/storage_service/services/storage_manager/storage_daemon_communication/src/
H A Dstorage_daemon_communication.cpp271 int32_t StorageDaemonCommunication::UpdateUserAuth(uint32_t userId, uint64_t secureUid, in UpdateUserAuth() function in OHOS::StorageManager::StorageDaemonCommunication
286 return storageDaemon_->UpdateUserAuth(userId, secureUid, token, oldSecret, newSecret); in UpdateUserAuth()
/foundation/ability/ability_runtime/test/unittest/uri_permission_impl_test/mock/include/
H A Dmock_storage_manager_service.h206 virtual int32_t UpdateUserAuth(uint32_t userId, uint64_t secureUid,

Completed in 16 milliseconds

12