Searched refs:clone_flags (Results 1 – 11 of 11) sorted by relevance
/external/libchrome/sandbox/linux/services/ |
D | namespace_sandbox.cc | 126 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()
|
D | credentials.cc | 106 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/ |
D | clone.c | 92 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()
|
D | ChangeLog-CVS | 3847 * process.c [LINUX] (clone_flags): Update with 2.5 flag bits.
|
/external/libchrome/sandbox/linux/seccomp-bpf-helpers/ |
D | sigsys_handlers.cc | 145 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/ |
D | clone_flags.h | 74 # error static const struct xlat clone_flags in mpers mode 79 const struct xlat clone_flags[] = { variable
|
D | Makemodule.am | 1 …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/ |
D | launch_posix.cc | 329 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()
|
D | launch.cc | 29 , clone_flags(0) in LaunchOptions()
|
D | launch.h | 142 int clone_flags; member
|
/external/minijail/ |
D | libminijail.c | 1760 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()
|