HomeSort by relevance Sort by last modified time
    Searched defs:newroot (Results 1 - 2 of 2) sorted by null

  /external/toybox/toys/other/
switch_root.c 46 char *newroot = *toys.optargs, **cmdline = toys.optargs+1; local
62 if (chdir(newroot) || stat(".", &st1) || stat("/", &st2) ||
65 error_msg("bad newroot '%s'", newroot);
71 // stat(), relative to newroot. *cmdline is also used below, but by that
89 // Fix the appearance of the mount table in the newroot chroot
  /external/minijail/
libminijail.c 1046 int ret, oldroot, newroot; local
1058 newroot = open(j->chrootdir, O_DIRECTORY | O_RDONLY);
1059 if (newroot < 0)
1083 if (fchdir(newroot))
    [all...]

Completed in 153 milliseconds