Lines Matching refs:err

45             System.err.println("Exception caught:");
58 System.err.println(BMGR_NOT_RUNNING_ERR);
111 System.err.println("Unknown command");
125 System.err.println(e.toString());
126 System.err.println(BMGR_NOT_RUNNING_ERR);
145 System.err.println(e.toString());
146 System.err.println(BMGR_NOT_RUNNING_ERR);
154 System.err.println(e.toString());
155 System.err.println(BMGR_NOT_RUNNING_ERR);
169 System.err.println(e.toString());
170 System.err.println(BMGR_NOT_RUNNING_ERR);
186 System.err.println(e.toString());
187 System.err.println(BMGR_NOT_RUNNING_ERR);
208 System.err.println(e.toString());
209 System.err.println(BMGR_NOT_RUNNING_ERR);
230 System.err.println(e.toString());
231 System.err.println(BMGR_NOT_RUNNING_ERR);
246 System.err.println(BMGR_NOT_RUNNING_ERR);
258 System.err.println(e.toString());
259 System.err.println(BMGR_NOT_RUNNING_ERR);
277 System.err.println(e.toString());
278 System.err.println(BMGR_NOT_RUNNING_ERR);
285 int err = mRestore.getAvailableRestoreSets(observer);
286 if (err != 0) {
293 System.err.println(e.toString());
294 System.err.println(TRANSPORT_NOT_RUNNING_ERR);
383 System.err.println(BMGR_NOT_RUNNING_ERR);
388 int err = mRestore.restorePackage(pkg, observer);
389 if (err == 0) {
393 System.err.println("Unable to restore package " + pkg);
399 System.err.println(e.toString());
400 System.err.println(BMGR_NOT_RUNNING_ERR);
411 System.err.println(BMGR_NOT_RUNNING_ERR);
415 int err = mRestore.getAvailableRestoreSets(observer);
416 if (err == 0) {
453 System.err.println(e.toString());
454 System.err.println(BMGR_NOT_RUNNING_ERR);
468 System.err.println("usage: bmgr [backup|restore|list|transport|run]");
469 System.err.println(" bmgr backup PACKAGE");
470 System.err.println(" bmgr enable BOOL");
471 System.err.println(" bmgr enabled");
472 System.err.println(" bmgr list transports");
473 System.err.println(" bmgr list sets");
474 System.err.println(" bmgr transport WHICH");
475 System.err.println(" bmgr restore TOKEN");
476 System.err.println(" bmgr restore TOKEN PACKAGE...");
477 System.err.println(" bmgr restore PACKAGE");
478 System.err.println(" bmgr run");
479 System.err.println(" bmgr wipe TRANSPORT PACKAGE");
480 System.err.println(" bmgr fullbackup PACKAGE...");
481 System.err.println("");
482 System.err.println("The 'backup' command schedules a backup pass for the named package.");
483 System.err.println("Note that the backup pass will effectively be a no-op if the package");
484 System.err.println("does not actually have changed data to store.");
485 System.err.println("");
486 System.err.println("The 'enable' command enables or disables the entire backup mechanism.");
487 System.err.println("If the argument is 'true' it will be enabled, otherwise it will be");
488 System.err.println("disabled. When disabled, neither backup or restore operations will");
489 System.err.println("be performed.");
490 System.err.println("");
491 System.err.println("The 'enabled' command reports the current enabled/disabled state of");
492 System.err.println("the backup mechanism.");
493 System.err.println("");
494 System.err.println("The 'list transports' command reports the names of the backup transports");
495 System.err.println("currently available on the device. These names can be passed as arguments");
496 System.err.println("to the 'transport' and 'wipe' commands. The currently active transport");
497 System.err.println("is indicated with a '*' character.");
498 System.err.println("");
499 System.err.println("The 'list sets' command reports the token and name of each restore set");
500 System.err.println("available to the device via the currently active transport.");
501 System.err.println("");
502 System.err.println("The 'transport' command designates the named transport as the currently");
503 System.err.println("active one. This setting is persistent across reboots.");
504 System.err.println("");
505 System.err.println("The 'restore' command when given just a restore token initiates a full-system");
506 System.err.println("restore operation from the currently active transport. It will deliver");
507 System.err.println("the restore set designated by the TOKEN argument to each application");
508 System.err.println("that had contributed data to that restore set.");
509 System.err.println("");
510 System.err.println("The 'restore' command when given a token and one or more package names");
511 System.err.println("initiates a restore operation of just those given packages from the restore");
512 System.err.println("set designated by the TOKEN argument. It is effectively the same as the");
513 System.err.println("'restore' operation supplying only a token, but applies a filter to the");
514 System.err.println("set of applications to be restored.");
515 System.err.println("");
516 System.err.println("The 'restore' command when given just a package name intiates a restore of");
517 System.err.println("just that one package according to the restore set selection algorithm");
518 System.err.println("used by the RestoreSession.restorePackage() method.");
519 System.err.println("");
520 System.err.println("The 'run' command causes any scheduled backup operation to be initiated");
521 System.err.println("immediately, without the usual waiting period for batching together");
522 System.err.println("data changes.");
523 System.err.println("");
524 System.err.println("The 'wipe' command causes all backed-up data for the given package to be");
525 System.err.println("erased from the given transport's storage. The next backup operation");
526 System.err.println("that the given application performs will rewrite its entire data set.");
527 System.err.println("Transport names to use here are those reported by 'list transports'.");
528 System.err.println("");
529 System.err.println("The 'fullbackup' command induces a full-data stream backup for one or more");
530 System.err.println("packages. The data is sent via the currently active transport.");