Searched refs:FileSystem (Results 1 - 25 of 111) sorted by path

12345

/external/chromium_org/build/android/pylib/utils/
H A Dflakiness_dashboard_results_uploader.py47 self._filesystem = filesystem.FileSystem()
/external/chromium_org/chrome/browser/chromeos/drive/
H A Ddrive_integration_service.cc268 test_file_system ? test_file_system : new FileSystem(
H A Dfile_system.cc241 struct FileSystem::CreateDirectoryParams {
248 FileSystem::FileSystem( function in class:drive::FileSystem
272 FileSystem::~FileSystem() {
279 void FileSystem::Reset(const FileOperationCallback& callback) {
294 void FileSystem::ResetComponents() {
383 void FileSystem::CheckForUpdates() {
388 base::Bind(&FileSystem::OnUpdateChecked, weak_ptr_factory_.GetWeakPtr()));
391 void FileSystem
[all...]
H A Dfile_system.h64 class FileSystem : public FileSystemInterface, class in namespace:drive
68 FileSystem(PrefService* pref_service,
76 virtual ~FileSystem();
296 base::WeakPtrFactory<FileSystem> weak_ptr_factory_;
298 DISALLOW_COPY_AND_ASSIGN(FileSystem);
H A Dfile_system_unittest.cc125 file_system_.reset(new FileSystem(
310 scoped_ptr<FileSystem> file_system_;
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_file_helper.cc169 DevToolsFileHelper::FileSystem CreateFileSystemStruct(
182 return DevToolsFileHelper::FileSystem(file_system_name,
200 DevToolsFileHelper::FileSystem::FileSystem() { function in class:DevToolsFileHelper::FileSystem
203 DevToolsFileHelper::FileSystem::FileSystem(const std::string& file_system_name, function in class:DevToolsFileHelper::FileSystem
313 Bind(callback, FileSystem()),
326 callback.Run(FileSystem());
349 callback.Run(FileSystem());
369 callback.Run(FileSystem());
[all...]
H A Ddevtools_file_helper.h30 struct FileSystem { struct in class:DevToolsFileHelper
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|.
H A Ddevtools_ui_bindings.cc79 DevToolsFileHelper::FileSystem file_system) {
654 const std::vector<DevToolsFileHelper::FileSystem>& file_systems) {
663 const DevToolsFileHelper::FileSystem& file_system) {
H A Ddevtools_ui_bindings.h140 const std::vector<DevToolsFileHelper::FileSystem>& file_systems);
141 void FileSystemAdded(const DevToolsFileHelper::FileSystem& file_system);
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dcaching_file_system.py8 from file_system import FileSystem, StatInfo, FileNotFoundError namespace
14 class CachingFileSystem(FileSystem):
15 '''FileSystem which implements a caching layer on top of |file_system|. It's
H A Dchroot_file_system.py8 from file_system import FileSystem namespace
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.
H A Dempty_dir_file_system.py5 from file_system import FileNotFoundError, FileSystem, StatInfo namespace
10 class EmptyDirFileSystem(FileSystem):
11 '''A FileSystem with empty directories. Useful to inject places to disable
H A Dfail_on_access_file_system.py5 from file_system import FileSystem namespace
7 class FailOnAccessFileSystem(FileSystem):
H A Dfile_system.py41 '''The result of calling Stat on a FileSystem.
66 class FileSystem(object): class in inherits:object
67 '''A FileSystem interface that can read files and directories.
88 '''Reads a single file from the FileSystem. Returns a Future with the same
118 '''Asynchronously refreshes the content of the FileSystem, returning a
185 return (isinstance(other, FileSystem) and
H A Dgcs_file_system.py10 from file_system import FileSystem, FileNotFoundError, StatInfo namespace
67 class CloudStorageFileSystem(FileSystem):
68 '''FileSystem implementation which fetches resources from Google Cloud
H A Dgithub_file_system.py14 from file_system import FileSystem, StatInfo namespace
64 class GithubFileSystem(FileSystem):
H A Dlocal_file_system.py9 from file_system import FileSystem, FileNotFoundError, StatInfo namespace
67 class LocalFileSystem(FileSystem):
68 '''FileSystem implementation which fetches resources from the local
H A Dmock_file_system.py7 from file_system import FileSystem, FileNotFoundError namespace
13 class MockFileSystem(FileSystem):
37 # FileSystem implementation.
H A Dnew_github_file_system.py16 from file_system import FileNotFoundError, FileSystem, FileSystemError, StatInfo namespace
95 class GithubFileSystem(FileSystem):
H A Doffline_file_system.py5 from file_system import FileSystem, FileNotFoundError namespace
9 class OfflineFileSystem(FileSystem):
10 '''An offline FileSystem which masquerades as another file system. It throws
H A Dpatched_file_system.py7 from file_system import FileSystem, StatInfo, FileNotFoundError namespace
35 class PatchedFileSystem(FileSystem):
H A Dsubversion_file_system.py14 FileNotFoundError, FileSystem, FileSystemError, StatInfo)
137 class SubversionFileSystem(FileSystem):
H A Dtest_file_system.py5 from file_system import FileSystem, FileNotFoundError, StatInfo namespace
98 class TestFileSystem(FileSystem):
99 '''A FileSystem backed by an object. Create with an object representing file
114 # FileSystem implementation.
/external/chromium_org/chrome/test/ppapi/
H A Dppapi_browsertest.cc793 TEST_PPAPI_IN_PROCESS_VIA_HTTP(FileSystem)
794 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(FileSystem)
796 // PPAPINaClTest.FileSystem times out consistently on Windows and Mac.
801 #define MAYBE_FileSystem FileSystem
/external/chromium_org/media/cdm/ppapi/
H A Dcdm_file_io_impl.cc237 pp::CompletionCallbackWithOutput<pp::FileSystem> cb =
247 pp::FileSystem file_system) {

Completed in 401 milliseconds

12345