/foundation/filemanagement/storage_service/services/storage_daemon/volume/src/ |
H A D | volume_manager.cpp | 117 int32_t VolumeManager::Mount(const std::string volId, uint32_t flags) in Mount() function in OHOS::StorageDaemon::VolumeManager 122 return DelayedSingleton<OHOS::StorageDaemon::MtpDeviceMonitor>::GetInstance()->Mount(volId); in Mount() 129 int32_t err = info->Mount(flags); in Mount() 138 LOGE("Volume Notify Mount Destroyed failed"); in Mount()
|
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/src/mountpoint/ |
H A D | mount_manager.cpp | 35 void MountManager::Mount(unique_ptr<MountPoint> mp) in Mount() function in OHOS::Storage::DistributedFile::MountManager
|
H A D | mount_point.cpp | 33 void MountPoint::Mount() const in Mount() function in OHOS::Storage::DistributedFile::MountPoint
|
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/include/mountpoint/ |
H A D | mount_manager.h | 30 void Mount(std::unique_ptr<MountPoint> mp);
|
H A D | mount_point.h | 50 void Mount() const;
|
/foundation/filemanagement/storage_service/services/storage_daemon/volume/test/ |
H A D | volume_info_test.cpp | 142 ret = mock.Mount(mountFlags); in HWTEST_F() 156 * @tc.desc: Verify the Mount function when mount state is incorrect. 167 auto ret = mock.Mount(mountFlags); in HWTEST_F() 174 * @tc.desc: Verify the Mount function when DoMount return error. 196 ret = mock.Mount(mountFlags); in HWTEST_F() 205 * @tc.desc: Verify the Mount function when args are normal. 227 ret = mock.Mount(mountFlags); in HWTEST_F() 236 * @tc.desc: Verify the Mount function when args are normal. 259 ret = mock.Mount(mountFlags); in HWTEST_F() 261 ret = mock.Mount(mountFlag in HWTEST_F() [all...] |
H A D | volume_manager_test.cpp | 208 * @tc.desc: Verify the Mount function. 223 int32_t result = volumeManager->Mount(volId, flags); in HWTEST_F() 233 * @tc.desc: Verify the Mount function. 246 int32_t result = volumeManager->Mount(volId, flags); in HWTEST_F() 269 volumeManager->Mount(volId, flags); in HWTEST_F() 293 volumeManager->Mount(volId, flags); in HWTEST_F()
|
H A D | process_test.cpp | 63 ret = mock.Mount(mountFlags);
in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components/root/ |
H A D | root_component.cpp | 45 rootElement->Mount(nullptr); in SetupElementTree()
|
/foundation/filemanagement/storage_service/services/storage_manager/kits_impl/src/ |
H A D | volumemanager_napi.cpp | 32 DECLARE_NAPI_FUNCTION("mount", Mount), in VolumeManagerExport()
|
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/test/unittest/mountpoint/ |
H A D | mount_manager_test.cpp | 54 MountManager::GetInstance()->Mount(move(uniquePoint)); in HWTEST_F()
|
H A D | mount_point_test.cpp | 64 point.Mount(); in HWTEST_F()
|
/foundation/filemanagement/storage_service/interfaces/kits/js/storage_manager/include/ |
H A D | volumemanager_n_exporter.h | 26 napi_value Mount(napi_env env, napi_callback_info info);
|
H A D | storage_manager_connect.h | 36 int32_t Mount(std::string volumeId);
|
/foundation/filemanagement/storage_service/services/storage_daemon/include/mtp/ |
H A D | mtp_device_monitor.h | 32 int32_t Mount(const std::string &id);
|
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_proxy.cpp | 20 void DOMProxy::Mount(int32_t slot) in Mount() function in OHOS::Ace::Framework::DOMProxy
|
H A D | dom_proxy.h | 37 void Mount(int32_t slot) override;
|
/foundation/filemanagement/dfs_service/test/moduletest/src/ |
H A D | distributedfiledaemon_service_test.cpp | 106 smp->Mount(); in HWTEST_F()
|
/foundation/filemanagement/storage_service/services/storage_daemon/include/volume/ |
H A D | volume_manager.h | 37 int32_t Mount(const std::string volId, uint32_t flags);
|
H A D | volume_info.h | 44 int32_t Mount(uint32_t flags);
|
/foundation/filemanagement/storage_service/services/storage_manager/volume/src/ |
H A D | volume_manager_service.cpp | 43 Mount(volumePtr->GetId()); in OnVolumeCreated() 93 int32_t VolumeManagerService::Mount(std::string volumeId) in Mount() function in OHOS::StorageManager::VolumeManagerService 96 LOGE("VolumeManagerService::Mount volumeId %{public}s not exists", volumeId.c_str()); in Mount() 112 result = sdCommunication->Mount(volumeId, 0); in Mount()
|
/foundation/filemanagement/storage_service/services/storage_manager/include/volume/ |
H A D | volume_manager_service.h | 30 int32_t Mount(std::string volumeId);
|
/foundation/filemanagement/storage_service/services/storage_daemon/user/src/ |
H A D | mount_manager.cpp | 208 ret += Mount(hmdfsMntArgs.GetFullDst() + "/device_view/", dst, nullptr, MS_BIND, nullptr); in HmdfsTwiceMount() 218 ret += Mount(hmdfsMntArgs.GetFullDst() + "/cloud_merge_view/", dst, nullptr, MS_BIND, nullptr); in HmdfsTwiceMount() 228 ret += Mount(hmdfsMntArgs.GetLocalDocsPath(), dst, nullptr, MS_BIND, nullptr); in HmdfsTwiceMount() 243 int ret = Mount(sharefsMntArgs.GetShareSrc(), dst, "sharefs", sharefsMntArgs.GetFlags(), in SharefsMount() 269 int ret = Mount(mountSrcPath, dst, "hmdfs", hmdfsMntArgs.GetFlags(), hmdfsMntArgs.OptionsToString().c_str()); in HmdfsMount() 499 ret = Mount("/dev/fuse", path.c_str(), "fuse", MS_NOSUID | MS_NODEV | MS_NOEXEC | MS_NOATIME, opt.c_str()); in CloudMount() 931 if (Mount(LocalMntArgs.GetFullSrc(), LocalMntArgs.GetCommFullPath() + "local/", in LocalMount() 936 if (Mount(LocalMntArgs.GetFullSrc(), LocalMntArgs.GetCloudFullPath(), in LocalMount() 1152 int32_t ret = Mount(srcPath, dstPath, nullptr, MS_BIND, nullptr); in MountDfsDocs()
|
/foundation/arkui/ace_engine/frameworks/core/pipeline/base/ |
H A D | element.cpp | 266 void Element::Mount(const RefPtr<Element>& parent, int32_t slot, int32_t renderSlot) in Mount() function in OHOS::Ace::Element 383 retakeElement->Mount(AceType::Claim(this), slot, renderSlot); in InflateComponent() 393 newChild->Mount(AceType::Claim(this), slot, renderSlot); in InflateComponent()
|
/foundation/filemanagement/storage_service/services/storage_daemon/include/utils/ |
H A D | file_utils.h | 42 int32_t Mount(const std::string &source, const std::string &target, const char *type,
|