Home
last modified time | relevance | path

Searched refs:control_device (Results 1 – 12 of 12) sorted by relevance

/aosp14/system/core/fs_mgr/libsnapshot/snapuserd/
H A Dsnapuserd_client.cpp149 bool SnapuserdClient::WaitForDeviceDelete(const std::string& control_device) { in WaitForDeviceDelete() argument
150 std::string msg = "delete," + control_device; in WaitForDeviceDelete()
157 LOG(ERROR) << "Failed waiting to delete device " << control_device; in WaitForDeviceDelete()
/aosp14/system/core/fs_mgr/libdm/include/libdm/
H A Ddm_target.h315 DmTargetUser(uint64_t start, uint64_t length, std::string control_device) in DmTargetUser() argument
316 : DmTarget(start, length), control_device_(control_device) {} in DmTargetUser()
319 std::string control_device() const { return control_device_; } in control_device() function
/aosp14/system/core/fs_mgr/libsnapshot/snapuserd/include/snapuserd/
H A Dsnapuserd_client.h77 bool WaitForDeviceDelete(const std::string& control_device);
/aosp14/system/core/fs_mgr/libsnapshot/snapuserd/dm-snapshot-merge/
H A Dsnapuserd_server.h114 bool RemoveAndJoinHandler(const std::string& control_device);
H A Dsnapuserd_worker.cpp36 const std::string& control_device, const std::string& misc_name, in WorkerThread() argument
40 control_device_ = control_device; in WorkerThread()
H A Dsnapuserd.h139 const std::string& control_device, const std::string& misc_name,
/aosp14/system/core/fs_mgr/libsnapshot/snapuserd/user-space-merge/
H A Dsnapuserd_server.h114 bool RemoveAndJoinHandler(const std::string& control_device);
H A Dsnapuserd_dm_user.cpp27 const std::string& control_device, const std::string& misc_name, in Worker() argument
31 control_device_ = control_device; in Worker()
H A Dsnapuserd_core.h208 const std::string& control_device, const std::string& misc_name,
/aosp14/system/core/fs_mgr/libsnapshot/
H A Dsnapshot.cpp517 auto control_device = "/dev/dm-user/" + misc_name; in MapDmUserCow() local
518 if (!WaitForDevice(control_device, timeout_ms)) { in MapDmUserCow()
1808 std::string control_device = "/dev/dm-user/" + misc_name; in PerformInitTransition() local
1809 if (!WaitForDevice(control_device, 10s)) { in PerformInitTransition()
2674 auto control_device = "/dev/dm-user/" + dm_user_name; in UnmapDmUserDevice() local
2675 if (!android::fs_mgr::WaitForFileDeleted(control_device, 10s)) { in UnmapDmUserDevice()
2714 auto control_device = "/dev/dm-user/" + dm_user_name; in UnmapUserspaceSnapshotDevice() local
2715 if (!android::fs_mgr::WaitForFileDeleted(control_device, 10s)) { in UnmapUserspaceSnapshotDevice()
4229 std::string control_device = "/dev/dm-user/" + misc_name; in DetachFirstStageSnapuserdForSelinux() local
4230 if (!WaitForDevice(control_device, 10s)) { in DetachFirstStageSnapuserdForSelinux()
[all …]
/aosp14/system/core/fs_mgr/tools/
H A Ddmctl.cpp186 std::string control_device = NextArg(); in Next() local
187 return std::make_unique<DmTargetUser>(start_sector, num_sectors, control_device); in Next()
/aosp14/system/core/fs_mgr/libdm/
H A Ddm_target.cpp293 argv.push_back(control_device()); in GetParameterString()