Lines Matching refs:backend

207     FileSystemBackend* backend = iter->second;
208 if (!backend->GetQuotaUtil())
210 if (backend->GetQuotaUtil()->DeleteOriginDataOnFileTaskRunner(
226 FileSystemBackend* backend = GetFileSystemBackend(type);
227 if (!backend || !backend->GetQuotaUtil())
229 return backend->GetQuotaUtil()->CreateQuotaReservationOnFileTaskRunner(
245 FileSystemBackend* backend = GetFileSystemBackend(type);
246 if (!backend)
248 return backend->GetQuotaUtil();
253 FileSystemBackend* backend = GetFileSystemBackend(type);
254 if (!backend)
256 return backend->GetAsyncFileUtil(type);
264 FileSystemBackend* backend = GetFileSystemBackend(type);
265 if (!backend)
267 return backend->GetCopyOrMoveFileValidatorFactory(
282 FileSystemBackend* backend = GetFileSystemBackend(type);
283 if (!backend)
285 return backend->GetWatcherManager(type);
295 FileSystemBackend* backend = GetFileSystemBackend(type);
296 return backend->GetUpdateObservers(type);
301 FileSystemBackend* backend = GetFileSystemBackend(type);
302 return backend->GetChangeObservers(type);
307 FileSystemBackend* backend = GetFileSystemBackend(type);
308 return backend->GetAccessObservers(type);
339 FileSystemBackend* backend = GetFileSystemBackend(type);
340 if (!backend) {
345 backend->ResolveURL(
356 // If not on IO thread, forward before passing the task to the backend.
367 FileSystemBackend* backend = GetFileSystemBackend(url.type());
368 if (!backend) {
375 backend->ResolveURL(
408 FileSystemBackend* backend = GetFileSystemBackend(type);
409 if (!backend) {
413 if (!backend->GetQuotaUtil()) {
423 base::Unretained(backend->GetQuotaUtil()),
438 FileSystemBackend* backend = GetFileSystemBackend(url.type());
439 if (!backend)
441 return backend->CreateFileStreamReader(
450 FileSystemBackend* backend = GetFileSystemBackend(url.type());
451 if (!backend)
453 return backend->CreateFileStreamWriter(url, offset, this);
536 FileSystemBackend* backend = GetFileSystemBackend(url.type());
537 if (!backend) {
545 backend->CreateFileSystemOperation(url, this, &fs_error);
579 void FileSystemContext::RegisterBackend(FileSystemBackend* backend) {
588 if (backend->CanHandleType(mount_types[j])) {
590 std::make_pair(mount_types[j], backend)).second;
598 if (backend->CanHandleType(type)) {
600 std::make_pair(type, backend)).second;