Home
last modified time | relevance | path

Searched refs:mounted_path (Results 1 – 4 of 4) sorted by relevance

/external/squashfs-tools/squashfs-tools/
Dandroid.c36 void alloc_mounted_path(const char *mount_point, const char *subpath, char **mounted_path) { in alloc_mounted_path() argument
37 *mounted_path = malloc(strlen(mount_point) + strlen(subpath) + 1); in alloc_mounted_path()
38 if (*mounted_path == NULL) { in alloc_mounted_path()
42 strcpy(*mounted_path, mount_point); in alloc_mounted_path()
43 strcat(*mounted_path, subpath); in alloc_mounted_path()
Dandroid.h20 void alloc_mounted_path(const char *mount_point, const char *subpath, char **mounted_path);
Dxattr.c660 char *mounted_path; in read_xattrs() local
661 alloc_mounted_path(mount_point, subpathname(dir_ent), &mounted_path); in read_xattrs()
662 xattrs = read_xattrs_from_context_file(mounted_path, inode->buf.st_mode, in read_xattrs()
664 free(mounted_path); in read_xattrs()
Dmksquashfs.c3056 char *mounted_path; in add_dir_entry() local
3057 alloc_mounted_path(mount_point, subpathname(dir_ent), &mounted_path); in add_dir_entry()
3058 android_fs_config(mounted_path, &inode_info->buf, target_out_path); in add_dir_entry()
3059 free(mounted_path); in add_dir_entry()