OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CreateFolder
(Results
1 - 25
of
41
) sorted by null
1
2
/external/chromium_org/third_party/libjingle/source/talk/base/
unixfilesystem.h
72
virtual bool
CreateFolder
(const Pathname &pathname, mode_t mode);
75
virtual bool
CreateFolder
(const Pathname &pathname);
pathutils.h
137
inline bool
CreateFolder
(const Pathname& path) {
138
return Filesystem::
CreateFolder
(path);
143
return !create ||
CreateFolder
(path);
win32filesystem.h
57
virtual bool
CreateFolder
(const Pathname &pathname);
unixfilesystem.cc
84
bool UnixFilesystem::
CreateFolder
(const Pathname &path, mode_t mode) {
105
if (!
CreateFolder
(Pathname(pathname.substr(0, len)), mode)) {
113
bool UnixFilesystem::
CreateFolder
(const Pathname &path) {
114
return
CreateFolder
(path, 0755);
195
return !create ||
CreateFolder
(pathname);
318
// that you could not call
CreateFolder
(pathname).
448
if (!
CreateFolder
(*path, 0700)) {
fileutils.h
169
virtual bool
CreateFolder
(const Pathname &pathname) = 0;
307
static bool
CreateFolder
(const Pathname &pathname) {
308
return EnsureDefaultFilesystem()->
CreateFolder
(pathname);
win32filesystem.cc
50
bool Win32Filesystem::
CreateFolder
(const Pathname &pathname) {
72
if (!
CreateFolder
(parent)) {
234
return !create ||
CreateFolder
(pathname);
388
return
CreateFolder
(*path);
/external/chromium/third_party/libjingle/source/talk/base/
pathutils.h
137
inline bool
CreateFolder
(const Pathname& path) {
138
return Filesystem::
CreateFolder
(path);
143
return !create ||
CreateFolder
(path);
unixfilesystem.h
58
virtual bool
CreateFolder
(const Pathname &pathname);
win32filesystem.h
57
virtual bool
CreateFolder
(const Pathname &pathname);
fileutils.h
167
virtual bool
CreateFolder
(const Pathname &pathname) = 0;
305
static bool
CreateFolder
(const Pathname &pathname) {
306
return EnsureDefaultFilesystem()->
CreateFolder
(pathname);
unixfilesystem.cc
95
bool UnixFilesystem::
CreateFolder
(const Pathname &path) {
116
if (!
CreateFolder
(Pathname(pathname.substr(0, len)))) {
201
return !create ||
CreateFolder
(pathname);
320
// that you could not call
CreateFolder
(pathname).
451
return
CreateFolder
(*path);
win32filesystem.cc
50
bool Win32Filesystem::
CreateFolder
(const Pathname &pathname) {
72
if (!
CreateFolder
(parent)) {
234
return !create ||
CreateFolder
(pathname);
388
return
CreateFolder
(*path);
/external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-filepath.h
131
bool
CreateFolder
() const;
/external/chromium/sdch/open-vcdiff/src/gtest/
gtest-filepath.cc
181
return parent.CreateDirectoriesRecursively() && this->
CreateFolder
();
188
bool FilePath::
CreateFolder
() const {
/external/chromium/testing/gtest/include/gtest/internal/
gtest-filepath.h
154
bool
CreateFolder
() const;
/external/chromium_org/testing/gtest/include/gtest/internal/
gtest-filepath.h
150
bool
CreateFolder
() const;
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-filepath.h
154
bool
CreateFolder
() const;
/external/gtest/include/gtest/internal/
gtest-filepath.h
154
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
154
bool
CreateFolder
() const;
/external/open-vcdiff/gtest/include/gtest/internal/
gtest-filepath.h
154
bool
CreateFolder
() const;
/external/protobuf/gtest/include/gtest/internal/
gtest-filepath.h
154
bool
CreateFolder
() const;
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-filepath.h
150
bool
CreateFolder
() const;
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
remote_to_local_syncer.h
189
void
CreateFolder
(const SyncStatusCallback& callback);
/external/chromium/testing/gtest/src/
gtest-filepath.cc
311
return parent.CreateDirectoriesRecursively() && this->
CreateFolder
();
318
bool FilePath::
CreateFolder
() const {
Completed in 402 milliseconds
1
2