Home
last modified time | relevance | path

Searched refs:clone_flags (Results 1 – 11 of 11) sorted by relevance

/external/libchrome/sandbox/linux/services/
Dnamespace_sandbox.cc126 CHECK_EQ(0, launch_options.clone_flags); in LaunchProcessWithOptions()
128 int clone_flags = 0; in LaunchProcessWithOptions() local
136 clone_flags |= ns_type; in LaunchProcessWithOptions()
141 CHECK(clone_flags & CLONE_NEWUSER); in LaunchProcessWithOptions()
147 launch_options_copy.clone_flags = clone_flags; in LaunchProcessWithOptions()
159 SetEnvironForNamespaceType(environ, environ_name, clone_flags & flag); in LaunchProcessWithOptions()
Dcredentials.cc106 int clone_flags = CLONE_FS | LINUX_SIGCHLD; in ChrootToSafeEmptyDir() local
114 clone_flags |= CLONE_VM | CLONE_VFORK | CLONE_SETTLS; in ChrootToSafeEmptyDir()
120 pid = clone(ChrootToSelfFdinfo, stack, clone_flags, nullptr, nullptr, tls, in ChrootToSafeEmptyDir()
/external/strace/
Dclone.c92 if (!printflags(clone_flags, flags &~ CSIGNAL, NULL)) in SYS_FUNC()
138 printflags(clone_flags, tcp->u_arg[1], "CLONE_???"); in SYS_FUNC()
145 printflags(clone_flags, tcp->u_arg[0], "CLONE_???"); in SYS_FUNC()
DChangeLog-CVS3847 * process.c [LINUX] (clone_flags): Update with 2.5 flag bits.
/external/libchrome/sandbox/linux/seccomp-bpf-helpers/
Dsigsys_handlers.cc145 volatile uint64_t clone_flags = args.args[0]; in SIGSYSCloneFailure() local
148 addr = reinterpret_cast<volatile char*>(clone_flags & 0xFFFFFF); in SIGSYSCloneFailure()
152 addr = reinterpret_cast<volatile char*>(clone_flags & 0xFFF); in SIGSYSCloneFailure()
/external/strace/xlat/
Dclone_flags.h74 # error static const struct xlat clone_flags in mpers mode
79 const struct xlat clone_flags[] = { variable
DMakemodule.am1 …ask1.in xlat/cap_version.in xlat/clockflags.in xlat/clocknames.in xlat/clone_flags.in xlat/cpucloc…
2 …ap_mask1.h xlat/cap_version.h xlat/clockflags.h xlat/clocknames.h xlat/clone_flags.h xlat/cpuclock…
81 $(top_srcdir)/xlat/clone_flags.h: $(top_srcdir)/xlat/clone_flags.in $(top_srcdir)/xlat/gen.sh
/external/libchrome/base/process/
Dlaunch_posix.cc329 if (options.clone_flags) { in LaunchProcess()
334 !(options.clone_flags & (CLONE_SIGHAND | CLONE_THREAD | CLONE_VM))); in LaunchProcess()
338 !(options.clone_flags & in LaunchProcess()
343 RAW_CHECK((options.clone_flags & 0xff) == 0); in LaunchProcess()
345 pid = ForkWithFlags(options.clone_flags | SIGCHLD, nullptr, nullptr); in LaunchProcess()
Dlaunch.cc29 , clone_flags(0) in LaunchOptions()
Dlaunch.h142 int clone_flags; member
/external/minijail/
Dlibminijail.c1760 int clone_flags = CLONE_NEWPID | SIGCHLD; in minijail_run_internal() local
1762 clone_flags |= CLONE_NEWUSER; in minijail_run_internal()
1763 child_pid = syscall(SYS_clone, clone_flags, NULL); in minijail_run_internal()