OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:file_is_in_dir
(Results
1 - 4
of
4
) sorted by null
/bionic/linker/tests/
linker_utils_test.cpp
48
ASSERT_TRUE(
file_is_in_dir
("/foo/bar/file", "/foo/bar"));
49
ASSERT_FALSE(
file_is_in_dir
("/foo/bar/file", "/foo"));
51
ASSERT_FALSE(
file_is_in_dir
("/foo/bar/file", "/bar/foo"));
53
ASSERT_TRUE(
file_is_in_dir
("/file", ""));
54
ASSERT_FALSE(
file_is_in_dir
("/file", "/"));
/bionic/linker/
linker_utils.h
24
bool
file_is_in_dir
(const std::string& file, const std::string& dir);
linker_utils.cpp
64
bool
file_is_in_dir
(const std::string& file, const std::string& dir) {
function
linker.cpp
189
if (
file_is_in_dir
(realpath, dir)) {
339
if (
file_is_in_dir
(file, dir)) {
345
if (
file_is_in_dir
(file, dir)) {
[
all
...]
Completed in 150 milliseconds