Searched defs:path_inside_chroot (Results 1 - 1 of 1) sorted by relevance

/external/minijail/
H A Dlibminijail.c582 const char *path_inside_chroot)
589 * If |path_inside_chroot| is the exact destination of a
598 if (!strcmp(b->dest, path_inside_chroot))
602 * If |path_inside_chroot| is within the destination path of a
607 if (!strncmp(b->dest, path_inside_chroot, strlen(b->dest))) {
609 path_inside_chroot + strlen(b->dest);
615 /* If there is a chroot path, append |path_inside_chroot| to that. */
617 return path_join(j->chrootdir, path_inside_chroot);
620 return strdup(path_inside_chroot);
581 minijail_get_original_path(struct minijail *j, const char *path_inside_chroot) argument

Completed in 71 milliseconds