Home
last modified time | relevance | path

Searched refs:pid (Results 1376 - 1400 of 1736) sorted by relevance

1...<<51525354555657585960>>...70

/third_party/libfuse/lib/
H A Dfuse_lowlevel.c931 arg.lk.pid = lock->l_pid;
1646 flock->l_pid = fl->pid;
2682 "unique: %llu, opcode: %s (%i), nodeid: %llu, insize: %zu, pid: %u\n",
2685 (unsigned long long) in->nodeid, buf->size, in->pid);
2706 req->ctx.pid = in->pid;
3217 unsigned long pid = req->ctx.pid; local
3220 sprintf(path, "/proc/%lu/task/%lu/status", pid, pid);
[all...]
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/
H A Dmod.rs2640 pub fn ptrace(request: ::c_int, pid: ::pid_t, addr: *mut ::c_void, data: ::c_int) -> ::c_int; in ptrace()
2779 pub fn sched_rr_get_interval(pid: ::pid_t, t: *mut ::timespec) -> ::c_int; in sched_rr_get_interval()
2780 pub fn sched_setparam(pid: ::pid_t, param: *const ::sched_param) -> ::c_int; in sched_setparam()
2781 pub fn sched_getparam(pid: ::pid_t, param: *mut ::sched_param) -> ::c_int; in sched_getparam()
2782 pub fn sched_getscheduler(pid: ::pid_t) -> ::c_int; in sched_getscheduler()
2784 pid: ::pid_t, in sched_setscheduler()
2798 pid: *mut ::pid_t, in posix_spawn()
2806 pid: *mut ::pid_t, in posix_spawnp()
3049 pub fn kinfo_getvmmap(pid: ::pid_t, cntp: *mut ::size_t) -> *mut kinfo_vmentry; in kinfo_getvmmap()
/third_party/rust/crates/libc/src/unix/nto/
H A Dmod.rs2665 pub fn clock_getcpuclockid(pid: ::pid_t, clk_id: *mut ::clockid_t) -> ::c_int; in clock_getcpuclockid()
2709 pid: ::pid_t, in wait4()
2823 pub fn sched_rr_get_interval(pid: ::pid_t, tp: *mut ::timespec) -> ::c_int; in sched_rr_get_interval()
2826 pub fn sched_setparam(pid: ::pid_t, param: *const ::sched_param) -> ::c_int; in sched_setparam()
2835 pub fn sched_getparam(pid: ::pid_t, param: *mut ::sched_param) -> ::c_int; in sched_getparam()
2864 pub fn sched_getscheduler(pid: ::pid_t) -> ::c_int; in sched_getscheduler()
2887 pid: ::pid_t, in sched_setscheduler()
2968 pid: *mut ::pid_t, in posix_spawn()
2976 pid: *mut ::pid_t, in posix_spawnp()
/third_party/libbpf/src/
H A Dbpf.c777 attr.link_create.uprobe_multi.pid = OPTS_GET(opts, uprobe_multi.pid, 0); in bpf_link_create()
1233 int bpf_task_fd_query(int pid, int fd, __u32 flags, char *buf, __u32 *buf_len, in bpf_task_fd_query() argument
1242 attr.task_fd_query.pid = pid; in bpf_task_fd_query()
/third_party/rust/crates/libc/src/unix/
H A Dmod.rs901 pub fn getpgid(pid: pid_t) -> pid_t; in getpgid()
921 pub fn setpgid(pid: pid_t, pgid: pid_t) -> ::c_int; in setpgid()
956 pub fn waitpid(pid: pid_t, status: *mut ::c_int, options: ::c_int) -> pid_t; in waitpid()
981 pub fn kill(pid: pid_t, sig: ::c_int) -> ::c_int; in kill()
1436 pub fn getsid(pid: pid_t) -> pid_t; in getsid()
/third_party/toybox/toys/pending/
H A Ddhcp.c530 pid_t pid; in run_script() local
547 pid = vfork(); in run_script()
548 if (pid < 0) { in run_script()
552 if (!pid) { in run_script()
558 waitpid(pid, NULL,0); in run_script()
/third_party/rust/crates/libc/src/unix/linux_like/linux/
H A Dmod.rs445 pub pid: ::pid_t,
3786 pid: ::pid_t, in process_vm_readv()
3794 pid: ::pid_t, in process_vm_writev()
4114 pub fn sched_getaffinity(pid: ::pid_t, cpusetsize: ::size_t, cpuset: *mut cpu_set_t) in sched_getaffinity()
4117 pid: ::pid_t, in sched_setaffinity()
4150 pub fn sched_rr_get_interval(pid: ::pid_t, tp: *mut ::timespec) -> ::c_int; in sched_rr_get_interval()
4153 pub fn sched_setparam(pid: ::pid_t, param: *const ::sched_param) -> ::c_int; in sched_setparam()
4171 pub fn sched_getparam(pid: ::pid_t, param: *mut ::sched_param) -> ::c_int; in sched_getparam()
4203 pub fn sched_getscheduler(pid: ::pid_t) -> ::c_int; in sched_getscheduler()
4229 pid in sched_setscheduler()
[all...]
/third_party/libuv/src/win/
H A Dpipe.c1731 DWORD* pid = &handle->pipe.conn.ipc_remote_pid; in uv__pipe_get_ipc_remote_pid() local
1734 * the remote end pid may not yet be set. If so, do it here. in uv__pipe_get_ipc_remote_pid()
1736 if (*pid == 0) { in uv__pipe_get_ipc_remote_pid()
1737 GetNamedPipeClientProcessId(handle->handle, pid); in uv__pipe_get_ipc_remote_pid()
1738 if (*pid == GetCurrentProcessId()) { in uv__pipe_get_ipc_remote_pid()
1739 GetNamedPipeServerProcessId(handle->handle, pid); in uv__pipe_get_ipc_remote_pid()
1743 return *pid; in uv__pipe_get_ipc_remote_pid()
H A Dinternal.h101 int pid,
/third_party/python/Lib/test/
H A Dtest_mailbox.py753 pid = os.getpid()
774 self.assertEqual(int(groups[2]), pid,
776 (groups[2], pid))
1078 pid = os.fork()
1079 if pid == 0:
1101 support.wait_process(pid, exitcode=0)
2161 pid = self._counter
2163 filename = ".".join((str(t), str(pid), "myhostname", "mydomain"))
/third_party/rust/crates/libc/src/unix/solarish/
H A Dmod.rs1054 pid: ::pid_t,
1068 pid: ::pid_t,
1098 sigcld.pid in si_pid()
2991 pub fn sched_getparam(pid: ::pid_t, param: *mut sched_param) -> ::c_int; in sched_getparam()
2992 pub fn sched_setparam(pid: ::pid_t, param: *const sched_param) -> ::c_int; in sched_setparam()
2993 pub fn sched_getscheduler(pid: ::pid_t) -> ::c_int; in sched_getscheduler()
2995 pid: ::pid_t, in sched_setscheduler()
3090 pub fn ucred_get(pid: ::pid_t) -> *mut ucred_t; in ucred_get()
/third_party/alsa-lib/include/sound/uapi/
H A Dasequencer.h379 int pid; /* RO: pid[user] */ member
/third_party/libunwind/libunwind/include/tdep-arm/
H A Dlibunwind_i.h306 extern int tdep_get_elf_image (struct elf_image *ei, pid_t pid, unw_word_t ip,
/third_party/libunwind/libunwind/include/tdep-hppa/
H A Dlibunwind_i.h267 extern int tdep_get_elf_image (struct elf_image *ei, pid_t pid, unw_word_t ip,
/third_party/libunwind/libunwind/include/tdep-x86_64/
H A Dlibunwind_i.h277 extern int tdep_get_elf_image (struct elf_image *ei, pid_t pid, unw_word_t ip,
/third_party/libunwind/libunwind/include/tdep-x86/
H A Dlibunwind_i.h281 extern int tdep_get_elf_image (struct elf_image *ei, pid_t pid, unw_word_t ip,
/third_party/libunwind/libunwind/include/tdep-riscv/
H A Dlibunwind_i.h294 extern int tdep_get_elf_image (struct elf_image *ei, pid_t pid, unw_word_t ip,
/third_party/libunwind/libunwind/include/tdep-s390x/
H A Dlibunwind_i.h250 extern int tdep_get_elf_image (struct elf_image *ei, pid_t pid, unw_word_t ip,
/third_party/libunwind/libunwind/include/tdep-sh/
H A Dlibunwind_i.h268 extern int tdep_get_elf_image (struct elf_image *ei, pid_t pid, unw_word_t ip,
/third_party/libunwind/libunwind/include/tdep-aarch64/
H A Dlibunwind_i.h318 extern int tdep_get_elf_image (struct elf_image *ei, pid_t pid, unw_word_t ip,
/third_party/libunwind/libunwind/include/tdep-ppc32/
H A Dlibunwind_i.h300 extern int tdep_get_elf_image (struct elf_image *ei, pid_t pid, unw_word_t ip,
/third_party/node/deps/v8/tools/clusterfuzz/foozzie/
H A Dv8_foozzie_test.py200 return v8_commands.Output(exit_code=exit_code, stdout=stdout, pid=0)
/third_party/node/test/pummel/
H A Dtest-policy-integrity-dep.js177 process.kill(process.pid, 'SIGKILL');
/third_party/node/src/
H A Dnode_report_utils.cc176 writer->json_keyvalue("pid", handle->process.pid); in WalkHandle()
/third_party/ntfs-3g/include/fuse-lite/
H A Dfuse_lowlevel.h102 pid_t pid; member
762 * For POSIX threads (NPTL) there's a 1-1 relation between pid and

Completed in 73 milliseconds

1...<<51525354555657585960>>...70