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

1 2

  /external/webrtc/webrtc/base/
pathutils.h 122 inline bool CreateFolder(const Pathname& path) {
123 return Filesystem::CreateFolder(path);
128 return !create || CreateFolder(path);
unixfilesystem.h 59 virtual bool CreateFolder(const Pathname &pathname, mode_t mode);
62 bool CreateFolder(const Pathname& pathname) override;
win32filesystem.h 40 virtual bool CreateFolder(const Pathname &pathname);
unixfilesystem.cc 92 bool UnixFilesystem::CreateFolder(const Pathname &path, mode_t mode) {
113 if (!CreateFolder(Pathname(pathname.substr(0, len)), mode)) {
121 bool UnixFilesystem::CreateFolder(const Pathname &path) {
122 return CreateFolder(path, 0755);
203 return !create || CreateFolder(pathname);
326 // that you could not call CreateFolder(pathname).
461 if (!CreateFolder(*path, 0700)) {
fileutils.h 148 virtual bool CreateFolder(const Pathname &pathname) = 0;
286 static bool CreateFolder(const Pathname &pathname) {
287 return EnsureDefaultFilesystem()->CreateFolder(pathname);
win32filesystem.cc 34 bool Win32Filesystem::CreateFolder(const Pathname &pathname) {
56 if (!CreateFolder(parent)) {
218 return !create || CreateFolder(pathname);
372 return CreateFolder(*path);
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-filepath.h 154 bool CreateFolder() const;
  /external/googletest/googletest/include/gtest/internal/
gtest-filepath.h 150 bool CreateFolder() const;
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-filepath.h 150 bool CreateFolder() const;
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 154 bool CreateFolder() const;
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-filepath.h 150 bool CreateFolder() const;
  /external/protobuf/gtest/include/gtest/internal/
gtest-filepath.h 154 bool CreateFolder() const;
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 154 bool CreateFolder() const;
  /external/v8/testing/gtest/include/gtest/internal/
gtest-filepath.h 150 bool CreateFolder() const;
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-filepath.h 150 bool CreateFolder() const;
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-filepath.h 150 bool CreateFolder() const;
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-filepath.h 150 bool CreateFolder() const;
  /external/google-breakpad/src/testing/gtest/src/
gtest-filepath.cc 311 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
318 bool FilePath::CreateFolder() const {
  /external/googletest/googletest/src/
gtest-filepath.cc 318 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
325 bool FilePath::CreateFolder() const {
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-filepath.cc 318 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
325 bool FilePath::CreateFolder() const {
  /external/llvm/utils/unittest/googletest/src/
gtest-filepath.cc 309 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
316 bool FilePath::CreateFolder() const {
  /external/mesa3d/src/gtest/src/
gtest-filepath.cc 313 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
320 bool FilePath::CreateFolder() const {
  /external/protobuf/gtest/src/
gtest-filepath.cc 311 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
318 bool FilePath::CreateFolder() const {
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-filepath.cc 311 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
318 bool FilePath::CreateFolder() const {
  /external/v8/testing/gtest/src/
gtest-filepath.cc 318 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
325 bool FilePath::CreateFolder() const {

Completed in 1159 milliseconds

1 2