Lines Matching refs:err

44             System.err.println("Exception caught:");
57 System.err.println(BMGR_NOT_RUNNING_ERR);
105 System.err.println("Unknown command");
119 System.err.println(e.toString());
120 System.err.println(BMGR_NOT_RUNNING_ERR);
139 System.err.println(e.toString());
140 System.err.println(BMGR_NOT_RUNNING_ERR);
148 System.err.println(e.toString());
149 System.err.println(BMGR_NOT_RUNNING_ERR);
163 System.err.println(e.toString());
164 System.err.println(BMGR_NOT_RUNNING_ERR);
184 System.err.println(e.toString());
185 System.err.println(BMGR_NOT_RUNNING_ERR);
200 System.err.println(e.toString());
201 System.err.println(BMGR_NOT_RUNNING_ERR);
216 System.err.println(BMGR_NOT_RUNNING_ERR);
228 System.err.println(e.toString());
229 System.err.println(BMGR_NOT_RUNNING_ERR);
247 System.err.println(e.toString());
248 System.err.println(BMGR_NOT_RUNNING_ERR);
255 int err = mRestore.getAvailableRestoreSets(observer);
256 if (err != 0) {
263 System.err.println(e.toString());
264 System.err.println(TRANSPORT_NOT_RUNNING_ERR);
353 System.err.println(BMGR_NOT_RUNNING_ERR);
358 int err = mRestore.restorePackage(pkg, observer);
359 if (err == 0) {
363 System.err.println("Unable to restore package " + pkg);
369 System.err.println(e.toString());
370 System.err.println(BMGR_NOT_RUNNING_ERR);
381 System.err.println(BMGR_NOT_RUNNING_ERR);
385 int err = mRestore.getAvailableRestoreSets(observer);
386 if (err == 0) {
423 System.err.println(e.toString());
424 System.err.println(BMGR_NOT_RUNNING_ERR);
438 System.err.println("usage: bmgr [backup|restore|list|transport|run]");
439 System.err.println(" bmgr backup PACKAGE");
440 System.err.println(" bmgr enable BOOL");
441 System.err.println(" bmgr enabled");
442 System.err.println(" bmgr list transports");
443 System.err.println(" bmgr list sets");
444 System.err.println(" bmgr transport WHICH");
445 System.err.println(" bmgr restore TOKEN");
446 System.err.println(" bmgr restore TOKEN PACKAGE...");
447 System.err.println(" bmgr restore PACKAGE");
448 System.err.println(" bmgr run");
449 System.err.println(" bmgr wipe PACKAGE");
450 System.err.println("");
451 System.err.println("The 'backup' command schedules a backup pass for the named package.");
452 System.err.println("Note that the backup pass will effectively be a no-op if the package");
453 System.err.println("does not actually have changed data to store.");
454 System.err.println("");
455 System.err.println("The 'enable' command enables or disables the entire backup mechanism.");
456 System.err.println("If the argument is 'true' it will be enabled, otherwise it will be");
457 System.err.println("disabled. When disabled, neither backup or restore operations will");
458 System.err.println("be performed.");
459 System.err.println("");
460 System.err.println("The 'enabled' command reports the current enabled/disabled state of");
461 System.err.println("the backup mechanism.");
462 System.err.println("");
463 System.err.println("The 'list transports' command reports the names of the backup transports");
464 System.err.println("currently available on the device. These names can be passed as arguments");
465 System.err.println("to the 'transport' command. The currently selected transport is indicated");
466 System.err.println("with a '*' character.");
467 System.err.println("");
468 System.err.println("The 'list sets' command reports the token and name of each restore set");
469 System.err.println("available to the device via the current transport.");
470 System.err.println("");
471 System.err.println("The 'transport' command designates the named transport as the currently");
472 System.err.println("active one. This setting is persistent across reboots.");
473 System.err.println("");
474 System.err.println("The 'restore' command when given just a restore token initiates a full-system");
475 System.err.println("restore operation from the currently active transport. It will deliver");
476 System.err.println("the restore set designated by the TOKEN argument to each application");
477 System.err.println("that had contributed data to that restore set.");
478 System.err.println("");
479 System.err.println("The 'restore' command when given a token and one or more package names");
480 System.err.println("initiates a restore operation of just those given packages from the restore");
481 System.err.println("set designated by the TOKEN argument. It is effectively the same as the");
482 System.err.println("'restore' operation supplying only a token, but applies a filter to the");
483 System.err.println("set of applications to be restored.");
484 System.err.println("");
485 System.err.println("The 'restore' command when given just a package name intiates a restore of");
486 System.err.println("just that one package according to the restore set selection algorithm");
487 System.err.println("used by the RestoreSession.restorePackage() method.");
488 System.err.println("");
489 System.err.println("The 'run' command causes any scheduled backup operation to be initiated");
490 System.err.println("immediately, without the usual waiting period for batching together");
491 System.err.println("data changes.");
492 System.err.println("");
493 System.err.println("The 'wipe' command causes all backed-up data for the given package to be");
494 System.err.println("erased from the current transport's storage. The next backup operation");
495 System.err.println("that the given application performs will rewrite its entire data set.");