Searched defs:verbose (Results 26 - 46 of 46) sorted by relevance

12

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiBackupRestore.java107 * Store the dump of the backup/restore data for debugging. This is only stored when verbose
429 * Enable verbose logging.
431 * @param verbose verbosity level.
433 public void enableVerboseLogging(int verbose) { argument
434 mVerboseLoggingEnabled = (verbose > 0);
443 * Dump out the last backup/restore data if verbose logging is enabled.
H A DWifiDiagnostics.java649 ArrayList<WifiNative.FateReport> fates, boolean verbose) {
666 if (verbose) {
667 // Important: only print Personally Identifiable Information (PII) if verbose
674 if (verbose) {
648 dumpPacketFatesInternal(PrintWriter pw, String description, ArrayList<WifiNative.FateReport> fates, boolean verbose) argument
H A DWifiMonitor.java115 void enableVerboseLogging(int verbose) { argument
116 if (verbose > 0) {
H A DWifiConfigManager.java396 * Enable/disable verbose logging in WifiConfigManager & its helper classes.
398 public void enableVerboseLogging(int verbose) { argument
399 if (verbose > 0) {
H A DWifiServiceImpl.java2312 public void enableVerboseLogging(int verbose) { argument
2314 mLog.trace("enableVerboseLogging uid=% verbose=%")
2316 .c(verbose).flush();
2318 mContext, Settings.Global.WIFI_VERBOSE_LOGGING_ENABLED, verbose);
2319 enableVerboseLoggingInternal(verbose);
2322 void enableVerboseLoggingInternal(int verbose) { argument
2323 mWifiStateMachine.enableVerboseLogging(verbose);
2324 mWifiLockManager.enableVerboseLogging(verbose);
2325 mWifiMulticastLockManager.enableVerboseLogging(verbose);
2326 mWifiInjector.getWifiLastResortWatchdog().enableVerboseLogging(verbose);
[all...]
H A DWifiVendorHal.java102 * Enables or disables verbose logging
104 * @param verbose - with the obvious interpretation
106 public void enableVerboseLogging(boolean verbose) { argument
108 if (verbose) {
110 enter("verbose=true").flush();
112 enter("verbose=false").flush();
147 // Currently only seen if verbose logging is on
H A DWifiNative.java82 * Enable verbose logging for all sub modules.
84 public void enableVerboseLogging(int verbose) { argument
85 mWificondControl.enableVerboseLogging(verbose > 0 ? true : false);
86 mSupplicantStaIfaceHal.enableVerboseLogging(verbose > 0);
87 mWifiVendorHal.enableVerboseLogging(verbose > 0);
272 * @param turnOnVerbose Whether to turn on verbose logging or not.
H A DWifiStateMachine.java1183 * @param verbose int logging level to use
1185 public void enableVerboseLogging(int verbose) { argument
1186 if (verbose > 0) {
1196 mCountryCode.enableVerboseLogging(verbose);
1199 mWifiMonitor.enableVerboseLogging(verbose);
1200 mWifiNative.enableVerboseLogging(verbose);
1201 mWifiConfigManager.enableVerboseLogging(verbose);
1202 mSupplicantStateTracker.enableVerboseLogging(verbose);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pMonitor.java90 void enableVerboseLogging(int verbose) { argument
91 if (verbose > 0) {
H A DWifiP2pNative.java46 * Enable verbose logging for all sub modules.
48 public void enableVerboseLogging(int verbose) { argument
/frameworks/base/core/java/android/database/sqlite/
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/native/libs/binder/tests/
H A Dschd-dbg.cpp53 int verbose = 0; variable
85 if (!verbose) return;
129 if (verbose) {
442 verbose = 1;
/frameworks/native/libs/vr/libpdx_default_transport/
H A Dpdx_benchmarks.cpp172 bool verbose = false; member in struct:Options
185 const char kOptionVerbose[] = "verbose";
991 std::cout << "\t--verbose : Use verbose messages." << std::endl;
1028 ProgramOptions.verbose = true;
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.cpp49 void hwcTestInitDisplay(bool verbose, EGLDisplay *dpy, EGLSurface *surface, argument
73 if (verbose) {
99 if (verbose) {
128 if (verbose) {
H A DhwcCommit.cpp310 static bool verbose = defaultVerbose; variable
376 verbose = true;
825 bool origVerbose = verbose; // Temporarily turn off verbose
826 verbose = false;
848 verbose = origVerbose;
876 bool origVerbose = verbose; // Temporarily turn off verbose
877 verbose = false;
897 verbose
[all...]
/frameworks/base/tools/aapt2/cmd/
H A DLink.cpp1838 bool verbose = false; local
1968 .OptionalSwitch("-v", "Enables verbose logging.", &verbose);
2003 if (verbose) {
2004 context.SetVerbose(verbose);
/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]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java3368 * Set wifi verbose log. Called from developer settings.
3371 public void enableVerboseLogging (int verbose) { argument
3373 mService.enableVerboseLogging(verbose);
3381 * Get the WiFi verbose logging level.This is used by settings
/frameworks/base/core/java/android/os/
H A DBatteryStats.java5304 boolean verbose) {
5359 if (verbose) {
5303 printNextItem(PrintWriter pw, HistoryItem rec, long baseTime, boolean checkin, boolean verbose) argument
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 486 milliseconds

12