• Home
Name Date Size #Lines LOC

..--

.clang-formatD06-Sep-2024288 1412

Android.bpD06-Sep-2024948 5444

AndroidTest.xmlD06-Sep-20241.2 KiB2712

OWNERSD06-Sep-202472 64

bugreportz.cppD06-Sep-20243.2 KiB9966

bugreportz.hD06-Sep-20241 KiB275

bugreportz_test.cppD06-Sep-20244 KiB12981

main.cppD06-Sep-20243.7 KiB12886

readme.mdD06-Sep-2024748 2114

readme.md

1# bugreportz protocol
2
3`bugreportz` is used to generate a zipped bugreport whose path is passed back to `adb`, using
4the simple protocol defined below.
5
6# Version 1.1
7On version 1.1, in addition to the `OK` and `FAILURE` lines, when `bugreportz` is invoked with
8`-p`, it outputs the following lines:
9
10- `BEGIN:<path_to_bugreport_file>` right away.
11- `PROGRESS:<progress>/<total>` as `dumpstate` progresses (where `<progress>` is the current
12progress units out of a max of `<total>`).
13
14## Version 1.0
15On version 1.0, `bugreportz` does not generate any output on `stdout` until the bugreport is
16finished, when it then prints one line with the result:
17
18- `OK:<path_to_bugreport_file>` in case of success.
19- `FAIL:<error message>` in case of failure.
20
21