/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
mount.cc | 5 #include "nacl_io/mount.h" 25 Mount::Mount() : dev_(0) {} 27 Mount::~Mount() {} 29 Error Mount::Init(const MountInitArgs& args) { 35 void Mount::Destroy() {} 37 Error Mount::OpenResource(const Path& path, ScopedMountNode* out_node) { 42 void Mount::OnNodeCreated(MountNode* node) { 47 void Mount::OnNodeDestroyed(MountNode* node) [all...] |
mount_factory.h | 16 class Mount; 23 sdk_util::ScopedRef<Mount>* out_mount) = 0;
|
mount_node_char.h | 14 explicit MountNodeCharDevice(Mount* mount) : MountNode(mount) {
|
mount.h | 24 class Mount; 28 typedef sdk_util::ScopedRef<Mount> ScopedMount; 31 // This structure is passed to all mounts via the Mount::Init virtual function. 47 class Mount : public sdk_util::RefObject { 50 // acquire or release the mount's lock. 51 Mount(); 52 virtual ~Mount(); 54 // Init must be called by the factory before the mount is used. 55 // |ppapi| can be NULL. If so, this mount cannot make any pepper calls. 75 // OpenResource is only used to read files from the NaCl NMF file. No mount [all...] |
mount_mem.h | 8 #include "nacl_io/mount.h" 13 class MountMem : public Mount { 17 using Mount::Init; 21 // acquire or release the mount's lock themselves. The caller is
|
mount_node.h | 27 class Mount; 37 explicit MountNode(Mount* mount); 55 // must not be called by the mount. 107 // Directory operations on the node are done by the Mount. The mount's lock 129 // to track it's parent. When a node is unlinked, the mount should do 131 Mount* mount_; 133 friend class Mount;
|
mount_node_mem.h | 16 explicit MountNodeMem(Mount* mount);
|
mount_node_pipe.h | 18 explicit MountNodePipe(Mount* mnt);
|
mount_dev.h | 8 #include "nacl_io/mount.h" 15 class MountDev : public Mount {
|
mount_fuse.h | 11 #include "nacl_io/mount.h" 17 class MountFuse : public Mount { 44 MountNodeFuse(Mount* mount, 67 MountNodeFuseFile(Mount* mount, 94 MountNodeFuseDir(Mount* mount,
|
mount_passthrough.h | 8 #include "nacl_io/mount.h" 13 class MountPassthrough : public Mount {
|
mount_node_tcp.h | 22 explicit MountNodeTCP(Mount* mount); 23 MountNodeTCP(Mount* mount, PP_Resource socket);
|
mount_dev.cc | 35 RealNode(Mount* mount, int fd); 53 explicit NullNode(Mount* mount) : MountNodeCharDevice(mount) {} 67 ConsoleNode(Mount* mount, PP_LogLevel level); 80 explicit ZeroNode(Mount* mount); 94 explicit UrandomNode(Mount* mount) [all...] |
mount_html5fs.h | 10 #include "nacl_io/mount.h" 19 class MountHtml5Fs : public Mount {
|
mount_node_html5fs.h | 19 // must not be called by the mount. 42 MountNodeHtml5Fs(Mount* mount, PP_Resource fileref);
|
mount_node_stream.cc | 19 MountNodeStream::MountNodeStream(Mount* mnt)
|
mount_node_stream.h | 40 explicit MountNodeStream(Mount* mnt);
|
mount_node_tty.h | 22 explicit MountNodeTty(Mount* mount);
|
mount_node_udp.h | 22 explicit MountNodeUDP(Mount* mount);
|
mount_http.h | 10 #include "nacl_io/mount.h" 18 class MountHttp : public Mount { 47 // |path| is relative to the mount point for the HTTP filesystem.
|
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
mount_node_mock.cc | 7 MountNodeMock::MountNodeMock(nacl_io::Mount* mount) : MountNode(mount) {}
|
mount_mock.h | 10 #include "nacl_io/mount.h" 12 class MountMock : public nacl_io::Mount {
|
/external/chromium_org/chrome/browser/chromeos/extensions/file_system_provider/ |
file_system_provider_apitest.cc | 20 IN_PROC_BROWSER_TEST_F(FileSystemProviderApiTest, Mount) { 21 ASSERT_TRUE(RunPlatformAppTest("file_system_provider/mount"))
|
file_system_provider_api.cc | 34 using extensions::api::file_system_provider::Mount::Params;
|
/external/chromium/chrome/browser/chromeos/cros/ |
cros_library.cc | 65 DEFINE_GET_LIBRARY_METHOD(Mount, mount); 122 DEFINE_SET_LIBRARY_METHOD(Mount, mount);
|