Home
last modified time | relevance | path

Searched refs:newroot (Results 1 – 7 of 7) sorted by relevance

/external/selinux/libsemanage/src/
Dboolean_record.c96 char *newroot = NULL; in hidden_def() local
113 rc = asprintf(&newroot, "%s%s%s", prefix, olddir, storename); in hidden_def()
117 if (strcmp(oldroot, newroot)) { in hidden_def()
118 rc = selinux_set_policy_root(newroot); in hidden_def()
129 if (strcmp(oldroot, newroot)) { in hidden_def()
140 free(newroot); in hidden_def()
/external/python/cpython3/Tools/test2to3/test/
Druntests.py9 newroot = os.path.join(testroot, '..', 'build/lib/test') variable
10 copydir_run_2to3(testroot, newroot)
12 sys.path[0] = newroot
/external/libchrome/libchrome_tools/uprev/
Ddirty_uprev.py56 newroot = utils.git_commit(old_tree, [])
57 squashed = utils.git_commit(new_tree, [newroot])
60 patch = subprocess.check_output(['git', 'format-patch', '--stdout', newroot+b'..'+squashed])
/external/toybox/toys/other/
Dswitch_root.c46 char *newroot = *toys.optargs, **cmdline = toys.optargs+1; in switch_root_main() local
62 if (chdir(newroot) || stat(".", &st1) || stat("/", &st2) || in switch_root_main()
65 error_msg("bad newroot '%s'", newroot); in switch_root_main()
/external/curl/lib/
Dsplay.c211 struct Curl_tree **newroot) in Curl_splayremovebyaddr() argument
234 *newroot = t; /* return the same root */ in Curl_splayremovebyaddr()
273 *newroot = x; /* store new root pointer */ in Curl_splayremovebyaddr()
Dsplay.h55 struct Curl_tree **newroot);
/external/minijail/
Dlibminijail.c1755 int oldroot, newroot; in enter_pivot_root() local
1766 newroot = open(j->chrootdir, O_DIRECTORY | O_RDONLY | O_CLOEXEC); in enter_pivot_root()
1767 if (newroot < 0) in enter_pivot_root()
1803 if (fchdir(newroot)) in enter_pivot_root()
1807 if (close(newroot)) in enter_pivot_root()