Searched refs:fuse_ops (Results 1 – 12 of 12) sorted by relevance
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
D | fuse_mount_factory.cc | 11 FuseMountFactory::FuseMountFactory(fuse_operations* fuse_ops) in FuseMountFactory() argument 12 : fuse_ops_(fuse_ops) {} in FuseMountFactory() 17 args_copy.fuse_ops = fuse_ops_; in CreateMount()
|
D | mount.h | 35 MountInitArgs() : dev(0), ppapi(NULL), fuse_ops(NULL) {} in MountInitArgs() 36 explicit MountInitArgs(int dev) : dev(dev), ppapi(NULL), fuse_ops(NULL) {} in MountInitArgs() 42 fuse_operations* fuse_ops; member
|
D | nacl_io.cc | 20 fuse_operations* fuse_ops) { in nacl_io_register_mount_type() argument 21 return ki_register_mount_type(mount_type, fuse_ops); in nacl_io_register_mount_type()
|
D | mount_fuse.cc | 40 fuse_ops_ = args.fuse_ops; in Init() 208 struct fuse_operations* fuse_ops, in MountNodeFuse() argument 212 fuse_ops_(fuse_ops), in MountNodeFuse() 278 struct fuse_operations* fuse_ops, in MountNodeFuseFile() argument 281 : MountNodeFuse(mount, fuse_ops, info, path) {} in MountNodeFuseFile() 354 struct fuse_operations* fuse_ops, in MountNodeFuseDir() argument 357 : MountNodeFuse(mount, fuse_ops, info, path) {} in MountNodeFuseDir()
|
D | mount_fuse.h | 45 struct fuse_operations* fuse_ops, 68 struct fuse_operations* fuse_ops, 95 struct fuse_operations* fuse_ops,
|
D | nacl_io.h | 169 struct fuse_operations* fuse_ops);
|
D | fuse_mount_factory.h | 17 explicit FuseMountFactory(fuse_operations* fuse_ops);
|
D | kernel_intercept.cc | 54 struct fuse_operations* fuse_ops) { in ki_register_mount_type() argument 55 return s_kp->RegisterMountType(mount_type, fuse_ops); in ki_register_mount_type()
|
D | kernel_intercept.h | 37 struct fuse_operations* fuse_ops);
|
D | kernel_proxy.h | 55 bool RegisterMountType(const char* mount_type, fuse_operations* fuse_ops);
|
D | kernel_proxy.cc | 129 fuse_operations* fuse_ops) { in RegisterMountType() argument 134 factories_[mount_type] = new FuseMountFactory(fuse_ops); in RegisterMountType()
|
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
D | mount_fuse_test.cc | 24 explicit MountFuseForTesting(fuse_operations* fuse_ops) { in MountFuseForTesting() argument 26 args.fuse_ops = fuse_ops; in MountFuseForTesting()
|