OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mounted_path
(Results
1 - 4
of
4
) sorted by null
/external/squashfs-tools/squashfs-tools/
android.h
20
void alloc_mounted_path(const char *mount_point, const char *subpath, char **
mounted_path
);
android.c
36
void alloc_mounted_path(const char *mount_point, const char *subpath, char **
mounted_path
) {
37
*
mounted_path
= malloc(strlen(mount_point) + strlen(subpath) + 1);
38
if (*
mounted_path
== NULL) {
42
strcpy(*
mounted_path
, mount_point);
43
strcat(*
mounted_path
, subpath);
xattr.c
660
char *
mounted_path
;
local
661
alloc_mounted_path(mount_point, subpathname(dir_ent), &
mounted_path
);
662
xattrs = read_xattrs_from_context_file(
mounted_path
, inode->buf.st_mode,
664
free(
mounted_path
);
mksquashfs.c
3056
char *
mounted_path
;
local
[
all
...]
Completed in 75 milliseconds