OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:get_path_from_string
(Results
1 - 4
of
4
) sorted by null
/frameworks/native/cmds/installd/
globals.cpp
80
if (
get_path_from_string
(&android_data_dir, data) < 0) {
115
if (
get_path_from_string
(&android_mnt_expand_dir, "/mnt/expand/") < 0) {
134
if (
get_path_from_string
(&android_root_dir, root) < 0) {
utils.h
139
int
get_path_from_string
(dir_rec_t* rec, const char* path);
utils.cpp
1111
int
get_path_from_string
(dir_rec_t* rec, const char* path) {
function in namespace:android::installd
[
all
...]
/frameworks/native/cmds/installd/tests/
installd_utils_test.cpp
274
EXPECT_EQ(-1,
get_path_from_string
(&test1, (const char *) NULL))
280
EXPECT_EQ(-1,
get_path_from_string
(&test1, ""))
286
EXPECT_EQ(-1,
get_path_from_string
(&test1, "mnt/asec"))
293
EXPECT_EQ(0,
get_path_from_string
(&test1, "/mnt/asec"))
304
EXPECT_EQ(0,
get_path_from_string
(&test3, "/data/app/"))
Completed in 363 milliseconds