Home
last modified time | relevance | path

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

/aosp12/system/core/fs_mgr/libsnapshot/
H A Dsnapuserd_client.cpp130 bool SnapuserdClient::WaitForDeviceDelete(const std::string& control_device) { in WaitForDeviceDelete() argument
131 std::string msg = "delete," + control_device; in WaitForDeviceDelete()
138 LOG(ERROR) << "Failed waiting to delete device " << control_device; in WaitForDeviceDelete()
H A Dsnapuserd_server.h111 bool RemoveAndJoinHandler(const std::string& control_device);
H A Dsnapuserd_worker.cpp75 const std::string& control_device, const std::string& misc_name, in WorkerThread() argument
79 control_device_ = control_device; in WorkerThread()
H A Dsnapuserd.h156 const std::string& control_device, const std::string& misc_name,
H A Dsnapshot.cpp436 auto control_device = "/dev/dm-user/" + misc_name; in MapDmUserCow() local
437 if (!WaitForDevice(control_device, timeout_ms)) { in MapDmUserCow()
1558 std::string control_device = "/dev/dm-user/" + misc_name; in PerformInitTransition() local
1559 if (!WaitForDevice(control_device, 10s)) { in PerformInitTransition()
2325 auto control_device = "/dev/dm-user/" + dm_user_name; in UnmapDmUserDevice() local
2326 if (!android::fs_mgr::WaitForFileDeleted(control_device, 10s)) { in UnmapDmUserDevice()
2327 LOG(ERROR) << "Timed out waiting for " << control_device << " to unlink"; in UnmapDmUserDevice()
/aosp12/system/core/fs_mgr/libdm/include/libdm/
H A Ddm_target.h314 DmTargetUser(uint64_t start, uint64_t length, std::string control_device) in DmTargetUser() argument
315 : DmTarget(start, length), control_device_(control_device) {} in DmTargetUser()
318 std::string control_device() const { return control_device_; } in control_device() function
/aosp12/system/core/fs_mgr/libsnapshot/include/libsnapshot/
H A Dsnapuserd_client.h70 bool WaitForDeviceDelete(const std::string& control_device);
/aosp12/hardware/qcom/audio/legacy/libalsa-intf/
H A Dmsm8960_use_cases.h151 char *control_device; member
H A Dalsa_ucm.c366 if(uc_mgr->card_ctxt_ptr->control_device != NULL) { in snd_use_case_get()
367 *value = strdup(uc_mgr->card_ctxt_ptr->control_device); in snd_use_case_get()
1932 uc_mgr_ptr->card_ctxt_ptr->control_device = in snd_use_case_mgr_open()
1934 if (uc_mgr_ptr->card_ctxt_ptr->control_device == NULL) { in snd_use_case_mgr_open()
1942 strlcpy(uc_mgr_ptr->card_ctxt_ptr->control_device, in snd_use_case_mgr_open()
1946 strlcat(uc_mgr_ptr->card_ctxt_ptr->control_device, tmp, in snd_use_case_mgr_open()
1970 uc_mgr_ptr->card_ctxt_ptr->control_device); in snd_use_case_mgr_open()
1972 mixer_open(uc_mgr_ptr->card_ctxt_ptr->control_device); in snd_use_case_mgr_open()
2020 free(uc_mgr->card_ctxt_ptr->control_device); in snd_use_case_mgr_close()
/aosp12/system/core/fs_mgr/tools/
H A Ddmctl.cpp184 std::string control_device = NextArg(); in Next() local
185 return std::make_unique<DmTargetUser>(start_sector, num_sectors, control_device); in Next()
/aosp12/system/core/fs_mgr/libdm/
H A Ddm_target.cpp289 argv.push_back(control_device()); in GetParameterString()