OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:directory_exists
(Results
1 - 6
of
6
) sorted by null
/system/core/adb/
adb_utils_test.cpp
45
TEST(adb_utils,
directory_exists
) {
53
ASSERT_TRUE(
directory_exists
(profiles_dir));
55
ASSERT_FALSE(
directory_exists
(subdir(profiles_dir, "does-not-exist")));
57
ASSERT_TRUE(
directory_exists
("/proc"));
58
ASSERT_FALSE(
directory_exists
("/proc/self")); // Symbolic link.
59
ASSERT_FALSE(
directory_exists
("/proc/does-not-exist"));
75
EXPECT_FALSE(
directory_exists
(subdir(profiles_dir, "All Users")));
81
EXPECT_FALSE(
directory_exists
(subdir(profiles_dir, "Default User")));
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)) {
bugreport.cpp
229
if (
directory_exists
(argv[1])) {
commandline.cpp
[
all
...]
Completed in 102 milliseconds