HomeSort by relevance Sort by last modified time
    Searched refs:clone_flags (Results 1 - 9 of 9) sorted by null

  /external/strace/
clone.c 40 #include "xlat/clone_flags.h"
92 if (!printflags(clone_flags, flags &~ CSIGNAL, NULL))
138 printflags(clone_flags, tcp->u_arg[1], "CLONE_???");
145 printflags(clone_flags, tcp->u_arg[0], "CLONE_???");
  /external/libchrome/base/process/
launch.cc 29 , clone_flags(0)
launch.h 139 // Unlike in clone, clone_flags may not contain a custom termination signal
142 int clone_flags; member in struct:base::LaunchOptions
launch_posix.cc 329 if (options.clone_flags) {
334 !(options.clone_flags & (CLONE_SIGHAND | CLONE_THREAD | CLONE_VM)));
338 !(options.clone_flags &
343 RAW_CHECK((options.clone_flags & 0xff) == 0);
345 pid = ForkWithFlags(options.clone_flags | SIGCHLD, nullptr, nullptr);
  /external/libchrome/sandbox/linux/services/
namespace_sandbox.cc 126 CHECK_EQ(0, launch_options.clone_flags);
128 int clone_flags = 0; local
136 clone_flags |= ns_type;
141 CHECK(clone_flags & CLONE_NEWUSER);
147 launch_options_copy.clone_flags = clone_flags;
159 SetEnvironForNamespaceType(environ, environ_name, clone_flags & flag);
credentials.cc 106 int clone_flags = CLONE_FS | LINUX_SIGCHLD; local
114 clone_flags |= CLONE_VM | CLONE_VFORK | CLONE_SETTLS;
120 pid = clone(ChrootToSelfFdinfo, stack, clone_flags, nullptr, nullptr, tls,
  /external/strace/xlat/
clone_flags.h 1 /* Generated by ./xlat/gen.sh from ./xlat/clone_flags.in; do not edit. */
74 # error static const struct xlat clone_flags in mpers mode
79 const struct xlat clone_flags[] = { variable in typeref:struct:xlat
  /external/libchrome/sandbox/linux/seccomp-bpf-helpers/
sigsys_handlers.cc 145 volatile uint64_t clone_flags = args.args[0]; local
148 addr = reinterpret_cast<volatile char*>(clone_flags & 0xFFFFFF);
152 addr = reinterpret_cast<volatile char*>(clone_flags & 0xFFF);
  /external/minijail/
libminijail.c 1760 int clone_flags = CLONE_NEWPID | SIGCHLD; local
    [all...]

Completed in 671 milliseconds