/external/genext2fs/ |
README | 1 genext2fs generates an ext2 filesystem as a normal (non-root) user.
|
/external/yaffs2/yaffs2/ |
Makefile | 2 # Makefile for the linux YAFFS filesystem routines.
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/ |
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)
|
/cts/tests/tests/net/src/android/net/cts/ |
LocalSocketAddress_NamespaceTest.java | 27 assertEquals(Namespace.FILESYSTEM, Namespace.valueOf("FILESYSTEM")); 34 assertEquals(Namespace.FILESYSTEM, expected[2]);
|
/external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/ |
ps_interface.cc | 18 DEFINE_INTERFACE_FUNC(FileSystem) 47 REQUEST_INTERFACE(FileSystem, FILESYSTEM)
|
/external/chromium_org/webkit/browser/fileapi/ |
file_system_url.h | 19 // A class representing a filesystem URL which consists of origin URL, 20 // type and an internal path used inside the filesystem. 22 // When a FileSystemURL instance is created for a GURL (for filesystem: scheme), 25 // Example: For a URL 'filesystem:http://foo.com/temporary/foo/bar': 34 // FileSystemURL can also be created to represent a 'cracked' filesystem URL if 36 // further resolved to a lower filesystem type/path. 42 // 'filesystem:http://bar.com/external/mount_name/foo/bar': 71 // TODO(ericu): Look into making virtual_path() [and all FileSystem API virtual 90 // Parses filesystem scheme |url| into uncracked FileSystemURL components. 96 // Returns true if this instance represents a valid FileSystem URL [all...] |
file_system_context.h | 68 // This class keeps and provides a file system context for FileSystem API. 77 // Note: if a part of a filesystem is returned via 'Isolated' mount point, 78 // its per-filesystem permission overrides the underlying filesystem's 95 // to serve filesystem requests for non-regular types. 96 // If none is given, this context only handles HTML5 Sandbox FileSystem 97 // and Drag-and-drop Isolated FileSystem requests. 127 // Returns a quota util for a given filesystem type. This may 142 // This may return NULL if it is given an invalid or unsupported filesystem 153 // Returns observers for the given filesystem type [all...] |
file_system_backend.h | 40 // FileSystem module, please contact to kinuko@chromium.org. 51 // Returns true if this filesystem backend can handle |type|. 52 // One filesystem backend may be able to handle multiple filesystem types. 60 // Opens the filesystem for the given |origin_url| and |type|. 61 // This verifies if it is allowed to request (or create) the filesystem 65 // the filesystem if it doesn't exist. 92 // Creates a new file stream reader for a given filesystem URL |url| with an 106 // Creates a new file stream writer for a given filesystem URL |url| with an 142 // Gets virtual path by known filesystem path. Returns false when filesyste [all...] |
file_system_usage_cache.cc | 48 TRACE_EVENT0("FileSystem", "UsageCache::GetUsage"); 62 TRACE_EVENT0("FileSystem", "UsageCache::GetDirty"); 76 TRACE_EVENT0("FileSystem", "UsageCache::IncrementDirty"); 93 TRACE_EVENT0("FileSystem", "UsageCache::DecrementDirty"); 108 TRACE_EVENT0("FileSystem", "UsageCache::Invalidate"); 120 TRACE_EVENT0("FileSystem", "UsageCache::IsValid"); 132 TRACE_EVENT0("FileSystem", "UsageCache::AtomicUpdateUsageByDelta"); 144 TRACE_EVENT0("FileSystem", "UsageCache::UpdateUsage"); 150 TRACE_EVENT0("FileSystem", "UsageCache::Exists"); 156 TRACE_EVENT0("FileSystem", "UsageCache::Delete") [all...] |
/external/e2fsprogs/lib/ext2fs/ |
ext2_err.c | 29 "Filesystem revision too high", 30 "Attempt to write to filesystem opened read-only", 43 "Filesystem has unexpected block size", 45 "Attempt to read block from filesystem resulted in short read", 46 "Attempt to write block from filesystem resulted in short write", 53 "Not enough space to build proposed filesystem", 76 "Filesystem has unsupported feature(s)", 77 "Filesystem has unsupported read-only feature(s)", 81 "Could not allocate block in ext2 filesystem", 82 "Could not allocate inode in ext2 filesystem", [all...] |
/external/e2fsprogs/tests/f_badprimary/ |
expect.1 | 0 Filesystem did not have a UUID; generating one. 6 If the block is really bad, the filesystem can not be fixed. 14 If the block is really bad, the filesystem can not be fixed.
|
/external/chromium_org/webkit/common/fileapi/ |
file_system_util.h | 68 // Returns the root URI of the filesystem that can be specified by a pair of 70 // of the filesystem (e.g. <returned_URI> + "/relative/path" will compose 71 // a path pointing to the entry "/relative/path" in the filesystem). 73 // For Isolated filesystem this returns the 'common' root part, e.g. 74 // returns URL without the filesystem ID. 80 // Returns the name for the filesystem that is specified by a pair of 83 // but can be read as the .name field of the returned FileSystem object 89 // The name for a TEMPORARY filesystem of "http://www.example.com:80/" 96 // (Basically this naively maps TEMPORARY storage type to TEMPORARY filesystem 97 // type, PERSISTENT storage type to PERSISTENT filesystem type and vice versa. [all...] |
/external/chromium_org/chrome/browser/sync_file_system/local/ |
local_file_sync_status_unittest.cc | 17 const char kParent[] = "filesystem:http://foo.com/test/dir a"; 18 const char kFile[] = "filesystem:http://foo.com/test/dir a/dir b"; 19 const char kChild[] = "filesystem:http://foo.com/test/dir a/dir b/file"; 21 const char kOther1[] = "filesystem:http://foo.com/test/dir b"; 22 const char kOther2[] = "filesystem:http://foo.com/temporary/dir a";
|
/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/common/system/ |
fileset.py | 24 from webkitpy.common.system.filesystem import FileSystem 29 def __init__(self, fileset, filename, filesystem=None): 33 self._filesystem = filesystem or FileSystem()
|
systemhost.py | 33 from webkitpy.common.system import environment, executive, filesystem, platforminfo, user, workspace namespace 39 self.filesystem = filesystem.FileSystem() 42 self.workspace = workspace.Workspace(self.filesystem, self.executive)
|
zipfileset.py | 29 from webkitpy.common.system.filesystem import FileSystem 34 def __init__(self, zip_url, filesystem=None, zip_factory=None): 38 self._filesystem = filesystem or FileSystem()
|
/system/vold/ |
Fat.cpp | 72 SLOGE("Filesystem check failed due to logwrap error"); 78 SLOGE("Filesystem check did not exit properly"); 87 SLOGI("Filesystem check completed OK"); 91 SLOGE("Filesystem check failed (not a FAT filesystem)"); 97 SLOGW("Filesystem modified - rechecking (pass %d)", 106 SLOGE("Filesystem check failed (unknown exit code %d)", status); 149 SLOGE("%s appears to be a read only filesystem - retrying mount RO", fsPath); 206 SLOGE("Filesystem format failed due to logwrap error"); 212 SLOGE("Filesystem format did not exit properly") [all...] |
/external/chromium_org/chrome/browser/sync_file_system/ |
syncable_file_system_util_unittest.cc | 25 "filesystem:http://www.example.com/external/syncfs/"; 27 "filesystem:http://www.example.com/external/non_registered/"; 29 "filesystem:http://www.example.com/temporary/"; 96 // Expected to fail in serializing URLs of non-registered filesystem and 97 // non-syncable filesystem. 105 // non-registered filesystem and non-syncable filesystem.
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
chained_compiled_file_system.py | 14 Factory construction) + the main FileSystem (injected at Creation time). 16 The expected configuration is that the main FileSystem is a PatchedFileSystem 17 and the chain the FileSystem which it patches, but with file systems 22 data for PatchedFileSystems, which are very similar to the FileSystem which 58 # Strategy: Get the current version of |path| in main FileSystem, then run 59 # through |_compiled_fs_chain| in *reverse* to find the "oldest" FileSystem 62 # Obviously, if files have been added in the main FileSystem then none of
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
DOMWindowFileSystem.cpp | 27 #include "modules/filesystem/DOMWindowFileSystem.h" 32 #include "modules/filesystem/DOMFileSystem.h" 33 #include "modules/filesystem/EntryCallback.h" 34 #include "modules/filesystem/ErrorCallback.h" 35 #include "modules/filesystem/FileSystemCallback.h" 36 #include "modules/filesystem/FileSystemCallbacks.h" 37 #include "modules/filesystem/LocalFileSystem.h"
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/ |
detection.py | 32 from webkitpy.common.system.filesystem import FileSystem 42 def __init__(self, filesystem, executive): 43 self._filesystem = filesystem 72 return SVN(cwd=absolute_path, patch_directories=patch_directories, filesystem=self._filesystem, executive=self._executive) 75 return Git(cwd=absolute_path, filesystem=self._filesystem, executive=self._executive) 83 return SCMDetector(FileSystem(), Executive()).detect_scm_system(path, patch_directories)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/ |
perftestsrunner.py | 140 def _is_test_file(filesystem, dirname, filename): 141 return filesystem.splitext(filename)[1] in test_extensions 143 filesystem = self._host.filesystem 147 if filesystem.exists(filesystem.join(self._base_path, arg)): 150 relpath = filesystem.relpath(arg, self._base_path) 151 if filesystem.exists(filesystem.join(self._base_path, relpath)): 152 paths.append(filesystem.normpath(relpath) [all...] |
/external/e2fsprogs/debugfs/ |
debug_cmds.ct | 10 request do_open_filesys, "Open a filesystem", 13 request do_close_filesys, "Close the filesystem", 19 request do_dirty_filesys, "Mark the filesystem as dirty", 22 request do_init_filesys, "Initialize a filesystem (DESTROYS DATA)", 112 request do_write, "Copy a file from your native filesystem", 121 request do_lcd, "Change the current directory on your native filesystem", 124 request do_rdump, "Recursively dump a directory to the native filesystem",
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/ |
rebaselineserver.py | 48 test_results_directory = test_config.filesystem.join( 52 for filename in test_config.filesystem.listdir(test_results_directory): 66 filesystem = test_config.filesystem 70 target_expectations_directory = filesystem.join( 72 test_results_directory = test_config.filesystem.join( 110 filesystem.maybe_make_directory(target_expectations_directory) 112 source_path = filesystem.join(test_results_directory, source_file) 114 destination_path = filesystem.join( 116 filesystem.copyfile(source_path, destination_path [all...] |