HomeSort by relevance Sort by last modified time
    Searched refs:path_ (Results 1 - 25 of 205) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium_org/base/files/
scoped_temp_dir.cc 16 if (!path_.empty() && !Delete())
21 if (!path_.empty())
26 if (!base::CreateNewTempDirectory(FILE_PATH_LITERAL("scoped_dir"), &path_))
33 if (!path_.empty())
43 &path_))
50 if (!path_.empty())
56 path_ = path;
61 if (path_.empty())
64 bool ret = base::DeleteFile(path_, true);
67 path_.clear()
    [all...]
scoped_temp_dir.h 49 const FilePath& path() const { return path_; }
51 // Returns true if path_ is non-empty and exists.
55 FilePath path_; member in class:base::ScopedTempDir
important_file_writer.h 73 const FilePath& path() const { return path_; }
119 const FilePath path_; member in class:base::ImportantFileWriter
  /external/chromium_org/ppapi/shared_impl/
file_path.cc 9 PepperFilePath::PepperFilePath() : domain_(DOMAIN_INVALID), path_() {}
12 : domain_(domain), path_(path) {
file_path.h 32 const base::FilePath& path() const { return path_; }
36 base::FilePath path_; member in class:ppapi::PepperFilePath
  /external/chromium_org/chrome/installer/util/
create_dir_work_item.cc 14 : path_(path),
19 if (base::PathExists(path_)) {
24 base::FilePath parent_dir(path_);
33 VLOG(1) << "creating directory " << path_.value();
39 bool result = base::CreateDirectory(path_);
54 // Instead we walk through path_ to top_path_ and delete directories
56 base::FilePath path_to_delete(path_);
delete_reg_key_work_item.cc 22 path_(path),
33 if (path_.empty())
40 if (!backup.Initialize(predefined_root_, path_.c_str(), wow64_access_)) {
48 predefined_root_, path_.c_str(), wow64_access_)) {
65 path_.c_str(),
70 if (!backup_.WriteTo(predefined_root_, path_.c_str(), wow64_access_))
create_dir_work_item.h 33 // "path_", and set "top_path_" accordingly. if "path_" already exists,
38 base::FilePath path_; member in class:CreateDirWorkItem
  /external/chromium_org/base/prefs/
scoped_user_pref_update.cc 16 path_(path),
28 value_ = service_->GetMutableUserPref(path_.c_str(), type);
34 service_->ReportUserPrefChanged(path_);
  /external/chromium_org/ui/events/ozone/device/
device_event.cc 14 path_(path) {}
device_event.h 31 base::FilePath path() const { return path_; }
36 base::FilePath path_; member in class:ui::DeviceEvent
  /external/chromium_org/content/shell/browser/
shell_browser_context.cc 81 path_ = cmd_line->GetSwitchValuePath(switches::kContentShellDataPath);
85 CHECK(PathService::Get(base::DIR_LOCAL_APP_DATA, &path_));
86 path_ = path_.Append(std::wstring(L"content_shell"));
93 path_ = config_dir.Append("content_shell");
95 CHECK(PathService::Get(base::DIR_APP_DATA, &path_));
96 path_ = path_.Append("Chromium Content Shell");
98 CHECK(PathService::Get(base::DIR_ANDROID_APP_DATA, &path_));
99 path_ = path_.Append(FILE_PATH_LITERAL("content_shell"))
    [all...]
  /external/chromium_org/chromecast/shell/browser/
cast_browser_context.cc 66 CHECK(PathService::Get(base::DIR_ANDROID_APP_DATA, &path_));
67 path_ = path_.Append(FILE_PATH_LITERAL("cast_shell"));
69 if (!base::PathExists(path_))
70 base::CreateDirectory(path_);
76 CHECK(PathService::Get(DIR_CAST_HOME, &path_));
81 return path_;
  /external/chromium_org/storage/common/blob/
scoped_file.cc 23 : path_(path),
49 base::FilePath path = path_;
50 path_.clear();
57 if (path_.empty())
62 iter->second->PostTask(FROM_HERE, base::Bind(iter->first, path_));
69 path_, false /* recursive */));
82 path_ = other.Release();
scoped_file.h 72 const base::FilePath& path() const { return path_; }
86 base::FilePath path_; member in class:storage::ScopedFile
  /external/chromium_org/third_party/webrtc/base/
filelock.cc 21 : path_(path), file_(file) {
35 LOG(LS_INFO) << "Unlocking:" << path_;
37 Filesystem::DeleteFile(path_);
filelock.h 45 std::string path_; member in class:rtc::FileLock
  /external/chromium_org/base/test/
trace_to_file.h 28 base::FilePath path_; member in class:base::test::TraceToFile
trace_to_file.cc 50 path_ = path;
61 WriteFile(path_, str, static_cast<int>(strlen(str)));
66 AppendToFile(path_, str, static_cast<int>(strlen(str)));
70 int ret = AppendToFile(path_, data.c_str(), static_cast<int>(data.size()));
  /external/chromium_org/chrome/browser/ui/cocoa/
window_size_autosaver.h 26 const char* path_; variable
  /external/chromium_org/content/public/browser/
indexed_db_info.cc 17 path_(path),
indexed_db_info.h 26 base::FilePath path_; member in class:content::IndexedDBInfo
  /external/chromium_org/storage/browser/fileapi/
file_system_url.cc 64 path_ = virtual_path_;
76 path_(virtual_path.NormalizePathSeparators()),
94 path_(cracked_path.NormalizePathSeparators()),
133 ss << path_.value();
136 ss << path_.value();
155 path_ == that.path_ &&
169 return lhs.path_ < rhs.path_;
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_messaging_host_manifest.h 41 const base::FilePath& path() const { return path_; }
54 base::FilePath path_; member in class:extensions::NativeMessagingHostManifest
  /external/chromium_org/chrome/browser/apps/app_shim/
unix_domain_socket_acceptor.h 48 base::FilePath path_; member in class:apps::UnixDomainSocketAcceptor

Completed in 484 milliseconds

1 2 3 4 5 6 7 8 9