OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:chroot
(Results
1 - 25
of
135
) sorted by null
1
2
3
4
5
6
/external/clang/test/Analysis/
chroot.c
1
// RUN: %clang_cc1 -analyze -analyzer-checker=alpha.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-arm/syscalls/
chroot.S
5
ENTRY(
chroot
)
function
14
END(
chroot
)
/bionic/libc/arch-arm64/syscalls/
chroot.S
5
ENTRY(
chroot
)
function
14
END(
chroot
)
/bionic/libc/arch-mips/syscalls/
chroot.S
5
ENTRY(
chroot
)
function
19
END(
chroot
)
/bionic/libc/arch-x86_64/syscalls/
chroot.S
5
ENTRY(
chroot
)
function
15
END(
chroot
)
/external/toybox/toys/other/
chroot.c
0
/*
chroot
.c - Run command in new root directory.
5
USE_CHROOT(NEWTOY(
chroot
, "^<1", TOYFLAG_USR|TOYFLAG_SBIN))
7
config
CHROOT
8
bool "
chroot
"
11
usage:
chroot
NEWPATH [commandline...]
22
if (chdir(*toys.optargs) ||
chroot
(".")) perror_exit("%s", *toys.optargs);
/bionic/libc/arch-x86/syscalls/
chroot.S
5
ENTRY(
chroot
)
function
21
END(
chroot
)
/bionic/libc/arch-mips64/syscalls/
chroot.S
5
ENTRY(
chroot
)
function
25
END(
chroot
)
/external/vboot_reference/tests/
test_using_qemu.sh
13
# BUILD_RUN - path to build directory inside
chroot
14
# HOME - home directory inside
chroot
15
# QEMU_RUN - path to QEMU binary inside
chroot
16
# SYSROOT - path to root for target platform, outside
chroot
27
sudo
chroot
${SYSROOT} ${QEMU_RUN} -drop-ld-preload \
/external/e2fsprogs/debugfs/
ro_debug_cmds.ct
31
change_root_directory,
chroot
;
debug_cmds.ct
38
change_root_directory,
chroot
;
/external/ipsec-tools/src/racoon/
localconf.h
74
char *
chroot
; /*
chroot
path */
member in struct:localconf
/external/toybox/scripts/
runtest.sh
141
# Set up a
chroot
environment and run commands within it.
154
echo -n "Setup
chroot
"
166
chroot
tmpdir4chroot /test.sh
/external/openssh/
buildpkg.sh.in
367
# Use
chroot
to handle PKG_INSTALL_ROOT
370
chroot
="
chroot
\${PKG_INSTALL_ROOT}"
375
chroot
=echo
407
\$
chroot
${PATH_GROUPADD_PROG} \$sshdgid \$SSH_PRIVSEP_GROUP
420
\$
chroot
${PATH_USERADD_PROG} -c 'SSHD PrivSep User' -s /bin/false -g $SSH_PRIVSEP_USER \$sshduid $SSH_PRIVSEP_USER
421
\$
chroot
${PATH_PASSWD_PROG} -l $SSH_PRIVSEP_USER
/development/ndk/platforms/android-12/include/
unistd.h
119
extern int
chroot
(const char *);
/development/ndk/platforms/android-21/include/
unistd.h
118
extern int
chroot
(const char *);
/development/ndk/platforms/android-3/include/
unistd.h
112
extern int
chroot
(const char *);
/development/ndk/platforms/android-8/include/
unistd.h
116
extern int
chroot
(const char *);
/development/ndk/platforms/android-9/include/
unistd.h
119
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 *);
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
unistd.h
117
extern int
chroot
(const char *);
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
unistd.h
117
extern int
chroot
(const char *);
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
unistd.h
117
extern int
chroot
(const char *);
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
unistd.h
117
extern int
chroot
(const char *);
Completed in 4994 milliseconds
1
2
3
4
5
6