tree: cd24770b0e6c9014c16f9cf1db05d15420965459 [path history] [tgz]
  1. .clang-format
  2. Android.mk
  3. AndroidTest.xml
  4. bugreportz.cpp
  5. bugreportz.h
  6. bugreportz_test.cpp
  7. main.cpp
  8. readme.md
cmds/bugreportz/readme.md

bugreportz protocol

bugreportz is used to generate a zippped bugreport whose path is passed back to adb, using the simple protocol defined below.

Version 1.1

On version 1.1, in addition to the OK and FAILURE lines, when bugreportz is invoked with -p, it outputs the following lines:

  • BEGIN:<path_to_bugreport_file> right away.
  • PROGRESS:<progress>/<total> as dumpstate progresses (where <progress> is the current progress units out of a max of <total>).

Version 1.0

On version 1.0, bugreportz does not generate any output on stdout until the bugreport is finished, when it then prints one line with the result:

  • OK:<path_to_bugreport_file> in case of success.
  • FAIL:<error message> in case of failure.