Searched defs:verbose (Results 1 - 25 of 34) sorted by relevance

12

/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DLog.java26 public void setVerbose(boolean verbose) { argument
27 mVerbose = verbose;
/frameworks/compile/slang/tests/
H A Dtest.py24 verbose = 0 variable in class:Options
32 if Options.verbose:
36 if Options.verbose:
64 if Options.verbose != 0:
91 if Options.verbose > 1:
110 if Options.verbose > 1:
124 if Options.verbose:
129 if Options.verbose:
133 if Options.verbose:
138 if Options.verbose
[all...]
/frameworks/base/tools/aapt2/dump/
H A DDump.cpp137 bool verbose() override {
154 bool verbose = false; local
156 .optionalSwitch("-v", "increase verbosity of output", &verbose);
162 context.setVerbose(verbose);
/frameworks/compile/slang/
H A Dslang_rs_reflect_utils.h37 // verbose: whether or not to print out additional info about compilation.
46 bool verbose; member in struct:slang::RSSlangReflectUtils::BitCodeAccessorContext
118 const std::string *optionalLicense, bool isJava, bool verbose);
H A Dslang_rs_reflect_utils.cpp278 context.licenseNote, true, context.verbose)) {
346 bool verbose) {
347 if (verbose) {
342 startFile(const string &outDirectory, const string &outFileName, const string &sourceFileName, const string *optionalLicense, bool isJava, bool verbose) argument
/frameworks/base/core/jni/
H A Dandroid_util_Log.cpp37 jint verbose; member in struct:android::levels_t
77 return isLoggable(tag, levels.verbose);
137 levels.verbose = env->GetStaticIntField(clazz, GetStaticFieldIDOrDie(env, clazz, "VERBOSE", "I"));
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiCountryCode.java71 * Enable verbose logging for WifiCountryCode.
73 public void enableVerboseLogging(int verbose) { argument
74 if (verbose > 0) {
H A DWifiTrafficPoller.java112 void enableVerboseLogging(int verbose) { argument
113 if (verbose > 0 ) {
H A DSupplicantStateTracker.java78 void enableVerboseLogging(int verbose) { argument
79 if (verbose > 0) {
H A DWifiLockManager.java277 protected void enableVerboseLogging(int verbose) { argument
278 if (verbose > 0) {
H A DWifiLogger.java657 ArrayList<WifiNative.FateReport> fates, boolean verbose) {
674 if (verbose) {
675 // Important: only print Personally Identifiable Information (PII) if verbose
682 if (verbose) {
656 dumpPacketFatesInternal(PrintWriter pw, String description, ArrayList<WifiNative.FateReport> fates, boolean verbose) argument
H A DWifiConnectivityManager.java1164 * Enable/disable verbose logging
1166 public void enableVerboseLogging(int verbose) { argument
1167 mDbg = verbose > 0;
H A DWifiQualifiedNetworkSelector.java196 void enableVerboseLogging(int verbose) { argument
197 mDbg = verbose > 0 || FORCE_DEBUG;
/frameworks/compile/libbcc/bcinfo/tools/
H A Dmain.cpp61 bool verbose = true; variable
78 // Turn off verbose so that we only generate the .info file.
80 verbose = false;
84 verbose = true;
311 if (verbose) {
318 if (verbose) {
339 if (verbose) {
/frameworks/native/opengl/tests/hwc/
H A DhwcColorEquiv.cpp25 -v - verbose
137 static bool verbose = defaultVerbose; variable
248 verbose = true;
382 if (verbose) { testPrintI("Prepare:"); hwcTestDisplayList(list); }
384 if (verbose) {
392 if (verbose) {hwcTestDisplayListHandles(list); }
417 hwcTestInitDisplay(verbose, &dpy, &surface, &width, &height);
H A DhwcRects.cpp178 static bool verbose = defaultVerbose; variable
225 verbose = true;
329 if (verbose) { testPrintI("Prepare:"); hwcTestDisplayList(list); }
331 if (verbose) {
340 if (verbose) {testPrintI("Set:"); }
341 if (verbose) { hwcTestDisplayListHandles(list); }
518 if (verbose) {
536 hwcTestInitDisplay(verbose, &dpy, &surface, &width, &height);
H A DhwcStress.cpp145 static bool verbose = defaultVerbose; variable
340 verbose = true;
480 if (verbose) { testPrintI("Prepare:"); hwcTestDisplayList(list); }
482 if (verbose) {
491 if (verbose) {testPrintI("Set:"); }
493 if (verbose) { hwcTestDisplayListHandles(list); }
536 hwcTestInitDisplay(verbose, &dpy, &surface, &width, &height);
558 if (verbose) { testPrintI("initFrames seed: %u", seed); }
585 if (verbose) {
605 if (verbose) {
[all...]
H A DhwcTestLib.cpp49 void hwcTestInitDisplay(bool verbose, EGLDisplay *dpy, EGLSurface *surface, argument
73 if (verbose) {
99 if (verbose) {
128 if (verbose) {
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiLoggerTest.java246 * Verifies that, when verbose mode is not enabled, startLogging() calls
257 * Verifies that, when verbose mode is enabled, startLogging() calls
268 * Verifies that, when verbose mode is not enabled, reportConnectionFailure() still
281 * Verifies that, when verbose mode is enabled, reportConnectionFailure() fetches packet fates.
370 private String getDumpString(boolean verbose) { argument
371 mWifiLogger.startLogging(verbose);
372 mWifiNative.enableVerboseLogging(verbose ? 1 : 0);
408 * Verifies that dump() shows both TX, and RX fates in only table form, when verbose
425 * Verifies that dump() shows both TX, and RX fates in table and verbose forms, when verbose
[all...]
/frameworks/base/tools/aapt2/compile/
H A DCompile.cpp112 bool verbose = false; member in struct:aapt::CompileOptions
430 bool verbose() override {
470 bool verbose = false; local
478 .optionalSwitch("-v", "Enables verbose logging", &verbose);
483 context.setVerbose(verbose);
525 if (options.verbose) {
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java999 * @param verbose True to dump more verbose information.
1001 public void dump(Printer printer, boolean verbose) { argument
1010 mAvailablePrimaryConnection.dump(indentedPrinter, verbose);
1019 mAvailableNonPrimaryConnections.get(i).dump(indentedPrinter, verbose);
1030 connection.dumpUnsafe(indentedPrinter, verbose);
H A DSQLiteDatabase.java2060 static void dumpAll(Printer printer, boolean verbose) { argument
2062 db.dump(printer, verbose);
2066 private void dump(Printer printer, boolean verbose) { argument
2070 mConnectionPoolLocked.dump(printer, verbose);
H A DSQLiteConnection.java1052 * @param verbose True to dump more verbose information.
1054 public void dump(Printer printer, boolean verbose) { argument
1055 dumpUnsafe(printer, verbose);
1070 * @param verbose True to dump more verbose information.
1072 void dumpUnsafe(Printer printer, boolean verbose) { argument
1074 if (verbose) {
1080 mRecentOperations.dump(printer, verbose);
1082 if (verbose) {
1422 dump(Printer printer, boolean verbose) argument
1469 describe(StringBuilder msg, boolean verbose) argument
[all...]
/frameworks/base/tools/aapt2/link/
H A DLink.cpp117 bool verbose() override {
159 if (context->verbose()) {
186 if (context->verbose()) {
334 if (mContext->verbose()) {
397 if (mContext->verbose()) {
534 if (mContext->verbose()) {
858 if (mContext->verbose()) {
918 if (mContext->verbose()) {
947 if (mContext->verbose()) {
998 if (mContext->verbose()) {
1387 bool verbose = false; local
[all...]
/frameworks/compile/mclinker/include/mcld/
H A DGeneralOptions.h102 int8_t verbose() const { return m_Verbose; } function in class:mcld::GeneralOptions::HashStyle
341 int8_t m_Verbose; // --verbose[=0,1,2]

Completed in 748 milliseconds

12