HomeSort by relevance Sort by last modified time
    Searched refs:symlink_path (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/chrome/common/
logging_chrome.cc 151 base::FilePath SetUpSymlinkIfNeeded(const base::FilePath& symlink_path,
153 DCHECK(!symlink_path.empty());
160 bool symlink_exists = base::PathExists(symlink_path);
162 target_path = GenerateTimestampedName(symlink_path, base::Time::Now());
165 if (::unlink(symlink_path.value().c_str()) == -1) {
167 DPLOG(WARNING) << "Unable to unlink " << symlink_path.value();
169 if (!base::CreateSymbolicLink(target_path, symlink_path)) {
170 DPLOG(ERROR) << "Unable to create symlink " << symlink_path.value()
174 if (!base::ReadSymbolicLink(symlink_path, &target_path))
175 DPLOG(ERROR) << "Unable to read symlink " << symlink_path.value()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
symlink_support.py 12 symlink_path = TESTFN + "can_symlink"
14 symlink(TESTFN, symlink_path)
19 os.remove(symlink_path)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
symlink_support.py 12 symlink_path = TESTFN + "can_symlink"
14 symlink(TESTFN, symlink_path)
19 os.remove(symlink_path)
  /external/chromium_org/base/
file_util_posix.cc 385 const FilePath& symlink_path) {
386 DCHECK(!symlink_path.empty());
389 symlink_path.value().c_str()) != -1;
392 bool ReadSymbolicLink(const FilePath& symlink_path, FilePath* target_path) {
393 DCHECK(!symlink_path.empty());
396 ssize_t count = ::readlink(symlink_path.value().c_str(), buf, arraysize(buf));
  /external/chromium_org/content/browser/fileapi/
local_file_util_unittest.cc 151 base::FilePath symlink_path = LocalPath(symlink_name); local
152 ASSERT_TRUE(base::CreateSymbolicLink(target_path, symlink_path));

Completed in 100 milliseconds