Searched refs:proc (Results 151 - 175 of 314) sorted by relevance

1234567891011>>

/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_support.h52 #include <sys/proc.h>
H A Dkpi_vfs.c1279 proc_t proc = vfs_context_proc(ctx); local
1281 if (proc)
1282 return(proc_is64bit(proc));
1313 proc_t proc = NULL; local
1316 proc = (proc_t)get_bsdthreadtask_info(ctx->vc_thread);
1317 if (proc != NULL && (proc->p_fd == NULL || (proc->p_lflag & P_LVFORK)))
1318 proc = NULL;
1320 return(proc
1416 proc_t proc; local
1725 proc_t proc; local
2191 proc_t proc = current_proc(); local
[all...]
/darwin-on-arm/xnu/osfmk/i386/
H A DpmCPU.h111 processor_t (*ThreadBind)(processor_t proc);
/darwin-on-arm/xnu/security/
H A Dmac_file.c40 #include <sys/proc.h>
/darwin-on-arm/xnu/bsd/dev/arm/
H A Dunix_signals.c85 void sendsig(struct proc *p, user_addr_t ua_catcher, int sig, int mask, __unused uint32_t code)
334 int sigreturn(struct proc *p, struct sigreturn_args *uap, __unused int *retval)
H A Dkm.c44 #include <sys/proc.h> /* for kmopen */
/darwin-on-arm/xnu/bsd/kern/
H A Dsubr_prf.c161 struct proc *p = current_proc();
184 tprintf_open(struct proc *p)
H A Dkern_proc.c388 struct proc * p;
583 panic("proc being freed and still in hash %p: %u\n", p, p->p_listflag);
585 panic("proc being freed and pending children cnt %p:%d\n", p, p->p_childrencnt);
587 panic("proc being freed and pending refcount %p:%d\n", p, p->p_refcount);
589 panic("proc being freed and pending parentrefs %p:%d\n", p, p->p_parentref);
756 proc_task(proc_t proc) argument
758 return (task_t)proc->task;
770 proc_thread(proc_t proc) argument
772 uthread_t uth = TAILQ_FIRST(&proc->p_uthlist);
1004 /* mark the completion of proc creatio
[all...]
H A Dproc_info.c133 void proc_dirty_start(struct proc *p);
134 void proc_dirty_end(struct proc *p);
141 extern int cansignal(struct proc *, kauth_cred_t, struct proc *, int, int);
156 proc_info(__unused struct proc *p, struct proc_info_args * uap, int32_t *retval)
199 struct proc * p;
954 struct proc * p = PROC_NULL;
1731 struct proc * pself = PROC_NULL;
1804 proc_dirty_start(struct proc *p)
1815 proc_dirty_end(struct proc *
[all...]
H A Dkern_core.c109 static cpu_type_t process_cpu_type(proc_t proc);
110 static cpu_type_t process_cpu_subtype(proc_t proc);
H A Dkern_authorization.c135 extern int cansignal(struct proc *, kauth_cred_t, struct proc *, int, int);
471 kauth_authorize_process(kauth_cred_t credential, kauth_action_t action, struct proc *process, uintptr_t arg1, uintptr_t arg2, uintptr_t arg3)
487 if (cansignal(current_proc(), credential, (struct proc *)arg0, (int)arg1, 0))
/darwin-on-arm/xnu/bsd/net/
H A Droute.h488 struct proc;
523 extern int rtioctl(unsigned long, caddr_t, struct proc *);
H A Dndrv.c63 #include <sys/proc.h>
211 ndrv_attach(struct socket *so, int proto, __unused struct proc *p)
273 ndrv_connect(struct socket *so, struct sockaddr *nam, __unused struct proc *p)
317 ndrv_bind(struct socket *so, struct sockaddr *nam, __unused struct proc *p)
422 __unused struct proc *p)
/darwin-on-arm/xnu/bsd/netinet6/
H A Dip6_var.h454 int icmp6_dgram_send(struct socket *, int , struct mbuf *, struct sockaddr *, struct mbuf *, struct proc *);
455 int icmp6_dgram_attach(struct socket *, int , struct proc *);
H A Dudp6_output.c107 #include <sys/proc.h>
172 struct proc *p;
H A Draw_ip6.c95 #include <sys/proc.h>
740 rip6_attach(struct socket *so, int proto, struct proc *p)
810 rip6_bind(struct socket *so, struct sockaddr *nam, __unused struct proc *p)
849 rip6_connect(struct socket *so, struct sockaddr *nam, __unused struct proc *p)
903 struct mbuf *control, struct proc *p)
/darwin-on-arm/xnu/bsd/sys/
H A DMakefile27 proc.h proc_info.h ptrace.h queue.h quota.h random.h reboot.h resource.h resourcevar.h \
73 proc.h queue.h random.h resource.h \
H A Ddtrace_glue.h68 * pid/proc
72 #define proc_t struct proc /* Steer clear of the Darwin typedef for proc_t */
73 #define curproc ((struct proc *)current_proc()) /* Called from probe context, must blacklist */
453 * proc
/darwin-on-arm/xnu/bsd/uxkern/
H A Dux_exception.c57 #include <sys/proc.h>
241 struct proc *p;
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_quota.c73 #include <sys/proc.h>
158 struct proc *p;
303 struct proc *p;
546 struct proc *p;
653 hfs_quotaoff(__unused struct proc *p, struct mount *mp, register int type)
733 struct proc *p;
/darwin-on-arm/xnu/bsd/netinet/
H A Dip_icmp.c994 int rip_bind(struct socket *, struct sockaddr *, struct proc *);
995 int rip_connect(struct socket *, struct sockaddr *, struct proc *);
1000 __private_extern__ int icmp_dgram_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *nam, struct mbuf *control, struct proc *p);
1001 __private_extern__ int icmp_dgram_attach(struct socket *so, int proto, struct proc *p);
1014 icmp_dgram_attach(struct socket *so, __unused int proto, struct proc *p)
1086 struct mbuf *control, struct proc *p)
/darwin-on-arm/xnu/osfmk/ipc/
H A Dipc_port.c1469 extern int proc_pid(struct proc*);
1494 struct proc* proc = (struct proc*) get_bsdtask_info(task); local
1495 if (proc)
1496 port->ip_spares[0] = proc_pid(proc);
/darwin-on-arm/xnu/bsd/netat/
H A Dddp.save256 int atalk_openref(gref, retfd, proc) /* AIX version */
259 void *proc;
283 int atalk_getref(fp, fd, grefp, proc) /* AIX version */
287 struct proc *proc;
/darwin-on-arm/xnu/bsd/dev/chud/
H A Dchud_bsd_callback.c35 #include <sys/proc.h> /* proc_t */
/darwin-on-arm/xnu/bsd/dev/i386/
H A Dkm.c44 #include <sys/proc.h> /* for kmopen */

Completed in 114 milliseconds

1234567891011>>