HomeSort by relevance Sort by last modified time
    Searched refs:Mount (Results 1 - 25 of 52) sorted by null

1 2 3

  /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(int dev, StringMap_t& args, PepperInterface* ppapi) {
35 void Mount::Destroy() {}
37 Error Mount::OpenResource(const Path& path, ScopedMountNode* out_node) {
42 int Mount::OpenModeToPermission(int mode) {
55 void Mount::OnNodeCreated(MountNode* node)
    [all...]
mount_node_char.h 14 explicit MountNodeCharDevice(Mount* mount) : MountNode(mount) {
mount_factory.h 17 class Mount;
27 sdk_util::ScopedRef<Mount>* out_mount) = 0;
mount.h 22 class Mount;
26 typedef sdk_util::ScopedRef<Mount> ScopedMount;
31 class Mount : public sdk_util::RefObject {
34 // acquire or release the mount's lock.
35 Mount();
36 virtual ~Mount();
38 // Init must be called by the factory before the mount is used.
40 // |ppapi| can be NULL. If so, this mount cannot make any pepper calls.
60 // OpenResource is only used to read files from the NaCl NMF file. No mount
82 // Device number for the mount
    [all...]
mount_node.h 22 class Mount;
31 explicit MountNode(Mount* mount);
45 // must not be called by the mount.
92 // Directory operations on the node are done by the Mount. The mount's lock
114 // to track it's parent. When a node is unlinked, the mount should do
116 Mount* mount_;
118 friend class Mount;
mount_node_mem.h 14 explicit MountNodeMem(Mount* mount);
mount_dev.h 8 #include "nacl_io/mount.h"
15 class MountDev : public Mount {
mount_passthrough.h 8 #include "nacl_io/mount.h"
13 class MountPassthrough : public Mount {
mount_dev.cc 35 RealNode(Mount* mount, int fd);
50 explicit NullNode(Mount* mount) : MountNodeCharDevice(mount) {}
61 ConsoleNode(Mount* mount, PP_LogLevel level);
74 explicit ZeroNode(Mount* mount);
85 explicit UrandomNode(Mount* mount)
    [all...]
mount_html5fs.h 10 #include "nacl_io/mount.h"
19 class MountHtml5Fs : public Mount {
mount_mem.h 8 #include "nacl_io/mount.h"
13 class MountMem : public Mount {
20 // acquire or release the mount's lock themselves. The caller is
mount_node_html5fs.h 19 // must not be called by the mount.
36 MountNodeHtml5Fs(Mount* mount, PP_Resource fileref);
mount_node_tty.h 21 explicit MountNodeTty(Mount* mount);
mount_http.h 10 #include "nacl_io/mount.h"
22 class MountHttp : public Mount {
48 // |path| is relative to the mount point for the HTTP filesystem.
mount_node_dir.h 25 explicit MountNodeDir(Mount* mnt);
mount_node_http.h 39 MountNodeHttp(Mount* mount, const std::string& url, bool cache_content);
mount_passthrough.cc 13 explicit MountNodePassthrough(Mount* mount, int real_fd)
14 : MountNode(mount), real_fd_(real_fd) {}
111 return Mount::Init(dev, args, ppapi);
mount_node_mem.cc 18 MountNodeMem::MountNodeMem(Mount* mount)
19 : MountNode(mount), data_(NULL), capacity_(0) {
  /external/chromium_org/native_client_sdk/src/libraries/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 {
mount_node_mock.h 10 #include "nacl_io/mount.h"
17 explicit MountNodeMock(nacl_io::Mount*);
  /external/chromium/chrome/browser/chromeos/cros/
cros_library.cc 65 DEFINE_GET_LIBRARY_METHOD(Mount, mount);
122 DEFINE_SET_LIBRARY_METHOD(Mount, mount);
cryptohome_library.h 61 // mount it using |passhash| to unlock the key.
62 virtual bool Mount(const std::string& user_email,
67 // |user_email| and then mount it using |passhash| to unlock the key.
80 // Asks cryptohomed to mount a tmpfs for BWSI mode.
83 // Asks cryptohomed to asynchronously to mount a tmpfs for BWSI mode.
  /external/chromium_org/chromeos/dbus/
fake_cros_disks_client.cc 21 void FakeCrosDisksClient::Mount(const std::string& source_path,
fake_cros_disks_client.h 23 virtual void Mount(const std::string& source_path,

Completed in 87 milliseconds

1 2 3