Home
last modified time | relevance | path

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

/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/volume/test/
H A Dvolume_manager_test.cpp88 std::string result = volumeManager->CreateVolume(diskId, device);
111 std::string result = volumeManager->CreateVolume(diskId, device);
112 std::string res = volumeManager->CreateVolume(diskId, device);
135 std::string volId = volumeManager->CreateVolume(diskId, device);
177 std::string volId = volumeManager->CreateVolume(diskId, device);
221 std::string volId = volumeManager->CreateVolume(diskId, device);
267 std::string volId = volumeManager->CreateVolume(diskId, device);
317 std::string volId = volumeManager->CreateVolume(diskId, device);
365 std::string volId = volumeManager->CreateVolume(diskId, device);
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/disk/src/
H A Ddisk_info.cpp223 if (CreateVolume(dev) == E_OK) { in CreateMBRVolume()
237 CreateVolume(device_); in CreateUnknownTabVol()
308 if (CreateVolume(partitionDev) == E_OK) { in ProcessPartition()
314 int DiskInfo::CreateVolume(dev_t dev) in CreateVolume() function in OHOS::StorageDaemon::DiskInfo
319 std::string volumeId = volume->CreateVolume(GetId(), dev); in CreateVolume()
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/disk/test/
H A Ddisk_info_test.cpp265 EXPECT_CALL(*mock, CreateVolume(testing::_)).WillOnce(testing::Return(E_OK));
266 int ret = mock->CreateVolume(device);
298 EXPECT_CALL(*mock, CreateVolume(testing::_)).WillOnce(testing::Return(E_ERR));
299 int ret = mock->CreateVolume(device);
730 EXPECT_CALL(*mock, CreateVolume(testing::_)).WillOnce(testing::Return(E_ERR));
731 int ret = mock->CreateVolume(device);
H A Ddisk_info_test_mock.h32 MOCK_METHOD1(CreateVolume, int(dev_t));
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/volume/
H A Dvolume_manager.h33 std::string CreateVolume(const std::string diskId, dev_t device);
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/disk/
H A Ddisk_info.h49 int CreateVolume(dev_t dev);
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/volume/src/
H A Dvolume_manager.cpp51 std::string VolumeManager::CreateVolume(const std::string diskId, dev_t device) in CreateVolume() function in OHOS::StorageDaemon::VolumeManager