Home
last modified time | relevance | path

Searched refs:user_path (Results 1 – 2 of 2) sorted by relevance

/system/vold/model/
DEmulatedVolume.cpp409 std::string user_path(StringPrintf("%s/%d", getPath().c_str(), getMountUserId())); in doUnmount() local
410 LOG(INFO) << "Killing all processes referencing " << user_path; in doUnmount()
411 KillProcessesUsingPath(user_path); in doUnmount()
/system/security/keystore2/src/
Dlegacy_blob.rs823 let mut user_path = self.path.clone(); in is_empty_user() localVariable
824 user_path.push(format!("user_{}", user_id)); in is_empty_user()
825 if !user_path.as_path().is_dir() { in is_empty_user()
828 Ok(Self::with_retry_interrupted(|| user_path.read_dir()) in is_empty_user()
996 let user_path = self.make_user_path_name(user_id); in remove_user_dir_if_empty() localVariable
997 Self::with_retry_interrupted(|| fs::remove_dir(user_path.as_path())).ok(); in remove_user_dir_if_empty()