Searched refs:blkdev (Results 1 – 10 of 10) sorted by relevance
/third_party/NuttX/fs/driver/ |
D | fs_blockproxy.c | 152 int block_proxy(const char *blkdev, int oflags) in block_proxy() argument 161 DEBUGASSERT(blkdev); in block_proxy() 180 ret = bchdev_register(blkdev, chardev, readonly); in block_proxy() 183 PRINTK("ERROR: bchdev_register(%s, %s) failed: %d\n", blkdev, chardev, ret); in block_proxy()
|
/third_party/NuttX/drivers/bch/ |
D | bchlib_setup.c | 47 int bchlib_setup(const char *blkdev, bool readonly, void **handle) in bchlib_setup() argument 54 DEBUGASSERT(blkdev); in bchlib_setup() 67 ret = open_blockdriver(blkdev, readonly ? MS_RDONLY : 0, &bch->vnode); in bchlib_setup() 70 PRINTK("ERROR: Failed to open driver %s: %d\n", blkdev, -ret); in bchlib_setup()
|
D | bchdev_register.c | 42 int bchdev_register(const char *blkdev, const char *chardev, in bchdev_register() argument 50 ret = bchlib_setup(blkdev, readonly, &handle); in bchdev_register()
|
D | bch.h | 85 EXTERN int bchlib_setup(const char *blkdev, bool readonly, void **handle);
|
/third_party/ntfs-3g/libfuse-lite/ |
D | mount.c | 65 int blkdev; member 70 int blkdev; member 85 FUSE_MOUNT_OPT("blkdev", blkdev), 119 FUSE_MOUNT_OPT("blkdev", blkdev), 538 strcpy(type, mo->blkdev ? "fuseblk" : "fuse"); in fuse_mount_sys() 552 strcpy(type, mo->blkdev ? "fuseblk" : "fuse"); in fuse_mount_sys() 554 if (!mo->blkdev) in fuse_mount_sys() 572 if (mo->blkdev && errno == ENODEV && !fuse_mnt_check_fuseblk()) in fuse_mount_sys()
|
D | fusermount.c | 350 int blkdev = 0; in do_mount() local 366 blkdev = 1; in do_mount() 419 strcpy(type, blkdev ? "fuseblk" : "fuse"); in do_mount() 441 if (blkdev && errno == ENODEV && !fuse_mnt_check_fuseblk()) in do_mount()
|
/third_party/ntfs-3g/src/ |
D | ntfs-3g_common.h | 158 BOOL blkdev; member
|
D | ntfs-3g.c | 4027 if (!ctx->blkdev) in ntfs_open() 4445 ctx->blkdev = TRUE; in main() 4449 if (getuid() && ctx->blkdev) { in main() 4470 if (ctx->blkdev && set_fuseblk_options(&parsed_options)) in main()
|
D | lowntfs-3g.c | 4315 if (!ctx->blkdev) 4717 ctx->blkdev = TRUE; 4721 if (getuid() && ctx->blkdev) { 4742 if (ctx->blkdev && set_fuseblk_options(&parsed_options))
|
/third_party/ntfs-3g/ntfsprogs/ |
D | ntfsclone.c | 545 BOOL blkdev = opt.output[0] && (opt.output[1] == ':') local 548 if (!blkdev && (stat(opt.output, &st) == -1)) { 561 if (blkdev) {
|