HomeSort by relevance Sort by last modified time
    Searched defs:target_path (Results 1 - 4 of 4) sorted by null

  /external/chromium/base/test/
test_file_util_posix.cc 68 // 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/browser/chromeos/cros/
burn_library.h 21 if (status.target_path)
22 target_path = status.target_path;
26 std::string target_path; member in struct:ImageBurnStatus
  /external/chromium/chrome/common/
logging_chrome.cc 184 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 = SetUpSymlinkIfNeeded(log_path, true) local
288 FilePath target_path = SetUpSymlinkIfNeeded( local
    [all...]
  /external/chromium/base/
file_util_posix.cc 284 // 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,
379 DCHECK(!target_path.empty());
380 return ::symlink(target_path.value().c_str(),
385 FilePath* target_path) {
    [all...]

Completed in 162 milliseconds