/openbmc/qemu/gdbstub/ |
H A D | internals.h | 34 uint32_t pid; member 130 GDBProcess *gdb_get_process(uint32_t pid); 178 bool gdb_handle_set_thread_user(uint32_t pid, uint32_t tid); /* user */ 179 bool gdb_handle_detach_user(uint32_t pid); /* user */
|
/openbmc/sdbusplus/tools/sdbusplus/templates/ |
H A D | event.cpp.mako | 34 // Add common source and pid info. 40 source_info["PID"] = pid; 77 pid = getpid(); 85 pid = self.at("PID");
|
/openbmc/linux/kernel/trace/ |
H A D | trace_functions_graph.c | 358 trace_find_cmdline(pid, comm); in print_graph_proc() 360 sprintf(pid_str, "%d", pid); in print_graph_proc() 399 if (*last_pid == pid) in verif_pid() 403 *last_pid = pid; in verif_pid() 419 print_graph_proc(s, pid); in verif_pid() 483 if (curr->ent.pid != next->ent.pid || in get_return_for_leaf() 543 print_graph_proc(s, pid); in print_graph_irq() 733 cpu, iter->ent->pid, flags); in print_graph_entry_leaf() 970 pid_t pid = ent->pid; in print_graph_return() local 1035 cpu, pid, flags); in print_graph_return() [all …]
|
H A D | blktrace.c | 102 t->pid = pid; in trace_note() 186 pid_t pid) in act_log_check() argument 192 if (bt->pid && pid != bt->pid) in act_log_check() 226 pid_t pid; in __blk_add_trace() local 248 pid = tsk->pid; in __blk_add_trace() 291 t->pid = pid; in __blk_add_trace() 608 bt->pid = buts->pid; in do_blk_trace_setup() 674 .pid = cbuts.pid, in compat_blk_trace_setup() 1346 trace_find_cmdline(ent->pid, cmd); in blk_log_generic() 1672 static BLK_TRACE_DEVICE_ATTR(pid); [all …]
|
/openbmc/qemu/tests/unit/ |
H A D | test-qga.c | 15 GPid pid; member 92 kill(fixture->pid, SIGTERM); in fixture_tear_down() 97 g_spawn_close_pid(fixture->pid); in fixture_tear_down() 820 int64_t pid, exitcode; in test_qga_guest_exec() local 830 pid = qdict_get_int(val, "pid"); in test_qga_guest_exec() 831 g_assert_cmpint(pid, >, 0); in test_qga_guest_exec() 881 int64_t pid, exitcode; in test_qga_guest_exec_separated() local 892 pid = qdict_get_int(val, "pid"); in test_qga_guest_exec_separated() 893 g_assert_cmpint(pid, >, 0); in test_qga_guest_exec_separated() 922 int64_t pid, exitcode; in test_qga_guest_exec_merged() local [all …]
|
/openbmc/linux/Documentation/trace/postprocess/ |
H A D | trace-vmscan-postprocess.pl | 230 my $pid = $_[0]; 233 if (open(STAT, "/proc/$pid/stat")) { 246 my $pid = $_[0]; 249 if ($pid == 0) { 256 return "$1-$pid"; 286 my $pid = $2; 289 $process = $last_procmap{$pid}; 290 $process_pid = "$process-$pid"; 292 $last_procmap{$pid} = $process; 295 $statline = read_statline($pid); [all …]
|
/openbmc/linux/tools/testing/selftests/mm/ |
H A D | mdwe_test.c | 41 pid_t pid; in FIXTURE() local 88 self->pid = fork(); in FIXTURE_SETUP() 89 ASSERT_GE(self->pid, 0) { in FIXTURE_SETUP() 93 if (self->pid > 0) { in FIXTURE_SETUP() 94 ret = waitpid(self->pid, &status, 0); in FIXTURE_SETUP()
|
/openbmc/linux/kernel/sched/ |
H A D | core_sched.c | 129 int sched_core_share_pid(unsigned int cmd, pid_t pid, enum pid_type type, in sched_core_share_pid() argument 134 struct pid *grp; in sched_core_share_pid() 144 if (type > PIDTYPE_PGID || cmd >= PR_SCHED_CORE_MAX || pid < 0 || in sched_core_share_pid() 149 if (pid == 0) { in sched_core_share_pid() 152 task = find_task_by_vpid(pid); in sched_core_share_pid()
|
/openbmc/linux/samples/bpf/ |
H A D | test_lru_dist.c | 218 static int sched_next_online(int pid, int next_to_try) in sched_next_online() argument 228 if (!sched_setaffinity(pid, sizeof(cpuset), &cpuset)) in sched_next_online() 239 pid_t pid[tasks]; in run_parallel() local 243 pid[i] = fork(); in run_parallel() 244 if (pid[i] == 0) { in run_parallel() 248 } else if (pid[i] == -1) { in run_parallel() 256 next_sched_cpu = sched_next_online(pid[i], next_sched_cpu); in run_parallel() 261 assert(waitpid(pid[i], &status, 0) == pid[i]); in run_parallel()
|
/openbmc/linux/tools/testing/selftests/arm64/fp/ |
H A D | fp-stress.c | 33 pid_t pid; member 70 child->pid = fork(); in child_start() 71 if (child->pid == -1) in child_start() 75 if (!child->pid) { in child_start() 223 kill(child->pid, SIGUSR2); in child_tickle() 229 kill(child->pid, SIGTERM); in child_stop() 240 ret = waitpid(child->pid, &status, 0); in child_cleanup() 246 child->pid, strerror(errno), in child_cleanup() 275 if (children[i].pid == info->si_pid) { in handle_child_signal()
|
/openbmc/qemu/hw/usb/ |
H A D | hcd-dwc2.c | 238 pid = get_field(hctsiz, TSIZ_SC_MC_PID); in dwc2_handle_packet() 260 pid = USB_TOKEN_SETUP; in dwc2_handle_packet() 273 if (pid != USB_TOKEN_IN) { in dwc2_handle_packet() 314 p->pid = pid; in dwc2_handle_packet() 329 if (pid == USB_TOKEN_IN) { in dwc2_handle_packet() 341 if (pid == USB_TOKEN_IN) { in dwc2_handle_packet() 395 p->pid = pid; in dwc2_handle_packet() 510 ep = usb_ep_get(dev, p->pid, p->epnum); in dwc2_async_packet_complete() 639 pid = USB_TOKEN_SETUP; in dwc2_enable_chan() 644 ep = usb_ep_get(dev, pid, epnum); in dwc2_enable_chan() [all …]
|
/openbmc/linux/drivers/media/test-drivers/vidtv/ |
H A D | vidtv_psi.c | 257 .pid = args->pid, in table_section_crc32_write_into() 669 .pid = args->pid, in vidtv_psi_desc_write_into() 791 .pid = args->pid, in vidtv_psi_table_header_write_into() 997 .pid = VIDTV_PAT_PID, in vidtv_psi_pat_write_into() 1004 .pid = VIDTV_PAT_PID, in vidtv_psi_pat_write_into() 1200 .pid = args->pid, in vidtv_psi_pmt_write_into() 1209 .pid = args->pid, in vidtv_psi_pmt_write_into() 1218 .pid = args->pid, in vidtv_psi_pmt_write_into() 1223 .pid = args->pid, in vidtv_psi_pmt_write_into() 1894 .pid = VIDTV_EIT_PID, in vidtv_psi_eit_write_into() [all …]
|
/openbmc/linux/tools/perf/util/ |
H A D | jitdump.h | 43 uint32_t pid; /* JIT process id */ member 68 uint32_t pid; member 83 uint32_t pid; member
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | test_verify_pkcs7_sig.c | 50 __u32 pid; in BPF_PROG() local 54 pid = bpf_get_current_pid_tgid() >> 32; in BPF_PROG() 55 if (pid != monitored_pid) in BPF_PROG()
|
H A D | htab_update.c | 16 int pid = 0; variable 24 if ((bpf_get_current_pid_tgid() >> 32) != pid) in lookup_elem_raw()
|
H A D | profiler.inc.h | 174 if (arr_struct->array[i].meta.pid == spid) in get_var_spid_index() 338 u32 pid, void* payload) in populate_var_metadata() argument 344 metadata->pid = pid; in populate_var_metadata() 414 if (arr_struct->array[i].meta.pid == 0) { in trace_var_sys_kill() 563 u32 pid = get_userspace_pid(); in BPF_KPROBE() local 617 int pid = ctx->args[0]; in tracepoint__syscalls__sys_enter_kill() local 619 int ret = trace_var_sys_kill(ctx, pid, sig); in tracepoint__syscalls__sys_enter_kill() 714 u32 pid = get_userspace_pid(); in raw_tracepoint__sched_process_exec() local 806 u32 pid = get_userspace_pid(); in kprobe_ret__do_filp_open() local 861 u32 pid = get_userspace_pid(); in BPF_KPROBE() local [all …]
|
H A D | exhandler_kern.c | 21 int pid = bpf_get_current_pid_tgid() >> 32; in BPF_PROG() local 25 if (test_pid != pid) in BPF_PROG()
|
H A D | test_prog_array_init.c | 32 pid_t pid = bpf_get_current_pid_tgid() >> 32; in entry() local 34 if (pid != my_pid) in entry()
|
/openbmc/openbmc/meta-quanta/meta-olympus-nuvoton/recipes-phosphor/fans/ |
H A D | phosphor-pid-control_%.bbappend | 5 SRC_URI:append:olympus-nuvoton = " file://phosphor-pid-control.service" 13 SYSTEMD_SERVICE:${PN}:append:olympus-nuvoton = " phosphor-pid-control.service" 25 install -m 0644 ${UNPACKDIR}/phosphor-pid-control.service \
|
/openbmc/u-boot/test/py/ |
H A D | u_boot_spawn.py | 50 (self.pid, self.fd) = pty.fork() 51 if self.pid == 0: 84 os.kill(self.pid, sig) 99 w = os.waitpid(self.pid, os.WNOHANG)
|
/openbmc/linux/tools/perf/tests/shell/ |
H A D | test_intel_pt.sh | 180 pid = $3 183 print "pid " pid " cpu " cpu " fd " fd " : " $0 185 pid_array[fd] = pid 225 pid = pid_array[fd] 226 if (pid != -1) { 227 if (pid in pids) { 228 print "More than 1 mmap for PID " pid 231 pids[pid] = 1 327 .pid = getpid(), 360 .pid = getpid(),
|
/openbmc/linux/arch/x86/um/shared/sysdep/ |
H A D | tls.h | 32 extern int os_set_thread_area(user_desc_t *info, int pid); 33 extern int os_get_thread_area(user_desc_t *info, int pid);
|
/openbmc/u-boot/drivers/usb/host/ |
H A D | dwc2.c | 845 u8 *pid, int in, void *buffer, int num_packets, in transfer_chunk() argument 852 *pid, xfer_len, num_packets); in transfer_chunk() 856 (*pid << DWC2_HCTSIZ_PID_OFFSET), in transfer_chunk() 887 ret = wait_for_chhltd(hc_regs, &sub, pid); in transfer_chunk() 1037 u8* pid; in _submit_bulk_msg() local 1045 pid = &priv->in_data_toggle[devnum][ep]; in _submit_bulk_msg() 1047 pid = &priv->out_data_toggle[devnum][ep]; in _submit_bulk_msg() 1058 u8 pid; in _submit_control_msg() local 1070 pid = DWC2_HC_PID_SETUP; in _submit_control_msg() 1080 pid = DWC2_HC_PID_DATA1; in _submit_control_msg() [all …]
|
/openbmc/linux/include/uapi/linux/dvb/ |
H A D | net.h | 31 __u16 pid; member 46 __u16 pid; member
|
/openbmc/linux/tools/testing/selftests/powerpc/mm/ |
H A D | large_vm_gpr_corruption.c | 110 pid_t pid; in test() local 142 pid = fork(); in test() 143 if (pid == 0) in test()
|