Lines Matching refs:path_
22 if (!path_.empty() && !Delete()) in ~ScopedTempDir()
27 if (!path_.empty()) in CreateUniqueTempDir()
32 if (!base::CreateNewTempDirectory(kScopedDirPrefix, &path_)) in CreateUniqueTempDir()
39 if (!path_.empty()) in CreateUniqueTempDirUnderPath()
47 if (!base::CreateTemporaryDirInDir(base_path, kScopedDirPrefix, &path_)) in CreateUniqueTempDirUnderPath()
54 if (!path_.empty()) in Set()
60 path_ = path; in Set()
65 if (path_.empty()) in Delete()
68 bool ret = base::DeleteFile(path_, true); in Delete()
71 path_.clear(); in Delete()
78 FilePath ret = path_; in Take()
79 path_ = FilePath(); in Take()
84 DCHECK(!path_.empty()) << "Did you call CreateUniqueTempDir* before?"; in GetPath()
85 return path_; in GetPath()
89 return !path_.empty() && DirectoryExists(path_); in IsValid()