Home | History | Annotate | Download | only in bugreportz

Lines Matching refs:bugreportz

26 #include "bugreportz.h"
34 // Creates the pipe used to communicate with bugreportz()
53 // Emulates dumpstate output by writing to the socket passed to bugreportz()
68 // Calls bugreportz() using the internal pipe.
71 // end of the pipe will be closed before calling bugreportz() (otherwise that function would
73 void Bugreportz(bool show_progress) {
78 int status = bugreportz(read_fd_, show_progress);
93 // Tests 'bugreportz', without any argument - it will ignore progress lines.
97 WriteToSocket("stays on 'bugreportz'.\n");
103 Bugreportz(false);
106 "What happens on 'dumpstate',stays on 'bugreportz'.\n"
110 // Tests 'bugreportz -p' - it will just echo dumpstate's output to stdout
114 WriteToSocket("stays on 'bugreportz'.\n");
120 Bugreportz(true);
124 "What happens on 'dumpstate',stays on 'bugreportz'.\n"