/external/squashfs-tools/squashfs-tools/ |
android.h | 21 typedef void (*fs_config_func_t)(const char *path, int dir, const char *target_out_path, 25 void android_fs_config(fs_config_func_t fs_config_func, const char *path, struct stat *stat, const char *target_out_path, uint64_t *capabilities);
|
android.c | 47 const char *target_out_path, uint64_t *capabilities) { 51 fs_config_func(path, S_ISDIR(stat->st_mode), target_out_path,
|
mksquashfs.c | 92 char *target_out_path = NULL; variable [all...] |
/system/core/include/private/ |
canned_fs_config.h | 23 void canned_fs_config(const char* path, int dir, const char* target_out_path,
|
android_filesystem_config.h | 256 void fs_config(const char *path, int dir, const char *target_out_path,
|
/system/core/libcutils/ |
fs_config.c | 167 static int fs_config_open(int dir, const char *target_out_path) 171 if (target_out_path && *target_out_path) { 172 /* target_out_path is the path to the directory holding content of system partition 175 int target_out_path_len = strlen(target_out_path); 178 if (target_out_path[target_out_path_len] == '/') { 181 if (asprintf(&name, "%s%s", target_out_path, (dir ? conf_dir : conf_file) + skip_len) != -1) { 211 void fs_config(const char *path, int dir, const char *target_out_path, 223 fd = fs_config_open(dir, target_out_path);
|
canned_fs_config.c | 85 void canned_fs_config(const char* path, int dir, const char* target_out_path, 106 fs_config(path, dir, target_out_path, &c_uid, &c_gid, &c_mode, &c_capabilities);
|
/system/core/cpio/ |
mkbootfs.c | 44 static char *target_out_path = NULL; variable 83 fs_config(path, S_ISDIR(s->st_mode), target_out_path, 334 target_out_path = argv[1];
|
/system/extras/ext4_utils/ |
ext4_utils.h | 156 typedef void (*fs_config_func_t)(const char *path, int dir, const char *target_out_path,
|
make_ext4fs.c | 146 static u32 build_directory_structure(const char *full_path, const char *dir_path, const char *target_out_path, 224 fs_config_func(dentries[i].path, dir, target_out_path, &uid, &gid, &mode, &capabilities); 308 entry_inode = build_directory_structure(subdir_full_path, subdir_dir_path, target_out_path,
|