/aosp_15_r20/external/ltp/testcases/kernel/syscalls/getpgid/ |
H A D | getpgid01.c | 18 int pgid; in get_init_pgid() local 26 pid_t pid_1, child_pid, pgid; in run() local
|
/aosp_15_r20/external/ltp/testcases/kernel/syscalls/setpgid/ |
H A D | setpgid02.c | 24 static pid_t pgid, pid, ppid, inval_pgid; variable 29 pid_t *pgid; member
|
H A D | setpgid01.c | 80 pid_t pgid, pid; in setpgid_test1() local 109 pid_t pgid, pid; in setpgid_test2() local
|
/aosp_15_r20/external/rust/android-crates-io/crates/rustix/src/backend/linux_raw/process/ |
D | syscalls.rs | 131 let pgid = ret_c_int(syscall_readonly!(__NR_getpgid, c_int(Pid::as_raw(pid))))?; in getpgid() localVariable 153 let pgid = ret_c_int_infallible(syscall_readonly!(__NR_getpgrp)); in getpgrp() localVariable 161 let pgid = ret_c_int_infallible(syscall_readonly!(__NR_getpgid, c_uint(0))); in getpgrp() localVariable
|
/aosp_15_r20/device/google/cuttlefish/host/commands/stop/ |
D | main.cc | 88 pid_t pgid = getpgid(static_cast<pid_t>(pid)); in GetCandidateProcessGroups() local 105 for (auto pgid: process_groups) { in FallBackStop() local
|
/aosp_15_r20/system/core/libprocessgroup/ |
H A D | processgroup.cpp | 422 pid_t pgid = getpgid(pid); in sendSignalToProcessGroup() local 433 pid_t pgid = getpgid(*it); in sendSignalToProcessGroup() local 446 for (const auto pgid : pgids) { in sendSignalToProcessGroup() local
|
/aosp_15_r20/art/runtime/ |
H A D | exec_utils_test.cc | 351 pid_t pgid = getpgid(pid); in TEST_P() local 372 pid_t pgid = getpgid(pid); in TEST_P() local
|
/aosp_15_r20/external/rust/android-crates-io/crates/rustix/src/backend/libc/process/ |
D | syscalls.rs | 171 let pgid = ret_pid_t(c::getpgid(Pid::as_raw(pid) as _))?; in getpgid() localVariable 187 let pgid = c::getpgrp(); in getpgrp() localVariable
|
/aosp_15_r20/external/musl/src/unistd/ |
H A D | setpgid.c | 4 int setpgid(pid_t pid, pid_t pgid) in setpgid()
|
/aosp_15_r20/external/trusty/musl/src/unistd/ |
D | setpgid.c | 4 int setpgid(pid_t pid, pid_t pgid) in setpgid()
|
/aosp_15_r20/external/musl/src/signal/ |
H A D | killpg.c | 4 int killpg(pid_t pgid, int sig) in killpg()
|
/aosp_15_r20/external/trusty/musl/src/signal/ |
D | killpg.c | 4 int killpg(pid_t pgid, int sig) in killpg()
|
/aosp_15_r20/external/ltp/lib/ |
H A D | tst_safe_macros.c | 43 int safe_setpgid(const char *file, const int lineno, pid_t pid, pid_t pgid) in safe_setpgid() 63 pid_t pgid; in safe_getpgid() local
|
/aosp_15_r20/external/ltp/testcases/kernel/containers/pidns/ |
H A D | pidns05.c | 54 pid_t parentpid, pgid, pgid2; in find_cinit_pids() local
|
/aosp_15_r20/external/libwebsockets/lib/plat/unix/ |
H A D | unix-caps.c | 52 lws_plat_user_colon_group_to_ids(const char *u_colon_g, uid_t *puid, gid_t *pgid)
|
/aosp_15_r20/platform_testing/libraries/sts-common-util/host-side/src/com/android/sts/common/tradefed/testtype/ |
H A D | SecurityTestCase.java | 417 String pgid = tokens[2]; in logAndTerminateTestProcesses() local
|
/aosp_15_r20/external/ltp/testcases/kernel/hotplug/memory_hotplug/ |
H A D | segment.c | 883 int pgid, i; in segment_location() local
|
/aosp_15_r20/device/google/cuttlefish/common/libs/utils/ |
D | subprocess.cpp | 264 auto pgid = getpgid(pid); in KillSubprocess() local
|
/aosp_15_r20/external/python/cpython2/Modules/ |
D | posixmodule.c | 4241 pid_t pid, pgid; in posix_getpgid() local 4387 pid_t pgid; in posix_killpg() local 6568 pid_t pgid; in posix_tcgetpgrp() local 6588 pid_t pgid; in posix_tcsetpgrp() local
|
/aosp_15_r20/external/python/cpython3/Modules/ |
D | posixmodule.c | 5995 pid_t pgid = PyLong_AsPid(setpgroup); in parse_posix_spawn_flags() local 7827 pid_t pgid = getpgid(pid); in os_getpgid_impl() local 8089 os_killpg_impl(PyObject *module, pid_t pgid, int signal) in os_killpg_impl() 9185 pid_t pgid = tcgetpgrp(fd); in os_tcgetpgrp_impl() local 9205 os_tcsetpgrp_impl(PyObject *module, int fd, pid_t pgid) in os_tcsetpgrp_impl()
|
/aosp_15_r20/external/ltp/include/ |
H A D | tst_safe_macros.h | 160 #define SAFE_SETPGID(pid, pgid) \ argument
|
/aosp_15_r20/libcore/luni/src/main/java/android/system/ |
H A D | Os.java | 713 …public static void setpgid(int pid, int pgid) throws ErrnoException { Libcore.os.setpgid(pid, pgid… in setpgid()
|
/aosp_15_r20/libcore/luni/src/main/java/libcore/io/ |
H A D | ForwardingOs.java | 749 public void setpgid(int pid, int pgid) throws ErrnoException { os.setpgid(pid, pgid); } in setpgid()
|
H A D | Os.java | 615 public void setpgid(int pid, int pgid) throws ErrnoException; in setpgid()
|
H A D | Linux.java | 284 public native void setpgid(int pid, int pgid) throws ErrnoException; in setpgid()
|