HomeSort by relevance Sort by last modified time
    Searched defs:Filesystem (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
filesystem.cc 5 #include "nacl_io/filesystem.h"
26 Filesystem::Filesystem() : dev_(0) {
29 Filesystem::~Filesystem() {
32 Error Filesystem::Init(const FsInitArgs& args) {
38 void Filesystem::Destroy() {
41 Error Filesystem::OpenResource(const Path& path, ScopedNode* out_node) {
46 void Filesystem::OnNodeCreated(Node* node) {
51 void Filesystem::OnNodeDestroyed(Node* node)
    [all...]
filesystem.h 24 class Filesystem;
28 typedef sdk_util::ScopedRef<Filesystem> ScopedFilesystem;
31 // This structure is passed to all filesystems via the Filesystem::Init virtual
38 // Device number of the new filesystem.
47 class Filesystem : public sdk_util::RefObject {
50 // acquire or release the filesystem's lock.
51 Filesystem();
52 virtual ~Filesystem();
54 // Init must be called by the factory before the filesystem is used.
55 // |ppapi| can be NULL. If so, this filesystem cannot make any pepper calls
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
fileutils.h 61 friend class Filesystem;
218 // Returns true if pathname refers to no filesystem object, every parent
286 class Filesystem {
293 static void set_default_filesystem(FilesystemInterface *filesystem) {
294 default_filesystem_ = filesystem;
298 FilesystemInterface *filesystem) {
300 default_filesystem_ = filesystem;
432 DISALLOW_IMPLICIT_CONSTRUCTORS(Filesystem);
438 old_fs_ = Filesystem::swap_default_filesystem(new_fs);
441 Filesystem::set_default_filesystem(old_fs_)
    [all...]
  /external/chromium_org/third_party/webrtc/base/
fileutils.h 44 friend class Filesystem;
201 // Returns true if pathname refers to no filesystem object, every parent
269 class Filesystem {
276 static void set_default_filesystem(FilesystemInterface *filesystem) {
277 default_filesystem_ = filesystem;
281 FilesystemInterface *filesystem) {
283 default_filesystem_ = filesystem;
415 DISALLOW_IMPLICIT_CONSTRUCTORS(Filesystem);
421 old_fs_ = Filesystem::swap_default_filesystem(new_fs);
424 Filesystem::set_default_filesystem(old_fs_)
    [all...]

Completed in 84 milliseconds