/external/chromium_org/ppapi/cpp/ |
file_system.h | 22 /// The <code>FileSystem</code> class identifies the file system type 24 class FileSystem : public Resource { 26 /// Constructs an is_null() filesystem resource. If you use this constructor, 27 /// you will have to assign it to a "real" FileSystem object before you can 29 FileSystem(); 31 /// The copy constructor for <code>FileSystem</code>. 33 /// @param[in] other A reference to a <code>FileSystem</code>. 34 FileSystem(const FileSystem& other); 36 /// Constructs a <code>FileSystem</code> from a <code>Resource</code> [all...] |
file_system.cc | 26 FileSystem::FileSystem() { 29 FileSystem::FileSystem(const FileSystem& other) : Resource(other) { 32 FileSystem::FileSystem(const Resource& resource) : Resource(resource) { 41 FileSystem::FileSystem(PassRef, PP_Resource resource) 45 FileSystem::FileSystem(const InstanceHandle& instance [all...] |
file_ref.h | 21 class FileSystem; 52 /// @param[in] file_system A <code>FileSystem</code> corresponding to a file 55 FileRef(const FileSystem& file_system, const char* path); 85 /// <code>file_ref</code> points to the root of the filesystem, then the root 119 /// file if it exists in the external filesystem. 156 /// read this file or directory if it exists in the external filesystem.
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
fail_on_access_file_system.py | 5 from file_system import FileSystem 7 class FailOnAccessFileSystem(FileSystem):
|
empty_dir_file_system.py | 5 from file_system import FileNotFoundError, FileSystem, StatInfo 8 class EmptyDirFileSystem(FileSystem): 9 '''A FileSystem with empty directories. Useful to inject places to disable
|
offline_file_system.py | 5 from file_system import FileSystem, FileNotFoundError 9 class OfflineFileSystem(FileSystem): 10 '''An offline FileSystem which masquerades as another file system. It throws
|
chroot_file_system.py | 8 from file_system import FileSystem 12 class ChrootFileSystem(FileSystem): 13 '''ChrootFileSystem(fs, path) exposes a FileSystem whose root is |path| inside 20 |file_system| The FileSystem instance to transpose paths of.
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
HTMLInputElementFileSystem.idl | 32 [RuntimeEnabled=FileSystem,CallWith=ExecutionContext] readonly attribute Entry[] webkitEntries;
|
WorkerGlobalScopeFileSystem.idl | 31 [RuntimeEnabled=FileSystem] void webkitRequestFileSystem(unsigned short type, long long size, optional FileSystemCallback successCallback, optional ErrorCallback errorCallback); 32 [RuntimeEnabled=FileSystem, RaisesException] DOMFileSystemSync webkitRequestFileSystemSync(unsigned short type, long long size); 33 [RuntimeEnabled=FileSystem] void webkitResolveLocalFileSystemURL(DOMString url, EntryCallback successCallback, optional ErrorCallback errorCallback); 34 [RuntimeEnabled=FileSystem, RaisesException] EntrySync webkitResolveLocalFileSystemSyncURL(DOMString url); 36 [RuntimeEnabled=FileSystem] attribute FileErrorConstructor FileError;
|
WindowFileSystem.idl | 33 [RuntimeEnabled=FileSystem] void webkitRequestFileSystem(unsigned short type, long long size, 35 [RuntimeEnabled=FileSystem] void webkitResolveLocalFileSystemURL(DOMString url,
|
/external/chromium_org/ppapi/cpp/private/ |
ext_crx_file_system_private.h | 23 int32_t Open(const CompletionCallbackWithOutput<pp::FileSystem>& cc);
|
isolated_file_system_private.h | 25 int32_t Open(const CompletionCallbackWithOutput<pp::FileSystem>& cc);
|
ext_crx_file_system_private.cc | 31 const CompletionCallbackWithOutput<pp::FileSystem>& cc) {
|
isolated_file_system_private.cc | 33 const CompletionCallbackWithOutput<pp::FileSystem>& cc) {
|
/external/chromium_org/ppapi/tests/ |
test_file_system.cc | 16 REGISTER_TEST_CASE(FileSystem); 32 pp::FileSystem file_system(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY); 40 pp::FileSystem fs(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY); 53 pp::FileSystem file_system(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY); 59 // FileSystem should not allow multiple opens. 75 // Test conversion from file system Resource to FileSystem. 76 pp::FileSystem file_system(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY); 78 ASSERT_TRUE(pp::FileSystem::IsFileSystem(file_system_resource)); 79 pp::FileSystem file_system_resource_file_system(file_system_resource); 83 // FileSystem. (We cannot test conversion, since this is an assertion on [all...] |
test_file_io.h | 14 class FileSystem; 59 std::string MatchOpenExpectations(pp::FileSystem* file_system,
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
file_system.cc | 207 FileSystem::FileSystem( 229 FileSystem::~FileSystem() { 235 void FileSystem::Reload(const FileOperationCallback& callback) { 247 base::Bind(&FileSystem::ReloadAfterReset, 252 void FileSystem::ReloadAfterReset(const FileOperationCallback& callback, 263 base::Bind(&FileSystem::OnUpdateChecked, weak_ptr_factory_.GetWeakPtr())); 267 void FileSystem::ResetComponents() { 348 void FileSystem::CheckForUpdates() [all...] |
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/ |
FileSystem.java | 30 public interface FileSystem { 33 * Gets the root entry of this filesystem. This is usually a directory, but 42 * Returns if this {@code FileSystem} is in read-only mode. 44 * @return if this {@code FileSystem} is read-only
|
FileSystemFactory.java | 25 * Factory for {@link FileSystem} instances. 35 * Creates a new {@link FileSystem} for the specified {@code device}. When 43 * @return a new {@code FileSystem} instance for the specified device 48 public static FileSystem create(BlockDevice device, boolean readOnly)
|
AbstractFileSystem.java | 25 * Abstract class with common things in different FileSystem implementations. 30 public abstract class AbstractFileSystem implements FileSystem { 66 * Checks if this {@code FileSystem} was already closed, and throws an 69 * @throws IllegalStateException if this {@code FileSystem} was 81 * Checks if this {@code FileSystem} is read-only, and throws an 84 * @throws ReadOnlyException if this {@code FileSystem} is read-only
|
/external/chromium_org/chrome/browser/devtools/ |
devtools_file_helper.h | 30 struct FileSystem { 31 FileSystem(); 32 FileSystem(const std::string& file_system_name, 47 void(const std::vector<DevToolsFileHelper::FileSystem>&)> 49 typedef base::Callback<void(const DevToolsFileHelper::FileSystem&)> 73 // If user cancels folder selection, passes empty FileSystem struct to 78 // permissions, registers isolated file system for it and passes FileSystem 89 // permissions, registers isolated file system for it and passes FileSystem 100 // FileSystem structs for registered file systems to |callback|.
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/ |
find_files_unittest.py | 32 from webkitpy.common.system.filesystem import FileSystem 45 def assert_filesystem_normalizes(self, filesystem): 46 self.assertEqual(find_files._normalize(filesystem, "c:\\foo", 61 self.assert_filesystem_normalizes(FileSystem())
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/ |
patchreader.py | 36 from webkitpy.common.system.filesystem import FileSystem 57 fs = fs or FileSystem() 72 cwd = FileSystem().getcwd()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
filesystem_unittest.py | 40 from webkitpy.common.system.filesystem import FileSystem 44 """Tests that should pass on either a real or mock filesystem.""" 124 self.fs = FileSystem() 136 fs = FileSystem() 146 fs = FileSystem() 153 fs = FileSystem() 157 fs = FileSystem() 161 fs = FileSystem() 165 fs = FileSystem() [all...] |
/external/chromium_org/content/test/data/fileapi/ |
create_test.js | 13 debug('Requesting FileSystem');
|