Home
last modified time | relevance | path

Searched refs:rdev (Results 1 – 25 of 35) sorted by relevance

12

/third_party/libfuse/example/
Dpassthrough_helpers.h31 int mode, dev_t rdev) in mknod_wrapper() argument
72 res = mknodat(dirfd, path, mode, rdev); in mknod_wrapper()
Dpassthrough.c145 static int xmp_mknod(const char *path, mode_t mode, dev_t rdev) in xmp_mknod() argument
149 res = mknod_wrapper(AT_FDCWD, path, NULL, mode, rdev); in xmp_mknod()
Dpassthrough_fh.c216 static int xmp_mknod(const char *path, mode_t mode, dev_t rdev) in xmp_mknod() argument
223 res = mknod(path, mode, rdev); in xmp_mknod()
Dpassthrough_ll.c373 const char *name, mode_t mode, dev_t rdev, in lo_mknod_symlink() argument
381 res = mknod_wrapper(dir->fd, name, link, mode, rdev); in lo_mknod_symlink()
403 const char *name, mode_t mode, dev_t rdev) in lo_mknod() argument
405 lo_mknod_symlink(req, parent, name, mode, rdev, NULL); in lo_mknod()
Dpassthrough_hp.cc402 const char *name, mode_t mode, dev_t rdev, in mknod_symlink() argument
413 res = mknodat(inode_p.fd, name, mode, rdev); in mknod_symlink()
434 mode_t mode, dev_t rdev) { in sfs_mknod() argument
435 mknod_symlink(req, parent, name, mode, rdev, nullptr); in sfs_mknod()
/third_party/node/lib/internal/fs/
Dutils.js388 function StatsBase(dev, mode, nlink, uid, gid, rdev, blksize, argument
395 this.rdev = rdev;
452 function BigIntStats(dev, mode, nlink, uid, gid, rdev, blksize, argument
455 StatsBase.call(this, dev, mode, nlink, uid, gid, rdev, blksize,
483 function Stats(dev, mode, nlink, uid, gid, rdev, blksize, argument
486 StatsBase.call(this, dev, mode, nlink, uid, gid, rdev, blksize,
/third_party/alsa-lib/include/
Dseq_midi_event.h45 int snd_midi_event_new(size_t bufsize, snd_midi_event_t **rdev);
/third_party/ntfs-3g/include/fuse-lite/
Dfuse_kernel.h92 __u32 rdev; member
227 __u32 rdev; member
Dfuse.h611 dev_t rdev);
Dfuse_lowlevel.h277 mode_t mode, dev_t rdev);
/third_party/openssl/providers/implementations/rands/seeding/
Drand_unix.c415 dev_t rdev; member
521 && rd->rdev == st.st_rdev; in check_random_device()
545 rd->rdev = st.st_rdev; in get_random_device()
/third_party/alsa-lib/src/seq/
Dseq_midi_event.c150 int snd_midi_event_new(size_t bufsize, snd_midi_event_t **rdev) in snd_midi_event_new() argument
154 *rdev = NULL; in snd_midi_event_new()
168 *rdev = dev; in snd_midi_event_new()
/third_party/libfuse/include/
Dfuse_kernel.h193 uint32_t rdev; member
489 uint32_t rdev; member
Dfuse.h1189 dev_t rdev);
Dfuse_lowlevel.h337 mode_t mode, dev_t rdev);
/third_party/toybox/porting/liteos_a/toys/posix/
Dps.c865 int rdev = slot[SLOT_ttynr]; in get_ps() local
870 if (rdev) { in get_ps()
875 && st.st_rdev == rdev && (len = readlinkat0(fd, buf, buf, len))) in get_ps()
882 int tty_major = 0, maj = dev_major(rdev), min = dev_minor(rdev); in get_ps()
890 if (!stat(buf, &st) && S_ISCHR(st.st_mode) && st.st_rdev==rdev) in get_ps()
/third_party/toybox/toys/posix/
Dps.c908 int rdev = slot[SLOT_ttynr]; in get_ps() local
913 if (rdev) { in get_ps()
918 && st.st_rdev == rdev && (len = readlinkat0(fd, buf, buf, len))) in get_ps()
925 int tty_major = 0, maj = dev_major(rdev), min = dev_minor(rdev); in get_ps()
933 if (!stat(buf, &st) && S_ISCHR(st.st_mode) && st.st_rdev==rdev) in get_ps()
/third_party/typescript/src/harness/
DvfsUtil.ts1285 public rdev: number; property in Stats
1299 …constructor(dev: number, ino: number, mode: number, nlink: number, rdev: number, size: number, blk…
1300 …constructor(dev = 0, ino = 0, mode = 0, nlink = 0, rdev = 0, size = 0, blksize = 0, blocks = 0, at…
1307 this.rdev = rdev;
/third_party/ntfs-3g/libfuse-lite/
Dfuse_lowlevel.c84 attr->rdev = ((major(stbuf->st_rdev) & 0x3fff) << 18) in convert_stat()
87 attr->rdev = stbuf->st_rdev; in convert_stat()
579 makedev((arg->rdev >> 18) & 0x3fff, in do_mknod()
580 arg->rdev & 0x3ffff)); in do_mknod()
582 req->f->op.mknod(req, nodeid, name, arg->mode, arg->rdev); in do_mknod()
Dfuse.c975 dev_t rdev) in fuse_fs_mknod() argument
979 return fs->op.mknod(path, mode, rdev); in fuse_fs_mknod()
1550 mode_t mode, dev_t rdev) in fuse_lib_mknod() argument
1578 err = fuse_fs_mknod(f->fs, path, mode, rdev); in fuse_lib_mknod()
/third_party/libfuse/lib/modules/
Dsubdir.c196 static int subdir_mknod(const char *path, mode_t mode, dev_t rdev) in subdir_mknod() argument
202 err = fuse_fs_mknod(d->next, newpath, mode, rdev); in subdir_mknod()
Diconv.c205 static int iconv_mknod(const char *path, mode_t mode, dev_t rdev) in iconv_mknod() argument
211 err = fuse_fs_mknod(ic->next, newpath, mode, rdev); in iconv_mknod()
/third_party/ntfs-3g/src/
Dlowntfs-3g.c684 dev_t rdev; in wsl_getstat() local
698 res = ntfs_ea_check_wsldev(ni, &rdev); in wsl_getstat()
699 stbuf->st_rdev = rdev; in wsl_getstat()
703 res = ntfs_ea_check_wsldev(ni, &rdev); in wsl_getstat()
704 stbuf->st_rdev = rdev; in wsl_getstat()
2555 mode_t mode, dev_t rdev) in ntfs_fuse_mknod() argument
2561 rdev, &e,NULL,(struct fuse_file_info*)NULL); in ntfs_fuse_mknod()
Dntfs-3g.c742 dev_t rdev; in wsl_getattr() local
756 res = ntfs_ea_check_wsldev(ni, &rdev); in wsl_getattr()
757 stbuf->st_rdev = rdev; in wsl_getattr()
761 res = ntfs_ea_check_wsldev(ni, &rdev); in wsl_getattr()
762 stbuf->st_rdev = rdev; in wsl_getattr()
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_fileio.js26 rdev: '[PC preview] unknow rdev', property

12