Searched refs:mounted_path (Results 1 – 4 of 4) sorted by relevance
/external/squashfs-tools/squashfs-tools/ |
D | android.c | 37 void alloc_mounted_path(const char *mount_point, const char *subpath, char **mounted_path) { in alloc_mounted_path() argument 38 *mounted_path = malloc(strlen(mount_point) + strlen(subpath) + 1); in alloc_mounted_path() 39 if (*mounted_path == NULL) { in alloc_mounted_path() 43 strcpy(*mounted_path, mount_point); in alloc_mounted_path() 44 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 | 3223 char *mounted_path; in add_dir_entry() local 3226 alloc_mounted_path(mount_point, subpathname(dir_ent), &mounted_path); in add_dir_entry() 3227 rel_path = mounted_path; in add_dir_entry() 3231 free(mounted_path); in add_dir_entry()
|