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
21
TEST(adb_utils,
directory_exists
) {
22
ASSERT_TRUE(
directory_exists
("/proc"));
23
ASSERT_FALSE(
directory_exists
("/proc/self")); // Symbolic link.
24
ASSERT_FALSE(
directory_exists
("/proc/does-not-exist"));
adb_utils.h
23
bool
directory_exists
(const std::string& path);
adb_utils.cpp
40
bool
directory_exists
(const std::string& path) {
function
remount_service.cpp
66
if (!
directory_exists
(dir)) {
commandline.cpp
892
if (!
directory_exists
(path)) {
[
all
...]
Completed in 72 milliseconds