Searched defs:target_path (Results 1 - 6 of 6) sorted by relevance

/external/chromium/chrome/browser/chromeos/cros/
H A Dburn_library.h21 if (status.target_path)
22 target_path = status.target_path;
26 std::string target_path; member in struct:ImageBurnStatus
/external/chromium/base/test/
H A Dtest_file_util_posix.cc68 // the suffix after source_dir onto dest_dir to create the target_path.
75 const FilePath target_path = dest_dir.Append(suffix); local
78 if (mkdir(target_path.value().c_str(), info.stat.st_mode & 01777) != 0 &&
81 target_path.value() << " errno = " << errno;
85 if (CopyFile(current, target_path)) {
86 success = EvictFileFromSystemCache(target_path);
90 target_path.value();
/external/chromium/chrome/common/
H A Dlogging_chrome.cc184 FilePath target_path; local
187 target_path = GenerateTimestampedName(symlink_path, base::Time::Now());
194 if (!file_util::CreateSymbolicLink(target_path, symlink_path)) {
196 << " pointing at " << target_path.value();
199 if (!file_util::ReadSymbolicLink(symlink_path, &target_path))
202 return target_path;
206 const FilePath& target_path) {
209 if (::unlink(target_path.value().c_str()) == -1)
210 PLOG(WARNING) << "Unable to unlink log file " << target_path.value();
243 FilePath target_path local
205 RemoveSymlinkAndLog(const FilePath& link_path, const FilePath& target_path) argument
288 FilePath target_path = SetUpSymlinkIfNeeded( local
[all...]
/external/chromium/base/
H A Dfile_util_posix.cc284 // the suffix after from_path onto to_path to create the target_path.
291 const FilePath target_path = to_path.Append(suffix); local
294 if (mkdir(target_path.value().c_str(), info.stat.st_mode & 01777) != 0 &&
297 target_path.value() << " errno = " << errno;
301 if (!CopyFile(current, target_path)) {
303 target_path.value();
376 bool CreateSymbolicLink(const FilePath& target_path, argument
379 DCHECK(!target_path.empty());
380 return ::symlink(target_path.value().c_str(),
385 FilePath* target_path) {
384 ReadSymbolicLink(const FilePath& symlink_path, FilePath* target_path) argument
[all...]
H A Dfile_util_unittest.cc69 bool SetReparsePoint(HANDLE source, const FilePath& target_path) { argument
73 if (kPathPrefix != target_path.value().substr(0, kPathPrefix.size()))
75 target_str += target_path.value();
/external/chromium/chrome/browser/ui/webui/chromeos/
H A Dimageburner_ui.cc238 status.target_path, evt);
706 const FilePath& target_path,
709 target_path, tab_contents, this);
705 CreateFileStream(const GURL& url, const FilePath& target_path, TabContents* tab_contents) argument

Completed in 120 milliseconds