Searched defs:quiet (Results 1 - 3 of 3) sorted by relevance

/system/core/crash_reporter/
H A Dlist_proxies.cc49 const char kQuiet[] = "quiet";
57 " --quiet Only print the proxies\n"
267 bool quiet = cl->HasSwitch(kQuiet); local
279 // Log to stderr if a TTY (and "-quiet" wasn't passed), or if "-verbose"
282 if ((!quiet && isatty(STDERR_FILENO)) || verbose)
/system/extras/memtrack/
H A Dmemtrack.cpp268 printf("Usage: memtrack [--verbose | --quiet] [--scan_delay TIME_SECS]\n");
273 printf(" --quiet\n");
302 bool quiet = false; local
307 } else if (strcmp(argv[i], "--quiet") == 0) {
308 quiet = true;
322 if (quiet && verbose) {
323 printf("Both --quiet and --verbose cannot be specified.\n");
338 if (!quiet) {
364 if (!quiet) {
/system/extras/showmap/
H A Dshowmap.cpp31 static bool quiet = false; variable
181 if (!quiet) fprintf(stderr, "cannot open /proc/%d/smaps: %s\n", pid, strerror(errno));
210 if (!quiet) fprintf(stderr, "could not read /proc/%d/smaps\n", pid);
268 return quiet ? 0 : 1;
333 quiet = true;
358 " -q = quiet (don't show error if map could not be read)\n"

Completed in 274 milliseconds