OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:android_system_dirs
(Results
1 - 4
of
4
) sorted by null
/frameworks/native/cmds/installd/
globals.cpp
60
dir_rec_array_t
android_system_dirs
;
member in namespace:android::installd
69
for (i = 0; i <
android_system_dirs
.count; i++) {
70
if (
android_system_dirs
.dirs[i].path != NULL) {
71
free(
android_system_dirs
.dirs[i].path);
75
free(
android_system_dirs
.dirs);
125
android_system_dirs
.count = 4;
127
android_system_dirs
.dirs = (dir_rec_t*) calloc(
android_system_dirs
.count, sizeof(dir_rec_t));
128
if (
android_system_dirs
.dirs == NULL) {
138
android_system_dirs
.dirs[0].path = build_string2(android_root_dir.path, APP_SUBDIR)
[
all
...]
globals.h
53
extern dir_rec_array_t
android_system_dirs
;
utils.cpp
[
all
...]
/frameworks/native/cmds/installd/tests/
installd_utils_test.cpp
69
android_system_dirs
.count = 2;
71
android_system_dirs
.dirs = (dir_rec_t*) calloc(
android_system_dirs
.count, sizeof(dir_rec_t));
72
android_system_dirs
.dirs[0].path = (char*) TEST_SYSTEM_DIR1;
73
android_system_dirs
.dirs[0].len = strlen(TEST_SYSTEM_DIR1);
75
android_system_dirs
.dirs[1].path = (char*) TEST_SYSTEM_DIR2;
76
android_system_dirs
.dirs[1].len = strlen(TEST_SYSTEM_DIR2);
80
free(
android_system_dirs
.dirs);
Completed in 38 milliseconds