Searched refs:file_system (Results 51 - 75 of 212) sorted by relevance

123456789

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dempty_dir_file_system.py5 from file_system import FileNotFoundError, FileSystem, StatInfo
H A Dredirector.py8 from file_system import FileNotFoundError
13 def __init__(self, compiled_fs_factory, file_system):
14 self._file_system = file_system
15 self._cache = compiled_fs_factory.ForJson(file_system)
H A Dserver_instance.py101 def ForTest(file_system=None, file_system_provider=None, base_path='/'):
103 if file_system is None and file_system_provider is None:
104 raise ValueError('Either |file_system| or |file_system_provider| '
106 if file_system and file_system_provider:
107 raise ValueError('Only one of |file_system| and |file_system_provider| '
111 file_system,
H A Dmock_file_system.py7 from file_system import FileSystem, FileNotFoundError
19 def __init__(self, file_system):
20 self._file_system = file_system
30 def Create(file_system, updates):
31 mock_file_system = MockFileSystem(file_system)
H A Dpath_canonicalizer.py30 file_system,
36 PathCanonicalizer, category=file_system.GetIdentity())
37 self._file_system = file_system
H A Dapi_data_source.py10 from file_system import FileNotFoundError
22 file_system = server_instance.host_file_system_provider.GetMaster()
23 self._json_cache = server_instance.compiled_fs_factory.ForJson(file_system)
25 file_system)
H A Dfake_url_fetcher.py98 '''Use a file_system to resolve fake fetches. Mimics the interface of Google
102 def __init__(self, file_system, base_path):
105 self._file_system = file_system
114 def UpdateFS(self, file_system, base_path=None):
117 self._file_system = file_system
H A Downers_data_source_test.py62 file_system=TestFileSystem(_TEST_FS))
H A Dsamples_model_test.py33 server_instance = ServerInstance.ForTest(file_system=TestFileSystem({}))
H A Dtable_of_contents_renderer.py6 from file_system import FileNotFoundError
H A Dtest_file_system.py5 from file_system import FileSystem, FileNotFoundError, StatInfo
33 def _List(file_system):
34 '''Returns a list of '/' separated paths derived from |file_system|.
38 assert isinstance(file_system, dict)
53 update_result(file_system, '')
/external/chromium_org/chrome/browser/chromeos/file_system_provider/
H A Dmount_path_util.h42 ProvidedFileSystemInterface* file_system() const { return file_system_; } function in class:chromeos::file_system_provider::util::FileSystemURLParser
65 ProvidedFileSystemInterface* file_system() const { return file_system_; } function in class:chromeos::file_system_provider::util::LocalPathParser
H A Dservice.cc161 ProvidedFileSystemInterface* file_system = local
163 DCHECK(file_system);
164 file_system_map_[FileSystemKey(extension_id, file_system_id)] = file_system;
332 base::DictionaryValue* file_system = new base::DictionaryValue(); local
333 file_system->SetStringWithoutPathExpansion(kPrefKeyFileSystemId,
335 file_system->SetStringWithoutPathExpansion(kPrefKeyDisplayName,
337 file_system->SetBooleanWithoutPathExpansion(kPrefKeyWritable,
355 file_system_info.file_system_id(), file_system);
398 const base::DictionaryValue* file_system = NULL; local
407 if (!file_system_value->GetAsDictionary(&file_system) ||
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dpepper_file_ref_renderer_host.cc20 PP_Resource file_system,
27 ResourceHost* fs_host = host->GetPpapiHost()->GetResourceHost(file_system);
16 PepperFileRefRendererHost( RendererPpapiHost* host, PP_Instance instance, PP_Resource resource, PP_Resource file_system, const std::string& internal_path) argument
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Dprivate_api_drive.cc198 drive::FileSystemInterface* const file_system = member in class:extensions::__anon3140::SingleEntryPropertiesGetterForDrive::drive
200 if (!file_system) {
201 // |file_system| is NULL if Drive is disabled or not mounted.
206 file_system->GetResourceEntry(
231 drive::FileSystemInterface* const file_system = member in class:extensions::__anon3140::SingleEntryPropertiesGetterForDrive::drive
233 if (!file_system) {
237 file_system->GetPathFromResourceId(
253 drive::FileSystemInterface* const file_system = member in class:extensions::__anon3140::SingleEntryPropertiesGetterForDrive::drive
255 if (!file_system) {
261 file_system
286 drive::FileSystemInterface* const file_system = member in class:extensions::__anon3140::SingleEntryPropertiesGetterForDrive::drive
524 drive::FileSystemInterface* const file_system = member in class:extensions::drive
612 drive::FileSystemInterface* const file_system = member in class:extensions::drive
693 drive::FileSystemInterface* const file_system = member in class:extensions::drive
865 drive::FileSystemInterface* const file_system = member in class:extensions::drive
961 drive::FileSystemInterface* const file_system = member in class:extensions::drive
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_file_io.cc23 #include "ppapi/cpp/file_system.h"
198 pp::FileSystem file_system(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY);
199 pp::FileRef file_ref(file_system, "/file_open");
201 callback.WaitForResult(file_system.Open(1024, callback.GetCallback()));
207 &file_system,
220 &file_system,
227 &file_system,
234 &file_system,
241 &file_system,
248 &file_system,
1276 MatchOpenExpectations(pp::FileSystem* file_system, size_t open_flags, size_t expectations) argument
[all...]
/external/chromium_org/ppapi/c/
H A Dppb_file_ref.h76 PP_Resource (*Create)(PP_Resource file_system, const char* path);
239 PP_Resource (*Create)(PP_Resource file_system, const char* path);
260 PP_Resource (*Create)(PP_Resource file_system, const char* path);
/external/chromium_org/ppapi/examples/crxfs/
H A Dcrxfs.cc40 void CrxFileSystemCallback(int32_t pp_error, pp::FileSystem file_system);
81 pp::FileSystem file_system) {
88 file_ref_ = pp::FileRef(file_system, filename_.c_str());
80 CrxFileSystemCallback(int32_t pp_error, pp::FileSystem file_system) argument
/external/chromium_org/chrome/browser/chromeos/drive/
H A Ddebug_info_collector.h30 FileSystemInterface* file_system,
H A Dsync_client.h31 namespace file_system { namespace in namespace:drive
53 file_system::OperationDelegate* delegate,
167 file_system::OperationDelegate* operation_delegate_;
172 scoped_ptr<file_system::DownloadOperation> download_operation_;
/external/chromium_org/chrome/browser/chromeos/drive/file_system/
H A Dcreate_directory_operation.h29 namespace file_system { namespace in namespace:drive
73 } // namespace file_system
H A Dcreate_file_operation.h26 namespace file_system { namespace in namespace:drive
70 } // namespace file_system
H A Dmove_operation.h35 namespace file_system { namespace in namespace:drive
73 } // namespace file_system
H A Dremove_operation.h29 namespace file_system { namespace in namespace:drive
71 } // namespace file_system
H A Dtouch_operation.h32 namespace file_system { namespace in namespace:drive
69 } // namespace file_system

Completed in 659 milliseconds

123456789