HomeSort by relevance Sort by last modified time
    Searched refs:file_system (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/chrome/common/extensions/docs/server2/
caching_file_system_test.py 11 from file_system import FileSystem, StatInfo
21 os.path.join(sys.path[0], 'test_data', 'file_system'))
45 file_system = self._CreateCachingFileSystem(
54 file_system.Read(['./test1.txt', './test2.txt', './test3.txt']).Get())
57 file_system = self._CreateCachingFileSystem(
60 file_system._read_object_store.Set(
62 (expected, file_system.Stat('list/').version))
63 self.assertEqual(expected, sorted(file_system.ReadSingle('list/')))
66 file_system._read_object_store.Set(
68 (expected, file_system.Stat('list/').version)
    [all...]
fail_on_access_file_system.py 5 from file_system import FileSystem
file_system_util.py 7 def CreateURLsFromPaths(file_system, directory, urlprefix):
11 for root, _, files in file_system.Walk(directory):
link_error_detector_test.py 8 from file_system import FileNotFoundError
13 file_system = TestFileSystem({ variable
55 content=file_system.ReadSingle('docs/templates/public/' + path),
73 file_system, self.render, 'templates/public', ('apps/index.html'))
84 file_system, self.render, 'templates/public', ('apps/crx.html',))
host_file_system_creator.py 33 file_system = self._constructor_for_test(branch=branch, revision=revision)
35 file_system = SubversionFileSystem.Create(branch=branch,
38 file_system = OfflineFileSystem(file_system)
39 return CachingFileSystem(file_system, self._object_store_creator)
50 def ForTest(file_system, object_store_creator):
52 returned here will always return |file_system| when its Create() method is
57 constructor_for_test=lambda **_: file_system)
subversion_file_system_test.py 12 from file_system import FileNotFoundError, StatInfo
18 sys.path[0], 'test_data', 'file_system')
33 file_system = _CreateSubversionFileSystem(_SHARED_FILE_SYSTEM_TEST_DATA)
36 file_system.Read(['test1.txt', 'test2.txt', 'test3.txt']).Get())
40 file_system = _CreateSubversionFileSystem(_SHARED_FILE_SYSTEM_TEST_DATA)
41 self.assertEqual(expected, sorted(file_system.ReadSingle('list/')))
45 file_system = _CreateSubversionFileSystem(_SHARED_FILE_SYSTEM_TEST_DATA)
46 self.assertEqual(expected, sorted(file_system.ReadSingle('list/dir/')))
49 file_system = _CreateSubversionFileSystem(_SHARED_FILE_SYSTEM_TEST_DATA)
50 stat_info = file_system.Stat('stat/'
    [all...]
file_system_test.py 10 file_system = TestFileSystem({ variable
50 for root, dirs, files in file_system.Walk(''):
67 for root, dirs, files in file_system.Walk('templates/public'):
manifest_data_source_test.py 14 file_system = TestFileSystem({ variable
121 CompiledFileSystem.Factory(file_system, ObjectStoreCreator.ForTest()),
122 file_system, 'manifest.json', '_manifest_features.json')
availability_finder.py 10 from file_system import FileNotFoundError
27 def _GetChannelFromFeatures(api_name, file_system, path):
29 |path| for the given |file_system|. Returns None if channel information for
32 feature = file_system.GetFromFile(path).get(api_name)
43 def _GetChannelFromApiFeatures(api_name, file_system):
45 return _GetChannelFromFeatures(api_name, file_system, _API_FEATURES)
50 def _GetChannelFromPermissionFeatures(api_name, file_system):
51 return _GetChannelFromFeatures(api_name, file_system, _PERMISSION_FEATURES)
53 def _GetChannelFromManifestFeatures(api_name, file_system):
56 file_system,
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
fileapi_worker_unittest.cc 39 FileSystemInterface* file_system = NULL; local
42 google_apis::test_util::CreateCopyResultCallback(&file_system),
45 EXPECT_EQ(&dummy_file_system, file_system);
49 FileSystemInterface* file_system = NULL; local
55 google_apis::test_util::CreateCopyResultCallback(&file_system),
62 google_apis::test_util::CreateCopyResultCallback(&file_system),
fileapi_worker.h 88 FileSystemInterface* file_system);
95 FileSystemInterface* file_system);
102 FileSystemInterface* file_system);
110 FileSystemInterface* file_system);
116 FileSystemInterface* file_system);
122 FileSystemInterface* file_system);
130 FileSystemInterface* file_system);
137 FileSystemInterface* file_system);
144 FileSystemInterface* file_system);
150 FileSystemInterface* file_system);
    [all...]
file_write_watcher.h 19 namespace file_system { namespace in namespace:drive
21 } // namespace file_system
33 explicit FileWriteWatcher(file_system::OperationObserver* observer);
64 file_system::OperationObserver* operation_observer_;
fileapi_worker.cc 203 FileSystemInterface* file_system = file_system_getter.Run(); local
205 if (!file_system) {
211 callback.Run(file_system);
216 FileSystemInterface* file_system) {
218 file_system->GetResourceEntryByPath(
226 FileSystemInterface* file_system) {
228 file_system->Copy(src_file_path, dest_file_path,
235 FileSystemInterface* file_system) {
237 file_system->Move(src_file_path, dest_file_path,
244 FileSystemInterface* file_system) {
    [all...]
debug_info_collector.h 20 DebugInfoCollector(FileSystemInterface* file_system,
debug_info_collector.cc 15 DebugInfoCollector::DebugInfoCollector(FileSystemInterface* file_system,
17 : file_system_(file_system),
  /external/chromium_org/ppapi/c/
ppb_file_system.h 63 * @param[in] file_system A <code>PP_Resource</code> corresponding to a file
80 int32_t (*Open)(PP_Resource file_system,
86 * @param[in] file_system A <code>PP_Resource</code> corresponding to a file
94 PP_FileSystemType (*GetType)(PP_Resource file_system);
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
operation_observer.h 13 namespace file_system { namespace in namespace:drive
29 } // namespace file_system
  /external/chromium_org/ppapi/api/
ppb_file_system.idl 49 * @param[in] file_system A <code>PP_Resource</code> corresponding to a file
64 int32_t Open([in] PP_Resource file_system,
71 * @param[in] file_system A <code>PP_Resource</code> corresponding to a file
80 PP_FileSystemType GetType([in] PP_Resource file_system);
  /external/chromium_org/ppapi/c/private/
ppb_ext_crx_file_system_private.h 41 * @param[out] file_system An output <code>PP_Resource</code> corresponding
49 PP_Resource* file_system,
  /external/chromium_org/ppapi/thunk/
ppb_ext_crx_file_system_private_api.h 24 PP_Resource* file_system,
ppb_file_system_thunk.cc 36 int32_t Open(PP_Resource file_system,
40 EnterResource<PPB_FileSystem_API> enter(file_system, callback, true);
46 PP_FileSystemType GetType(PP_Resource file_system) {
48 EnterResource<PPB_FileSystem_API> enter(file_system, true);
ppb_ext_crx_file_system_private_thunk.cc 24 PP_Resource* file_system,
31 file_system,
  /external/chromium_org/ppapi/api/private/
ppb_ext_crx_file_system_private.idl 23 * @param[out] file_system An output <code>PP_Resource</code> corresponding
32 [out] PP_Resource file_system,
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_sync_context_unittest.cc 152 void StartModifyFileOnIOThread(CannedSyncableFileSystem* file_system,
155 ASSERT_TRUE(file_system != NULL);
161 base::Unretained(this), file_system, url));
166 file_system->operation_runner()->Truncate(
217 CannedSyncableFileSystem file_system(GURL(kOrigin1),
220 file_system.SetUp();
225 // Initializes file_system using |sync_context_|.
227 file_system.MaybeInitializeFileSystemContext(sync_context_.get()));
229 // Make sure everything's set up for file_system to be able to handle
231 EXPECT_TRUE(file_system.backend()->sync_context() != NULL)
    [all...]
  /external/chromium_org/ppapi/tests/
test_file_system.cc 10 #include "ppapi/cpp/file_system.h"
29 pp::FileSystem file_system(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY);
30 callback.WaitForResult(file_system.Open(1024, callback.GetCallback()));
50 pp::FileSystem file_system(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY);
51 int32_t rv_1 = file_system.Open(1024, callback_1.GetCallback());
54 callback_2.WaitForResult(file_system.Open(1024, callback_2.GetCallback()));
64 callback_3.WaitForResult(file_system.Open(1024, callback_3.GetCallback()));

Completed in 790 milliseconds

1 2 3 4 5 6 7