OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TouchFile
(Results
1 - 7
of
7
) sorted by null
/external/libbrillo/brillo/
file_utils.h
22
BRILLO_EXPORT bool
TouchFile
(const base::FilePath& path,
27
// Convenience version of
TouchFile
() defaulting to 600 permissions and the
31
BRILLO_EXPORT bool
TouchFile
(const base::FilePath& path);
file_utils_unittest.cc
64
EXPECT_TRUE(
TouchFile
(file_path_));
71
EXPECT_TRUE(
TouchFile
(file_path_));
79
EXPECT_TRUE(
TouchFile
(file_path_));
85
EXPECT_TRUE(
TouchFile
(file_path_));
91
EXPECT_TRUE(
TouchFile
(file_path_));
99
EXPECT_TRUE(
TouchFile
(file_path_));
106
EXPECT_TRUE(
TouchFile
(file_path_, kPermissions777, geteuid() + 1, getegid()));
112
EXPECT_TRUE(
TouchFile
(file_path_, kPermissions777, geteuid(), getegid() + 1));
117
EXPECT_TRUE(
TouchFile
(file_path_, kPermissions777, geteuid(), getegid()));
123
EXPECT_TRUE(
TouchFile
(file_path_, kPermissions700, geteuid(), getegid()))
[
all
...]
file_utils.cc
133
bool
TouchFile
(const base::FilePath& path,
159
bool
TouchFile
(const base::FilePath& path) {
160
// Use
TouchFile
() instead of TouchFileInternal() to explicitly set
162
return
TouchFile
(path, kPermissions600, geteuid(), getegid());
/system/core/crash_reporter/
crash_reporter.cc
72
static bool
TouchFile
(const FilePath &file_path) {
146
TouchFile
(FilePath(kKernelCrashDetected));
150
TouchFile
(FilePath(kUncleanShutdownDetected));
/system/update_engine/
p2p_manager_unittest.cc
152
EXPECT_TRUE(base::
TouchFile
(path, file_time, file_time));
157
EXPECT_TRUE(base::
TouchFile
(path, file_time, file_time));
225
EXPECT_TRUE(base::
TouchFile
(path, file_date, file_date));
230
EXPECT_TRUE(base::
TouchFile
(path, file_date, file_date));
/external/libchrome/base/files/
file_util.cc
197
bool
TouchFile
(const FilePath& path,
file_util.h
301
BASE_EXPORT bool
TouchFile
(const FilePath& path,
Completed in 158 milliseconds