Searched refs:proc (Results 226 - 250 of 314) sorted by relevance

1234567891011>>

/darwin-on-arm/xnu/bsd/netat/
H A Dadsp_stream.c44 #include <sys/proc.h>
H A Datp_read.c42 #include <sys/proc.h>
H A Daurp_zi.c45 #include <sys/proc.h>
/darwin-on-arm/xnu/bsd/netinet/
H A Din.c69 #include <sys/proc.h>
107 struct ifnet *, struct proc *);
371 struct proc *p)
1246 struct ifnet *ifp, struct proc *p)
H A Din_pcb.c72 #include <sys/proc.h>
262 in_pcballoc(struct socket *so, struct inpcbinfo *pcbinfo, __unused struct proc *p)
425 in_pcbbind(struct inpcb *inp, struct sockaddr *nam, struct proc *p)
896 in_pcbconnect(struct inpcb *inp, struct sockaddr *nam, struct proc *p,
H A Dip_mroute.c87 extern int _mrt_ioctl(int req, caddr_t data, struct proc *p);
134 _mrt_ioctl(__unused u_long req, __unused caddr_t data, __unused struct proc *p)
139 int (*mrt_ioctl)(u_long, caddr_t, struct proc *) = _mrt_ioctl;
/darwin-on-arm/xnu/bsd/nfs/
H A Dkrpc_subr.c71 #include <sys/proc.h>
/darwin-on-arm/xnu/bsd/security/audit/
H A Daudit_bsd.c33 #include <sys/proc.h>
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_fsevents.c380 struct proc *p = vfs_context_proc(ctx);
1890 fseventsopen(__unused dev_t dev, __unused int flag, __unused int mode, __unused struct proc *p)
1900 fseventsclose(__unused dev_t dev, __unused int flag, __unused int mode, __unused struct proc *p)
2112 fseventsioctl(__unused dev_t dev, u_long cmd, caddr_t data, __unused int flag, struct proc *p)
/darwin-on-arm/xnu/bsd/vm/
H A Dvnode_pager.c46 #include <sys/proc.h>
/darwin-on-arm/xnu/tools/tests/libMicro/
H A Dbench.sh118 if [ -f /proc/cpuinfo ]; then
119 p_count=`egrep processor /proc/cpuinfo | wc -l`
120 p_mhz=`awk -F: '/cpu MHz/{printf("%5.0f00Mhz\n",$2/100); exit}' /proc/cpuinfo`
121 p_type=`awk -F: '/model name/{print $2; exit}' /proc/cpuinfo`
H A Dcoreos_bench.sh126 if [ -f /proc/cpuinfo ]; then
127 p_count=`egrep processor /proc/cpuinfo | wc -l`
128 p_mhz=`awk -F: '/cpu MHz/{printf("%5.0f00Mhz\n",$2/100); exit}' /proc/cpuinfo`
129 p_type=`awk -F: '/model name/{print $2; exit}' /proc/cpuinfo`
H A Dembd_bench.sh125 if [ -f /proc/cpuinfo ]; then
126 p_count=`egrep processor /proc/cpuinfo | wc -l`
127 p_mhz=`awk -F: '/cpu MHz/{printf("%5.0f00Mhz\n",$2/100); exit}' /proc/cpuinfo`
128 p_type=`awk -F: '/model name/{print $2; exit}' /proc/cpuinfo`
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOServicePM.cpp50 #include <sys/proc.h>
5502 proc_t proc = NULL; local
5517 proc = proc_find(clientPID);
5519 if (proc)
5521 proc_suspended = get_task_pidsuspended((task_t) proc->task);
5522 proc_rele(proc);
6019 proc_t proc = NULL; local
6028 proc = proc_find(clientPID);
6030 if (proc)
6032 proc_suspended = get_task_pidsuspended((task_t) proc
[all...]
/darwin-on-arm/xnu/bsd/dev/i386/
H A Dunix_signal.c139 sendsig(struct proc *p, user_addr_t ua_catcher, int sig, int mask, __unused uint32_t code)
538 /* Fire DTrace proc:::fault probe when signal is generated by hardware. */
576 /* Fire DTrace proc:::fault probe when signal is generated by hardware. */
648 sigreturn(struct proc *p, struct sigreturn_args *uap, __unused int *retval)
H A Ddtrace_isa.c40 #include <sys/proc.h>
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_readwrite.c45 #include <sys/proc.h>
87 static int hfs_clonelink(struct vnode *, int, kauth_cred_t, struct proc *);
89 static int hfs_clonesysfile(struct vnode *, int, int, int, kauth_cred_t, struct proc *);
1099 struct cnode *skip_cp, struct proc *theProcPtr, kauth_cred_t myp_ucred,
2842 struct proc *p = vfs_context_proc(context);;
4374 struct proc *p)
4644 hfs_clonelink(struct vnode *vp, int blksize, kauth_cred_t cred, __unused struct proc *p)
4776 kauth_cred_t cred, struct proc *p)
H A Dhfs_vfsutils.c94 __unused struct proc *p)
312 off_t embeddedOffset, u_int64_t disksize, __unused struct proc *p, void *args, kauth_cred_t cred)
906 hfsUnmount( register struct hfsmount *hfsmp, __unused struct proc *p)
1276 __unused struct proc *p, int invokesuperuserstatus)
1380 struct proc *p = current_proc();
H A Dhfs_btreeio.c365 struct proc *p = NULL;
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_descrip.c139 static int close_internal_locked(struct proc *p, int fd, struct fileproc *fp, int flags);
150 static void _fdrelse(struct proc * p, int fd);
292 procfdtbl_reservefd(struct proc * p, int fd)
299 procfdtbl_markclosefd(struct proc * p, int fd)
305 procfdtbl_releasefd(struct proc * p, int fd, struct fileproc * fp)
317 procfdtbl_waitfd(struct proc * p, int fd)
325 procfdtbl_clearfd(struct proc * p, int fd)
352 _fdrelse(struct proc * p, int fd)
1782 * while we still hold the proc fd lock
2376 panic("close with reserved fd returns with freed fd:%d: proc
[all...]
H A Dkpi_socket.c36 #include <sys/proc.h>
1126 socket_defunct(struct proc *p, socket_t so, int level)
/darwin-on-arm/xnu/bsd/miscfs/devfs/
H A Ddevfs_tree.c98 #include <sys/proc.h>
1125 devfs_dntovn(devnode_t * dnp, struct vnode **vn_pp, __unused struct proc * p)
/darwin-on-arm/xnu/security/
H A Dmac_base.c86 #include <sys/proc.h>
1301 __mac_get_pid(struct proc *p, struct __mac_get_pid_args *uap, int *ret __unused)
1305 struct proc *tproc;
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Dprofile_prvd.c828 int _profile_open(dev_t dev, int flags, int devtype, struct proc *p)
H A Dsdt.c470 int _sdt_open(dev_t dev, int flags, int devtype, struct proc *p)

Completed in 219 milliseconds

1234567891011>>