Searched refs:mounted_path (Results 1 – 4 of 4) sorted by relevance
/external/squashfs-tools/squashfs-tools/ |
D | android.c | 36 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()
|
D | android.h | 24 void alloc_mounted_path(const char *mount_point, const char *subpath, char **mounted_path);
|
D | xattr.c | 703 char *mounted_path; in read_xattrs() local 704 alloc_mounted_path(mount_point, subpathname(dir_ent), &mounted_path); in read_xattrs() 706 read_selinux_xattr_from_sehnd(mounted_path, inode->buf.st_mode, in read_xattrs() 708 free(mounted_path); in read_xattrs()
|
D | mksquashfs.c | 3129 char *mounted_path; in add_dir_entry() local 3132 alloc_mounted_path(mount_point, subpathname(dir_ent), &mounted_path); in add_dir_entry() 3133 rel_path = mounted_path; in add_dir_entry() 3137 free(mounted_path); in add_dir_entry()
|