Home | History | Annotate | Download | only in backup

Lines Matching refs:svc

138             BackupManagerServiceInterface svc = mService;
140 if (svc != null) {
141 svc.unlockSystemUser();
201 BackupManagerServiceInterface svc = mService;
202 if (svc != null) {
203 svc.dataChanged(packageName);
210 BackupManagerServiceInterface svc = mService;
211 if (svc != null) {
212 svc.initializeTransports(transportNames, observer);
219 BackupManagerServiceInterface svc = mService;
220 if (svc != null) {
221 svc.clearBackupData(transportName, packageName);
227 BackupManagerServiceInterface svc = mService;
228 if (svc != null) {
229 svc.agentConnected(packageName, agent);
235 BackupManagerServiceInterface svc = mService;
236 if (svc != null) {
237 svc.agentDisconnected(packageName);
243 BackupManagerServiceInterface svc = mService;
244 if (svc != null) {
245 svc.restoreAtInstall(packageName, token);
251 BackupManagerServiceInterface svc = mService;
252 if (svc != null) {
253 svc.setBackupEnabled(isEnabled);
259 BackupManagerServiceInterface svc = mService;
260 if (svc != null) {
261 svc.setAutoRestore(doAutoRestore);
267 BackupManagerServiceInterface svc = mService;
268 if (svc != null) {
269 svc.setBackupProvisioned(isProvisioned);
275 BackupManagerServiceInterface svc = mService;
276 return (svc != null) ? svc.isBackupEnabled() : false;
281 BackupManagerServiceInterface svc = mService;
282 return (svc != null) ? svc.setBackupPassword(currentPw, newPw) : false;
287 BackupManagerServiceInterface svc = mService;
288 return (svc != null) ? svc.hasBackupPassword() : false;
293 BackupManagerServiceInterface svc = mService;
294 if (svc != null) {
295 svc.backupNow();
304 BackupManagerServiceInterface svc = mService;
305 if (svc != null) {
306 svc.adbBackup(fd, includeApks, includeObbs, includeShared, doWidgets,
313 BackupManagerServiceInterface svc = mService;
314 if (svc != null) {
315 svc.fullTransportBackup(packageNames);
321 BackupManagerServiceInterface svc = mService;
322 if (svc != null) {
323 svc.adbRestore(fd);
331 BackupManagerServiceInterface svc = mService;
332 if (svc != null) {
333 svc.acknowledgeAdbBackupOrRestore(token, allow,
340 BackupManagerServiceInterface svc = mService;
341 return (svc != null) ? svc.getCurrentTransport() : null;
346 BackupManagerServiceInterface svc = mService;
347 return (svc != null) ? svc.listAllTransports() : null;
352 BackupManagerServiceInterface svc = mService;
353 return (svc != null) ? svc.listAllTransportComponents() : null;
358 BackupManagerServiceInterface svc = mService;
359 return (svc != null) ? svc.getTransportWhitelist() : null;
370 BackupManagerServiceInterface svc = mService;
371 if (svc != null) {
372 svc.updateTransportAttributes(
384 BackupManagerServiceInterface svc = mService;
385 return (svc != null) ? svc.selectBackupTransport(transport) : null;
391 BackupManagerServiceInterface svc = mService;
392 if (svc != null) {
393 svc.selectBackupTransportAsync(transport, listener);
407 BackupManagerServiceInterface svc = mService;
408 return (svc != null) ? svc.getConfigurationIntent(transport) : null;
413 BackupManagerServiceInterface svc = mService;
414 return (svc != null) ? svc.getDestinationString(transport) : null;
419 BackupManagerServiceInterface svc = mService;
420 return (svc != null) ? svc.getDataManagementIntent(transport) : null;
425 BackupManagerServiceInterface svc = mService;
426 return (svc != null) ? svc.getDataManagementLabel(transport) : null;
432 BackupManagerServiceInterface svc = mService;
433 return (svc != null) ? svc.beginRestoreSession(packageName, transportID) : null;
438 BackupManagerServiceInterface svc = mService;
439 if (svc != null) {
440 svc.opComplete(token, result);
446 BackupManagerServiceInterface svc = mService;
447 return (svc != null) ? svc.getAvailableRestoreToken(packageName) : 0;
452 BackupManagerServiceInterface svc = mService;
453 return (svc != null) ? svc.isAppEligibleForBackup(packageName) : false;
458 BackupManagerServiceInterface svc = mService;
459 return (svc != null) ? svc.filterAppsEligibleForBackup(packages) : null;
465 svc = mService;
466 if (svc == null) {
469 return svc.requestBackup(packages, observer, monitor, flags);
474 BackupManagerServiceInterface svc = mService;
475 if (svc != null) {
476 svc.cancelBackups();
484 BackupManagerServiceInterface svc = mService;
485 if (svc != null) {
486 svc.dump(fd, pw, args);
495 BackupManagerServiceInterface svc = mService;
496 return (svc != null) ? svc.beginFullBackup(scheduledJob) : false;
500 BackupManagerServiceInterface svc = mService;
501 if (svc != null) {
502 svc.endFullBackup();