OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:directory_exists
(Results
1 - 5
of
5
) sorted by null
/system/core/adb/
adb_utils_test.cpp
45
TEST(adb_utils,
directory_exists
) {
53
ASSERT_TRUE(
directory_exists
(profiles_dir));
59
ASSERT_FALSE(
directory_exists
(subdir(profiles_dir, "All Users")));
65
ASSERT_FALSE(
directory_exists
(subdir(profiles_dir, "Default User")));
67
ASSERT_FALSE(
directory_exists
(subdir(profiles_dir, "does-not-exist")));
69
ASSERT_TRUE(
directory_exists
("/proc"));
70
ASSERT_FALSE(
directory_exists
("/proc/self")); // Symbolic link.
71
ASSERT_FALSE(
directory_exists
("/proc/does-not-exist"));
adb_utils.h
28
bool
directory_exists
(const std::string& path);
adb_utils.cpp
73
bool
directory_exists
(const std::string& path) {
function
191
if (
directory_exists
(path)) {
remount_service.cpp
90
if (!
directory_exists
(dir)) {
commandline.cpp
[
all
...]
Completed in 271 milliseconds