Lines Matching refs:err

43             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);
170 System.err.println(e.toString());
171 System.err.println(BMGR_NOT_RUNNING_ERR);
186 System.err.println(e.toString());
187 System.err.println(BMGR_NOT_RUNNING_ERR);
202 System.err.println(e.toString());
203 System.err.println(BMGR_NOT_RUNNING_ERR);
219 System.err.println(BMGR_NOT_RUNNING_ERR);
231 System.err.println(e.toString());
232 System.err.println(BMGR_NOT_RUNNING_ERR);
250 System.err.println(e.toString());
251 System.err.println(BMGR_NOT_RUNNING_ERR);
258 int err = mRestore.getAvailableRestoreSets(observer);
259 if (err != 0) {
266 System.err.println(e.toString());
267 System.err.println(TRANSPORT_NOT_RUNNING_ERR);
342 System.err.println(BMGR_NOT_RUNNING_ERR);
347 int err = mRestore.restorePackage(pkg, observer);
348 if (err == 0) {
352 System.err.println("Unable to restore package " + pkg);
358 System.err.println(e.toString());
359 System.err.println(BMGR_NOT_RUNNING_ERR);
371 System.err.println(BMGR_NOT_RUNNING_ERR);
375 int err = mRestore.getAvailableRestoreSets(observer);
376 if (err == 0) {
405 System.err.println(e.toString());
406 System.err.println(BMGR_NOT_RUNNING_ERR);
420 System.err.println("usage: bmgr [backup|restore|list|transport|run]");
421 System.err.println(" bmgr backup PACKAGE");
422 System.err.println(" bmgr enable BOOL");
423 System.err.println(" bmgr enabled");
424 System.err.println(" bmgr list transports");
425 System.err.println(" bmgr list sets");
426 System.err.println(" bmgr transport WHICH");
427 System.err.println(" bmgr restore TOKEN");
428 System.err.println(" bmgr restore PACKAGE");
429 System.err.println(" bmgr run");
430 System.err.println(" bmgr wipe PACKAGE");
431 System.err.println("");
432 System.err.println("The 'backup' command schedules a backup pass for the named package.");
433 System.err.println("Note that the backup pass will effectively be a no-op if the package");
434 System.err.println("does not actually have changed data to store.");
435 System.err.println("");
436 System.err.println("The 'enable' command enables or disables the entire backup mechanism.");
437 System.err.println("If the argument is 'true' it will be enabled, otherwise it will be");
438 System.err.println("disabled. When disabled, neither backup or restore operations will");
439 System.err.println("be performed.");
440 System.err.println("");
441 System.err.println("The 'enabled' command reports the current enabled/disabled state of");
442 System.err.println("the backup mechanism.");
443 System.err.println("");
444 System.err.println("The 'list transports' command reports the names of the backup transports");
445 System.err.println("currently available on the device. These names can be passed as arguments");
446 System.err.println("to the 'transport' command. The currently selected transport is indicated");
447 System.err.println("with a '*' character.");
448 System.err.println("");
449 System.err.println("The 'list sets' command reports the token and name of each restore set");
450 System.err.println("available to the device via the current transport.");
451 System.err.println("");
452 System.err.println("The 'transport' command designates the named transport as the currently");
453 System.err.println("active one. This setting is persistent across reboots.");
454 System.err.println("");
455 System.err.println("The 'restore' command when given a restore token initiates a full-system");
456 System.err.println("restore operation from the currently active transport. It will deliver");
457 System.err.println("the restore set designated by the TOKEN argument to each application");
458 System.err.println("that had contributed data to that restore set.");
459 System.err.println("");
460 System.err.println("The 'restore' command when given a package name intiates a restore of");
461 System.err.println("just that one package according to the restore set selection algorithm");
462 System.err.println("used by the RestoreSession.restorePackage() method.");
463 System.err.println("");
464 System.err.println("The 'run' command causes any scheduled backup operation to be initiated");
465 System.err.println("immediately, without the usual waiting period for batching together");
466 System.err.println("data changes.");
467 System.err.println("");
468 System.err.println("The 'wipe' command causes all backed-up data for the given package to be");
469 System.err.println("erased from the current transport's storage. The next backup operation");
470 System.err.println("that the given application performs will rewrite its entire data set.");