Searched refs:CreateVolume (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/volume/test/ |
H A D | volume_manager_test.cpp | 88 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 D | disk_info.cpp | 223 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 D | disk_info_test.cpp | 265 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 D | disk_info_test_mock.h | 32 MOCK_METHOD1(CreateVolume, int(dev_t));
|
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/volume/ |
H A D | volume_manager.h | 33 std::string CreateVolume(const std::string diskId, dev_t device);
|
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/disk/ |
H A D | disk_info.h | 49 int CreateVolume(dev_t dev);
|
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/volume/src/ |
H A D | volume_manager.cpp | 51 std::string VolumeManager::CreateVolume(const std::string diskId, dev_t device) in CreateVolume() function in OHOS::StorageDaemon::VolumeManager
|