HomeSort by relevance Sort by last modified time
    Searched full:chroot (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/Analysis/
chroot.c 1 // RUN: %clang_cc1 -analyze -analyzer-checker=experimental.unix.Chroot -analyzer-store region -verify %s
3 extern int chroot(const char* path);
10 chroot("/usr/local"); // root changed.
11 foo(); // expected-warning {{No call of chdir("/") immediately after chroot}}
15 chroot("/usr/local"); // root changed.
21 chroot("/usr/local"); // root changed.
23 foo(); // expected-warning {{No call of chdir("/") immediately after chroot}}
  /bionic/libc/arch-x86/syscalls/
chroot.S 5 .type chroot, @function
6 .globl chroot
9 chroot: label
  /bionic/libc/arch-arm/syscalls/
chroot.S 5 ENTRY(chroot) function
14 END(chroot)
  /bionic/libc/arch-sh/syscalls/
chroot.S 5 .type chroot, @function
6 .globl chroot
9 chroot: label
  /external/clang/lib/StaticAnalyzer/Checkers/
ChrootChecker.cpp 10 // This file defines chroot checker, which checks improper use of chroot.
34 // This checker checks improper use of chroot.
36 // NO_CHROOT ---chroot(path)--> ROOT_CHANGED ---chdir(/) --> JAIL_ENTERED
43 // This bug refers to possibly break out of a chroot() jail.
58 void Chroot(CheckerContext &C, const CallExpr *CE) const;
74 II_chroot = &Ctx.Idents.get("chroot");
79 Chroot(C, CE);
90 void ChrootChecker::Chroot(CheckerContext &C, const CallExpr *CE) const {
94 // Once encouter a chroot(), set the enum value ROOT_CHANGED directly in
    [all...]
  /external/chromium/build/
install-chroot.sh 7 # This script installs Debian-derived distributions in a chroot environment.
15 echo "-g group,... groups that can use the chroot unauthenticated"
19 echo "-c always copy 64bit helper binaries to 32bit chroot"
76 mkdir -p "$HOME/chroot/"
96 # Create directory for chroot
97 sudo mkdir -p /var/lib/chroot
99 # Find chroot environments that can be installed with debootstrap
104 echo "The following targets are available to be installed in a chroot:"
125 printf "32bit or a 64bit chroot environment. %s" \
136 [ -d /var/lib/chroot/"${target}" ] &&
    [all...]
  /external/chromium/build/linux/
pkg-config-wrapper 13 # directory of a Chromium OS chroot.
30 # /path/to/chroot/build/x86-generic/usr/lib/pkgconfig/pkg.pc may have all paths
31 # relative to /path/to/chroot (i.e. prefix=/build/x86-generic/usr) instead of
32 # relative to /path/to/chroot/build/x86-generic (i.e prefix=/usr).
  /external/ipsec-tools/src/racoon/
localconf.h 73 char *chroot; /* chroot path */ member in struct:localconf
cfparse.h 45 CHROOT = 261,
219 #define CHROOT 261
  /external/ipsec-tools/src/racoon/doc/
README.privsep 5 Racoon can run in a chroot'd environment. When so instructed, it runs as two
8 privileged user in a chroot'd environment and which handles all the other and
73 that the public certificates are in the chroot'd area
136 chroot "/usr/local/etc/racoon/root";
  /system/core/init/
keywords.h 41 KEYWORD(chroot, COMMAND, 1, do_chroot)
  /external/e2fsprogs/debugfs/
debug_cmds.ct 35 change_root_directory, chroot;
  /external/tcpdump/
acconfig.h 135 /* define if should chroot when dropping privileges */
configure.in 139 AC_ARG_WITH(chroot, [ --with-chroot=DIRECTORY when dropping privileges, chroot to DIRECTORY])
140 AC_MSG_CHECKING([whether to chroot])
  /external/qemu/
os-posix.c 228 if (chroot(chroot_dir) < 0) {
229 fprintf(stderr, "chroot failed\n");
  /bionic/libc/include/
unistd.h 119 extern int chroot(const char *);
  /development/ndk/platforms/android-3/arch-arm/symbols/
libc.so.functions.txt 343 chroot
  /development/ndk/platforms/android-3/include/
unistd.h 111 extern int chroot(const char *);
  /development/ndk/platforms/android-5/arch-arm/symbols/
libc.so.functions.txt 378 chroot
  /development/ndk/platforms/android-8/include/
unistd.h 115 extern int chroot(const char *);
  /development/ndk/platforms/android-9/arch-x86/symbols/
libc.so.functions.txt 260 chroot
  /development/ndk/platforms/android-9/include/
unistd.h 118 extern int chroot(const char *);
  /external/libpcap/lbl/
os-sunos4.h 60 int chroot(const char *);
  /external/tcpdump/lbl/
os-sunos4.h 60 int chroot(const char *);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
unistd.h 117 extern int chroot(const char *);

Completed in 9543 milliseconds

1 2 3 4 5 6 7