Home
last modified time | relevance | path

Searched refs:pid (Results 476 – 500 of 2176) sorted by relevance

1...<<11121314151617181920>>...88

/openbmc/linux/Documentation/trace/
H A Dhistogram-design.rst42 { pid: 18249 } hitcount: 1
65 pid.
69 sched_waking was called for that pid.
360 pid, and later a sched_switch event that switches to that pid event
775 ftrace_event_field name: pid
1156 ftrace_event_field name: pid
1432 ftrace_event_field name: pid
1703 ftrace_event_field name: pid
1744 ftrace_event_field name: pid
1922 ftrace_event_field name: pid
[all …]
/openbmc/linux/arch/um/include/shared/
H A Dptrace_user.h12 extern int ptrace_getregs(long pid, unsigned long *regs_out);
13 extern int ptrace_setregs(long pid, unsigned long *regs_in);
/openbmc/linux/arch/um/os-Linux/drivers/
H A Dethertap_user.c95 int pid, err, n; in etap_tramp() local
117 pid = run_helper(etap_pre_exec, &pe_data, args); in etap_tramp()
119 if (pid < 0) in etap_tramp()
120 err = pid; in etap_tramp()
132 err = helper_wait(pid); in etap_tramp()
/openbmc/linux/security/keys/
H A Drequest_key_auth.c75 seq_printf(m, " pid:%d ci:%zu", rka->pid, rka->callout_len); in request_key_auth_describe()
200 rka->pid = irka->pid; in request_key_auth_new()
207 rka->pid = current->pid; in request_key_auth_new()
/openbmc/linux/drivers/misc/ocxl/
H A Dlink.c196 int pid; in xsl_fault_handler() local
204 pid = be32_to_cpu(pe->pid); in xsl_fault_handler()
247 WARN_ON(pe_data->mm->context.id != pid); in xsl_fault_handler()
500 unsigned long addr, pid, page_size = PAGE_SIZE; in arch_invalidate_secondary_tlbs() local
502 pid = mm->context.id; in arch_invalidate_secondary_tlbs()
503 trace_ocxl_mmu_notifier_range(start, end, pid); in arch_invalidate_secondary_tlbs()
507 pnv_ocxl_tlb_invalidate(link->arva, pid, addr, page_size); in arch_invalidate_secondary_tlbs()
579 pe->pid = cpu_to_be32(pidr); in ocxl_link_add_pe()
624 trace_ocxl_context_add(current->pid, spa->spa_mem, pasid, pidr, tidr); in ocxl_link_add_pe()
706 trace_ocxl_context_remove(current->pid, spa->spa_mem, pasid, in ocxl_link_remove_pe()
[all …]
/openbmc/linux/drivers/gpu/drm/
H A Ddrm_file.c163 rcu_assign_pointer(file->pid, get_pid(task_tgid(current))); in drm_file_alloc()
203 put_pid(rcu_access_pointer(file->pid)); in drm_file_alloc()
294 put_pid(rcu_access_pointer(file->pid)); in drm_file_free()
511 struct pid *pid, *old; in drm_file_update_pid() local
521 pid = task_tgid(current); in drm_file_update_pid()
527 if (pid == rcu_access_pointer(filp->pid)) in drm_file_update_pid()
532 old = rcu_replace_pointer(filp->pid, pid, 1); in drm_file_update_pid()
535 if (pid != old) { in drm_file_update_pid()
536 get_pid(pid); in drm_file_update_pid()
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-httpd/sthttpd/sthttpd/
H A Dthttpd.service6 ExecStart=/usr/sbin/thttpd -C @@CONFFILE -c cgi-bin/* -i /var/run/thttpd.pid
7 PIDFile=/var/run/thttpd.pid
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dread_bpf_task_storage_busy.c12 int pid = 0; variable
30 if (bpf_get_current_pid_tgid() >> 32 != pid) in BPF_PROG()
/openbmc/linux/security/tomoyo/
H A Dmemory.c21 const pid_t pid = current->pid; in tomoyo_warn_oom() local
23 if (tomoyo_last_pid != pid) { in tomoyo_warn_oom()
25 tomoyo_last_pid = pid; in tomoyo_warn_oom()
/openbmc/openbmc/poky/bitbake/bin/
H A Dbitbake-worker210 pid = os.fork()
215 if pid == 0:
344 return pid, pipein, pipeout
512 self.build_pids[pid] = task
513 self.build_pipes[pid] = runQueueWorkerPipe(pipein, pipeout)
521 pid, status = os.waitpid(-1, os.WNOHANG)
522 if pid == 0 or os.WIFSTOPPED(status):
536 task = self.build_pids[pid]
537 del self.build_pids[pid]
539 self.build_pipes[pid].close()
[all …]
/openbmc/linux/tools/perf/tests/shell/
H A Ddaemon.sh119 local pid
120 pid=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $1 }'`
129 tail --pid=${pid} -f /dev/null
243 local pid
244 pid=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $1 }'`
265 tail --pid=${pid} -f /dev/null
/openbmc/linux/drivers/usb/core/
H A Dquirks.c17 u16 pid; member
31 u16 vid, pid; in quirks_param_set() local
86 if (kstrtou16(field, 16, &pid)) in quirks_param_set()
149 { .vid = vid, .pid = pid, .flags = flags }; in quirks_param_set()
675 u16 pid = le16_to_cpu(udev->descriptor.idProduct); in usb_detect_dynamic_quirks() local
681 if (vid == quirk_list[i].vid && pid == quirk_list[i].pid) { in usb_detect_dynamic_quirks()
/openbmc/linux/tools/perf/util/
H A Dthread.c24 pid_t pid = thread__pid(thread); in thread__init_maps() local
26 if (pid == thread__tid(thread) || pid == -1) { in thread__init_maps()
29 struct thread *leader = __machine__findnew_thread(machine, pid, pid); in thread__init_maps()
40 struct thread *thread__new(pid_t pid, pid_t tid) in thread__new() argument
49 thread__set_pid(thread, pid); in thread__new()
68 RC_CHK_ACCESS(thread)->nsinfo = nsinfo__new(pid); in thread__new()
/openbmc/linux/tools/lib/perf/Documentation/examples/
H A Dsampling.c85 int cpu, pid, tid; in main() local
95 pid = u.val32[0]; in main()
106 cpu, pid, tid, ip, period); in main()
/openbmc/linux/drivers/staging/media/av7110/
H A Ddvb_filter.c70 void dvb_filter_pes2ts_init(struct dvb_filter_pes2ts *p2ts, unsigned short pid, in dvb_filter_pes2ts_init() argument
76 buf[1]=(pid>>8); in dvb_filter_pes2ts_init()
77 buf[2]=pid&0xff; in dvb_filter_pes2ts_init()
/openbmc/phosphor-pid-control/test/
H A Djson_parse_unittest.cpp31 "pid": { in TEST()
66 "pid": { in TEST()
118 "pid": { in TEST()
/openbmc/linux/drivers/media/usb/ttusb-dec/
H A Dttusb_dec.c103 u16 pid[DMX_PES_OTHER]; member
198 unsigned short pid, in dvb_filter_pes2ts_init() argument
204 buf[1]=(pid>>8); in dvb_filter_pes2ts_init()
205 buf[2]=pid&0xff; in dvb_filter_pes2ts_init()
990 dec->pid[DMX_PES_PCR] = dvbdmxfeed->pid; in ttusb_dec_start_ts_feed()
991 dec->pid[DMX_PES_VIDEO] = dvbdmxfeed->pid; in ttusb_dec_start_ts_feed()
998 dec->pid[DMX_PES_AUDIO] = dvbdmxfeed->pid; in ttusb_dec_start_ts_feed()
1004 dec->pid[DMX_PES_TELETEXT] = dvbdmxfeed->pid; in ttusb_dec_start_ts_feed()
1010 dec->pid[DMX_PES_PCR] = dvbdmxfeed->pid; in ttusb_dec_start_ts_feed()
1043 __be16 pid; in ttusb_dec_start_sec_feed() local
[all …]
/openbmc/linux/sound/isa/
H A Dals100.c165 const struct pnp_card_device_id *pid) in snd_card_als100_probe() argument
180 error = snd_card_als100_pnp(dev, acard, pcard, pid); in snd_card_als100_probe()
184 if (pid->driver_data == SB_HW_DT019X) in snd_card_als100_probe()
190 pid->driver_data, in snd_card_als100_probe()
196 if (pid->driver_data == SB_HW_DT019X) { in snd_card_als100_probe()
225 if (pid->driver_data == SB_HW_DT019X) in snd_card_als100_probe()
/openbmc/linux/Documentation/devicetree/bindings/soc/qcom/
H A Dqcom,smp2p.yaml45 qcom,local-pid:
50 qcom,remote-pid:
108 - qcom,local-pid
109 - qcom,remote-pid
132 qcom,local-pid = <0>;
133 qcom,remote-pid = <4>;
/openbmc/linux/kernel/futex/
H A Dsyscalls.c49 SYSCALL_DEFINE3(get_robust_list, int, pid, in SYSCALL_DEFINE3() argument
60 if (!pid) in SYSCALL_DEFINE3()
63 p = find_task_by_vpid(pid); in SYSCALL_DEFINE3()
321 COMPAT_SYSCALL_DEFINE3(get_robust_list, int, pid, in COMPAT_SYSCALL_DEFINE3() argument
332 if (!pid) in COMPAT_SYSCALL_DEFINE3()
335 p = find_task_by_vpid(pid); in COMPAT_SYSCALL_DEFINE3()
/openbmc/linux/tools/testing/selftests/net/
H A Damt.sh90 smcpid=$(< $SMCROUTEDIR/amt.pid)
176 ip netns exec "${RELAY}" smcrouted -P $SMCROUTEDIR/amt.pid
268 pid=$!
270 wait $pid || err=$?
275 pid=$!
277 wait $pid || err=$?
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/hostapd/hostapd/
H A Dhostapd.service7 PIDFile=/run/hostapd.pid
8 ExecStart=@SBINDIR@/hostapd @SYSCONFDIR@/hostapd.conf -P /run/hostapd.pid -B
/openbmc/openbmc/poky/meta/recipes-extended/at/at/
H A Datd.init13 …start-stop-daemon --start --quiet --pidfile /var/run/atd.pid --background --exec /usr/sbin/atd -- …
18 start-stop-daemon --stop --quiet --pidfile /var/run/atd.pid
/openbmc/linux/drivers/i3c/master/mipi-i3c-hci/
H A Ddct_v1.c21 u64 *pid, unsigned int *dcr, unsigned int *bcr) in i3c_hci_dct_get_val() argument
32 *pid = ((u64)dct_entry_data[0]) << (47 - 32 + 1) | in i3c_hci_dct_get_val()
/openbmc/linux/samples/bpf/
H A Dtrace_output.bpf.c16 u64 pid; in bpf_prog1() member
20 data.pid = bpf_get_current_pid_tgid(); in bpf_prog1()

1...<<11121314151617181920>>...88