Searched refs:pid (Results 101 - 122 of 122) sorted by relevance

12345

/darwin-on-arm/xnu/bsd/kern/
H A Dkern_exec.c1665 * Parameters: uap->pid Pointer to pid return area
1694 user_addr_t pid = uap->pid; local
1890 spga.pid = p->p_pid;
2175 * If the parent wants the pid, copy it out
2177 if (pid != USER_ADDR_NULL)
2178 (void)suword(pid, p->p_pid);
H A Dsys_generic.c2835 int rval, pid, len, error; local
2860 pid = args->arg1;
2861 proc = proc_find(pid);
H A Dkern_sysctl.c1452 SYSCTL_PROC(_kern_proc, KERN_PROC_PID, pid, CTLTYPE_NODE|CTLFLAG_RD | CTLFLAG_LOCKED,
1863 int pid; local
1883 * Lookup process by pid
1885 pid = name[0];
1886 p = proc_find(pid);
H A Dkern_event.c630 const pid_t pid = (pid_t)hint; local
631 if ((kn->kn_sfflags & NOTE_VM_PRESSURE) && (kn->kn_kq->kq_p->p_pid == pid)) {
/darwin-on-arm/xnu/security/
H A Dmac_base.c1310 AUDIT_ARG(pid, uap->pid);
1329 tproc = proc_find(uap->pid);
H A Dmac_policy.h3113 @param pid syscall PID argument
3126 pid_t pid
3252 @param pid syscall PID argument
3268 pid_t pid,
H A Dmac_framework.h339 pid_t pid);
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Ddtrace_glue.c68 * pid/proc
75 sprlock(pid_t pid) argument
79 if ((p = proc_find(pid)) == PROC_NULL) {
H A Ddtrace.c467 uint_t pid = (uint_t)proc_selfpid(); \
469 (where) = (((thr << 32 | pid) + DIF_VARIABLE_MAX) & \
3849 pid_t pid = tupregs[0].dttk_value;
3856 if (p->p_pidp->pid_id == pid) {
3869 pid_t pid = tupregs[0].dttk_value;
3880 if (ppid == pid) {
6230 dtrace_action_pidresume(uint64_t pid)
6243 * task_resume the process (denoted by pid), if that pid appears to have
6249 if (pid !
[all...]
/darwin-on-arm/xnu/osfmk/kern/
H A Dtask_policy.c47 extern void memorystatus_on_suspend(int pid);
48 extern void memorystatus_on_resume(int pid);
/darwin-on-arm/xnu/bsd/netat/
H A Dsys_glue.c187 gref->pid = proc_pid((struct proc *)proc);
H A Dddp_nbp.c1402 new_entry->pid = proc_selfpid();
/darwin-on-arm/xnu/iokit/IOKit/
H A DIOService.h1795 bool responseValid ( uint32_t x, int pid );
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOUserClient.cpp1012 OSNumber * pid = OSDynamicCast(OSNumber, user->getObject(gIOConsoleSessionSecureInputPIDKey)); local
1013 if ( pid && pid->unsigned32BitValue() != ((IOUCProcessToken *)securityToken)->pid)
H A DIOServicePM.cpp5714 // Log client pid/name and client array index.
6093 bool IOService::responseValid ( uint32_t refcon, int pid )
6126 OSString *name = IOCopyLogNameForPID(pid);
6136 (uintptr_t)pid, // owner unique
6164 NS_TO_MS(nsec), pid);
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_subr.c3531 pid_t pid; local
3534 /* We need a pid. */
3538 error = SYSCTL_IN(req, &pid, sizeof(pid));
3542 p = proc_find(pid < 0 ? -pid : pid);
3563 if (pid < 0)
/darwin-on-arm/xnu/bsd/net/
H A Dpfvar.h1401 pid_t pid; member in struct:pf_pdesc::__anon271
1830 pid_t pid; member in struct:pfioc_token
H A Dpf_ioctl.c387 new_token->token.pid = proc_pid(p);
388 proc_name(new_token->token.pid, new_token->token.proc_name,
2719 t->pid = entry->token.pid;
H A Dpf.c3651 pd->lookup.pid = NO_PID;
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_vfsops.c3278 cnid_t pid; local
3293 pid = cndesc.cd_parentcnid;
3296 if ((pid == hfsmp->hfs_private_desc[FILE_HARDLINKS].cd_cnid) &&
3300 } else if ((pid == hfsmp->hfs_private_desc[DIR_HARDLINKS].cd_cnid) &&
3304 } else if ((pid == hfsmp->hfs_private_desc[FILE_HARDLINKS].cd_cnid) &&
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_vnops.c5626 /* format of "random" silly names - includes a number and pid */
5641 short pid; local
5665 pid = vfs_context_pid(ctx);
5668 NFS_SILLYNAME_FORMAT, num, (pid & 0xffff));
5676 NFS_SILLYNAME_FORMAT, num, (pid & 0xffff));
H A Dnfs4_vnops.c2411 * If pid has a lock, use the lockowner's stateid.
2946 pid_t pid = proc_pid(p); local
2952 if (nlop->nlo_pid != pid)
2976 newnlop->nlo_pid = pid;

Completed in 599 milliseconds

12345