| /third_party/rust/crates/nix/src/sys/ptrace/ |
| D | linux.rs | 193 pid: Pid, in ptrace_peek() 233 pub fn setregs(pid: Pid, regs: user_regs_struct) -> Result<()> { in setregs() 265 pid: Pid, in ptrace_other() 279 pub fn setoptions(pid: Pid, options: Options) -> Result<()> { in setoptions() 302 pub fn setsiginfo(pid: Pid, sig: &siginfo_t) -> Result<()> { in setsiginfo() 338 pub fn syscall<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()> { in syscall() 359 pub fn sysemu<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()> { in sysemu() 391 pub fn seize(pid: Pid, options: Options) -> Result<()> { in seize() 407 pub fn detach<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()> { in detach() 422 pub fn cont<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()> { in cont() [all …]
|
| D | bsd.rs | 65 pid: Pid, in ptrace_other() 102 pub fn detach<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()> { in detach() 116 pub fn cont<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()> { in cont() 167 pub fn step<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()> { in step() 181 pub fn read(pid: Pid, addr: AddressType) -> Result<c_int> { in read() 193 pub fn write(pid: Pid, addr: AddressType, data: c_int) -> Result<()> { in write()
|
| /third_party/rust/crates/rustix/src/backend/libc/process/ |
| D | syscalls.rs | 152 pub(crate) fn getpgid(pid: Option<Pid>) -> io::Result<Pid> { in getpgid() 178 pub(crate) fn sched_getaffinity(pid: Option<Pid>, cpuset: &mut RawCpuSet) -> io::Result<()> { in sched_getaffinity() 195 pub(crate) fn sched_setaffinity(pid: Option<Pid>, cpuset: &RawCpuSet) -> io::Result<()> { in sched_setaffinity() 278 pub(crate) fn setpriority_pgrp(pgid: Option<Pid>, priority: i32) -> io::Result<()> { in setpriority_pgrp() 290 pub(crate) fn setpriority_process(pid: Option<Pid>, priority: i32) -> io::Result<()> { in setpriority_process() 319 pub(crate) fn prlimit(pid: Option<Pid>, limit: Resource, new: Rlimit) -> io::Result<Rlimit> { in prlimit() 366 pub(crate) fn wait(waitopts: WaitOptions) -> io::Result<Option<(Pid, WaitStatus)>> { in wait() 373 pid: Option<Pid>, in waitpid() 375 ) -> io::Result<Option<(Pid, WaitStatus)>> { in waitpid() 384 ) -> io::Result<Option<(Pid, WaitStatus)>> { in _waitpid() [all …]
|
| /third_party/rust/crates/rustix/src/backend/linux_raw/process/ |
| D | syscalls.rs | 104 pub(crate) fn getpgid(pid: Option<Pid>) -> io::Result<Pid> { in getpgid() 194 pub(crate) fn sched_getaffinity(pid: Option<Pid>, cpuset: &mut RawCpuSet) -> io::Result<()> { in sched_getaffinity() 214 pub(crate) fn sched_setaffinity(pid: Option<Pid>, cpuset: &RawCpuSet) -> io::Result<()> { in sched_setaffinity() 307 pub(crate) fn setpriority_pgrp(pgid: Option<Pid>, priority: i32) -> io::Result<()> { in setpriority_pgrp() 319 pub(crate) fn setpriority_process(pid: Option<Pid>, priority: i32) -> io::Result<()> { in setpriority_process() 406 pub(crate) fn prlimit(pid: Option<Pid>, limit: Resource, new: Rlimit) -> io::Result<Rlimit> { in prlimit() 484 pub(crate) fn wait(waitopts: WaitOptions) -> io::Result<Option<(Pid, WaitStatus)>> { in wait() 490 pid: Option<Pid>, in waitpid() 492 ) -> io::Result<Option<(Pid, WaitStatus)>> { in waitpid() 500 ) -> io::Result<Option<(Pid, WaitStatus)>> { in _waitpid() [all …]
|
| /third_party/rust/crates/rustix/src/process/ |
| D | kill.rs | 16 pub fn kill_process(pid: Pid, sig: Signal) -> io::Result<()> { in kill_process() 34 pub fn kill_process_group(pid: Pid, sig: Signal) -> io::Result<()> { in kill_process_group()
|
| D | priority.rs | 109 pub fn setpriority_pgrp(pgid: Option<Pid>, priority: i32) -> io::Result<()> { in setpriority_pgrp() 129 pub fn setpriority_process(pid: Option<Pid>, priority: i32) -> io::Result<()> { in setpriority_process()
|
| D | id.rs | 43 pub struct Pid(RawNonZeroPid); struct 105 impl Pid { impl 279 pub fn getpgid(pid: Option<Pid>) -> io::Result<Pid> { in getpgid()
|
| D | wait.rs | 106 pub fn waitpid(pid: Option<Pid>, waitopts: WaitOptions) -> io::Result<Option<WaitStatus>> { in waitpid() 127 pub fn wait(waitopts: WaitOptions) -> io::Result<Option<(Pid, WaitStatus)>> { in wait()
|
| D | rlimit.rs | 51 pub fn prlimit(pid: Option<Pid>, resource: Resource, new: Rlimit) -> io::Result<Rlimit> { in prlimit()
|
| D | sched.rs | 91 pub fn sched_setaffinity(pid: Option<Pid>, cpuset: &CpuSet) -> io::Result<()> { in sched_setaffinity()
|
| D | procctl.rs | 24 Pid = 0, enumerator
|
| /third_party/rust/crates/nix/test/sys/ |
| D | test_wait.rs | 163 fn ptrace_wait_parent(child: Pid) { in ptrace_wait_parent() 195 fn ptrace_waitid_parent(child: Pid) { in ptrace_waitid_parent()
|
| /third_party/rust/crates/rustix/src/termios/ |
| D | tc.rs | 56 pub fn tcgetpgrp<Fd: AsFd>(fd: Fd) -> io::Result<Pid> { in tcgetpgrp() 180 pub fn tcgetsid<Fd: AsFd>(fd: Fd) -> io::Result<Pid> { in tcgetsid()
|
| /third_party/rust/crates/nix/src/sys/ |
| D | wait.rs | 135 pub fn pid(&self) -> Option<Pid> { in pid() 212 pub fn from_raw(pid: Pid, status: i32) -> Result<WaitStatus> { in from_raw() 351 Pid(Pid), enumerator
|
| /third_party/rust/crates/rustix/src/backend/libc/termios/ |
| D | syscalls.rs | 31 pub(crate) fn tcgetpgrp(fd: BorrowedFd<'_>) -> io::Result<Pid> { in tcgetpgrp() 80 pub(crate) fn tcgetsid(fd: BorrowedFd) -> io::Result<Pid> { in tcgetsid()
|
| /third_party/rust/crates/rustix/src/backend/linux_raw/termios/ |
| D | syscalls.rs | 45 pub(crate) fn tcgetpgrp(fd: BorrowedFd<'_>) -> io::Result<Pid> { in tcgetpgrp() 115 pub(crate) fn tcgetsid(fd: BorrowedFd) -> io::Result<Pid> { in tcgetsid()
|
| /third_party/rust/crates/nix/src/ |
| D | sched.rs | 103 ) -> Result<Pid> { in clone() 262 pub fn sched_setaffinity(pid: Pid, cpuset: &CpuSet) -> Result<()> { in sched_setaffinity()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
| D | Program.h | 50 ProcessId Pid; member
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
| D | Program.h | 46 procid_t Pid; /// The process identifier. member
|
| /third_party/json/tests/thirdparty/Fuzzer/ |
| D | FuzzerUtilDarwin.cpp | 97 pid_t Pid; in ExecuteCommand() local
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
| D | CodeGenCoverage.cpp | 92 std::string Pid = in emit() local
|
| /third_party/rust/crates/rustix/src/ |
| D | runtime.rs | 61 pub unsafe fn set_tid_address(data: *mut c_void) -> Pid { in set_tid_address()
|
| /third_party/rust/crates/rustix/src/backend/linux_raw/runtime/ |
| D | syscalls.rs | 91 pub(crate) unsafe fn set_tid_address(data: *mut c::c_void) -> Pid { in set_tid_address()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/PerfJITEvents/ |
| D | PerfJITEventListener.cpp | 84 pid_t Pid; member in __anon31ad5dc90111::PerfJITEventListener 126 uint32_t Pid; member 141 uint32_t Pid; member
|
| /third_party/rust/crates/rustix/src/thread/ |
| D | prctl.rs | 911 pub fn core_scheduling_cookie(pid: Pid, scope: CoreSchedulingScope) -> io::Result<u64> { in core_scheduling_cookie() 934 pub fn create_core_scheduling_cookie(pid: Pid, scope: CoreSchedulingScope) -> io::Result<()> { in create_core_scheduling_cookie() 956 pub fn push_core_scheduling_cookie(pid: Pid, scope: CoreSchedulingScope) -> io::Result<()> { in push_core_scheduling_cookie() 978 pub fn pull_core_scheduling_cookie(pid: Pid, scope: CoreSchedulingScope) -> io::Result<()> { in pull_core_scheduling_cookie()
|