Searched refs:dev_t (Results 1 - 25 of 273) sorted by relevance

1234567891011

/macosx-10.9.5/xnu-2422.115.4/bsd/sys/_types/
H A D_dev_t.h30 typedef __darwin_dev_t dev_t; /* device number */ typedef
/macosx-10.9.5/xnu-2422.115.4/bsd/machine/
H A Dcons.h39 dev_t cn_dev; /* major/minor of device */
63 int consopen(dev_t, int, int, struct proc *);
64 int consclose(dev_t, int, int, struct proc *);
65 int consread(dev_t, struct uio *, int);
66 int conswrite(dev_t, struct uio *, int);
67 int consioctl(dev_t, u_long, caddr_t, int, struct proc *);
68 int consselect(dev_t, int, void *, struct proc *);
75 int kmopen(dev_t, int, int, struct proc *);
76 int kmclose(dev_t, int, int, struct proc *);
77 int kmread(dev_t, struc
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/profiling/
H A Dprofile-mk.h47 extern int gprofopen(dev_t, int, io_req_t);
48 extern void gprofclose(dev_t);
50 extern int gprofread(dev_t, io_req_t);
51 extern int gprofwrite(dev_t, io_req_t);
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/random/
H A Drandomdev.h51 int random_open(dev_t dev, int flags, int devtype, struct proc *pp);
52 int random_close(dev_t dev, int flags, int mode, struct proc *pp);
53 int random_read(dev_t dev, struct uio *uio, int ioflag);
54 int random_write(dev_t dev, struct uio *uio, int ioflag);
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/i386/
H A Dcons.c69 int cnopen(__unused dev_t dev, int flag, int devtype, proc_t pp);
70 int cnclose(__unused dev_t dev, int flag, int mode, proc_t pp);
71 int cnread(__unused dev_t dev, struct uio *uio, int ioflag);
72 int cnwrite(__unused dev_t dev, struct uio *uio, int ioflag);
73 int cnioctl(__unused dev_t dev, u_long cmd, caddr_t addr, int flg, proc_t p);
74 int cnselect(__unused dev_t dev, int flag, void * wql, proc_t p);
76 static dev_t
86 cnopen(__unused dev_t dev, int flag, int devtype, struct proc *pp)
94 cnclose(__unused dev_t dev, int flag, int mode, struct proc *pp)
102 cnread(__unused dev_t de
[all...]
H A Dmem.c97 int mmread(dev_t dev, struct uio *uio);
98 int mmwrite(dev_t dev, struct uio *uio);
99 int mmioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p);
100 int mmrw(dev_t dev, struct uio *uio, enum uio_rw rw);
103 mmread(dev_t dev, struct uio *uio)
110 mmwrite(dev_t dev, struct uio *uio)
117 mmioctl(dev_t dev, u_long cmd, __unused caddr_t data,
145 mmrw(dev_t dev, struct uio *uio, enum uio_rw rw)
/macosx-10.9.5/xnu-2422.115.4/bsd/miscfs/devfs/
H A Ddevfs.h77 * before returning a dev_t value for an open instance, the dev_t has
82 * dev - the dev_t value to associate
91 void * devfs_make_node_clone(dev_t dev, int chrblk, uid_t uid, gid_t gid,
92 int perms, int (*clone)(dev_t dev, int action),
102 * dev - the dev_t value to associate
110 void * devfs_make_node(dev_t dev, int chrblk, uid_t uid, gid_t gid,
/macosx-10.9.5/file_cmds-230/pax/
H A Dtables.h62 dev_t dev; /* files device number */
126 dev_t dev; /* the orig device number we now have to map */
133 dev_t dev; /* the new device id we use */
147 dev_t dev; /* dev and inode for fast lookup */
/macosx-10.9.5/xnu-2422.115.4/iokit/bsddev/
H A DDINetBootHook.h43 * fixed up comment re dev_t
72 int di_root_image(const char *path, char devname[], dev_t *dev_p);
/macosx-10.9.5/xnu-2422.115.4/osfmk/libsa/i386/
H A Dtypes.h59 typedef int dev_t; /* device number (major+minor) */ typedef
/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_entry_private.h136 dev_t aest_dev;
137 dev_t aest_devmajor;
138 dev_t aest_devminor;
140 dev_t aest_rdev;
141 dev_t aest_rdevmajor;
142 dev_t aest_rdevminor;
H A Darchive_entry.h54 # define __LA_DEV_T dev_t
67 #define __LA_DEV_T dev_t
194 __LA_DECL dev_t archive_entry_dev(struct archive_entry *);
195 __LA_DECL dev_t archive_entry_devmajor(struct archive_entry *);
196 __LA_DECL dev_t archive_entry_devminor(struct archive_entry *);
216 __LA_DECL dev_t archive_entry_rdev(struct archive_entry *);
217 __LA_DECL dev_t archive_entry_rdevmajor(struct archive_entry *);
218 __LA_DECL dev_t archive_entry_rdevminor(struct archive_entry *);
250 __LA_DECL void archive_entry_set_dev(struct archive_entry *, dev_t);
251 __LA_DECL void archive_entry_set_devmajor(struct archive_entry *, dev_t);
[all...]
/macosx-10.9.5/file_cmds-230/mknod/
H A Dmknod.c58 typedef dev_t pack_t __P((int, u_long []));
63 dev_t
68 dev_t dev=0; /* Quiet -Wall */
85 #define makedev_netbsd(x,y) ((dev_t)((((x) << 8) & 0x000fff00) | \
91 dev_t
96 dev_t dev=0; /* Quiet -Wall */
112 #define makedev_freebsd(x,y) ((dev_t)((((x) << 8) & 0x0000ff00) | \
117 dev_t
122 dev_t dev=0; /* Quiet -Wall */
138 #define makedev_8_8(x,y) ((dev_t)((((
[all...]
/macosx-10.9.5/xar-202/xar/lib/
H A Dutil.h52 dev_t xar_makedev(uint32_t major, uint32_t minor);
53 void xar_devmake(dev_t dev, uint32_t *major, uint32_t *minor);
/macosx-10.9.5/xnu-2422.115.4/osfmk/sys/
H A Dtypes.h137 typedef unsigned short dev_t; /* another unsigned short */ typedef
138 #define NODEV ((dev_t)-1) /* and a null value for it */
/macosx-10.9.5/xnu-2422.115.4/security/
H A Dmac_pty.c9 mac_pty_notify_grant(proc_t p, struct tty *tp, dev_t dev, struct label *label) {
14 mac_pty_notify_close(proc_t p, struct tty *tp, dev_t dev, struct label *label) {
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dconf.h99 typedef int open_close_fcn_t(dev_t dev, int flags, int devtype,
102 typedef struct tty *d_devtotty_t(dev_t dev);
105 typedef int ioctl_fcn_t(dev_t dev, u_long cmd, caddr_t data,
108 typedef int psize_fcn_t(dev_t dev);
109 typedef int read_write_fcn_t(dev_t dev, struct uio *uio, int ioflag);
112 typedef int select_fcn_t(dev_t dev, int which, void * wql, struct proc *p);
169 extern int (*bootcache_contains_block)(dev_t device, u_int64_t blkno);
212 dev_t dl_dev;
234 typedef int l_open_t (dev_t dev, struct tty *tp);
273 dev_t sw_de
[all...]
H A Dvstat.h57 dev_t vst_dev; /* inode's device */
58 dev_t vst_rdev; /* device type */
H A Dimgsrc.h76 dev_t ii_dev; /* dev_t for this volume */
/macosx-10.9.5/emacs-92/emacs/mac/inc/sys/
H A Dstat.h70 typedef unsigned long dev_t; typedef
73 dev_t st_dev; /* ID of device containing file */
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dmknod.c40 mknod(const char* path, mode_t mode, dev_t dev)
/macosx-10.9.5/lsof-52/lsof/dialects/darwin/libproc/
H A Ddlsof.h105 dev_t dev; /* directory st_dev */
106 dev_t rdev; /* directory st_rdev */
118 dev_t dev; /* device */
119 dev_t rdev; /* raw device */
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dtty_tty.c78 int cttyopen(dev_t dev, int flag, int mode, proc_t p);
79 int cttyread(dev_t dev, struct uio *uio, int flag);
80 int cttywrite(dev_t dev, struct uio *uio, int flag);
81 int cttyioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, proc_t p);
82 int cttyselect(dev_t dev, int flag, void* wql, proc_t p);
86 cttyopen(dev_t dev, int flag, __unused int mode, proc_t p)
162 cttyread(__unused dev_t dev, struct uio *uio, int flag)
181 cttywrite(__unused dev_t dev, struct uio *uio, int flag)
200 cttyioctl(__unused dev_t dev, u_long cmd, caddr_t addr, int flag, proc_t p)
238 cttyselect(__unused dev_t de
[all...]
/macosx-10.9.5/xnu-2422.115.4/SETUP/config/
H A Dconfig.h78 dev_t fuw_swapdev;
82 dev_t fus_rootdev;
83 dev_t fus_argdev;
84 dev_t fus_dumpdev;
235 dev_t nametodev(char *name, int defunit, char defpartition);
236 char *devtoname(dev_t dev);
/macosx-10.9.5/IOSerialFamily-64.1.1/IOSerialFamily.kmodproj/
H A DIOSerialBSDClient.h91 dev_t fBaseDev;
122 int open(dev_t dev, int flags, int devtype, struct proc *p);
123 void close(dev_t dev, int flags, int devtype, struct proc *p);
176 static int iossopen(dev_t dev, int flags, int devtype, struct proc *p);
177 static int iossclose(dev_t dev, int flags, int devtype, struct proc *p);
178 static int iossread(dev_t dev, struct uio *uio, int ioflag);
179 static int iosswrite(dev_t dev, struct uio *uio, int ioflag);
180 static int iossselect(dev_t dev, int which, void *wql, struct proc *p);
181 static int iossioctl(dev_t dev, u_long cmd, caddr_t data, int fflag,

Completed in 350 milliseconds

1234567891011