/frameworks/base/docs/html/sdk/api_diff/3/changes/ |
pkg_java.util.logging.html | 10 java.util.logging 74 Package <A HREF="../../../../reference/java/util/logging/package-summary.html" target="_top"><font size="+1"><code>java.util.logging</code></font></A> 85 <nobr><A HREF="java.util.logging.Level.html">Level</A></nobr> 92 <nobr><A HREF="java.util.logging.LogManager.html">LogManager</A></nobr>
|
/packages/apps/Email/src/com/android/email/activity/ |
MessageFileViewFragment.java | 29 import com.android.emailcommon.Logging; 97 if (Logging.DEBUG_LIFECYCLE && Email.DEBUG) { 98 Log.d(Logging.LOG_TAG, this + " openMessage"); 114 if (Logging.DEBUG_LIFECYCLE && Email.DEBUG) { 115 Log.d(Logging.LOG_TAG, this + " openMessageSync");
|
MessageListFragment.java | 65 import com.android.emailcommon.Logging; 339 if (Logging.DEBUG_LIFECYCLE && Email.DEBUG) { 340 Log.d(Logging.LOG_TAG, this + " onAttach"); 347 if (Logging.DEBUG_LIFECYCLE && Email.DEBUG) { 348 Log.d(Logging.LOG_TAG, this + " onCreate"); 364 if (Logging.DEBUG_LIFECYCLE && Email.DEBUG) { 365 Log.d(Logging.LOG_TAG, this + " onCreateView"); 407 if (Logging.DEBUG_LIFECYCLE && Email.DEBUG) { 408 Log.d(Logging.LOG_TAG, this + " onActivityCreated"); 434 if (Logging.DEBUG_LIFECYCLE && Email.DEBUG) [all...] |
UIControllerOnePane.java | 31 import com.android.emailcommon.Logging; 320 Log.d(Logging.LOG_TAG, this + " onBackPressed: " + isSystemBackKey); 329 Log.d(Logging.LOG_TAG, this + " Back: back handled by mailbox list"); 337 Log.d(Logging.LOG_TAG, this + " Back: Popping from back stack"); 346 Log.d(Logging.LOG_TAG, this + " Back: Message view -> Message List"); 368 Log.i(Logging.LOG_TAG, this + " open " + listContext + " messageId=" + messageId); 427 Log.i(Logging.LOG_TAG, this + " backstack: [push] " + getInstalledFragment() 432 Log.d(Logging.LOG_TAG, this + " showFragment: destroying previous fragment " 443 Log.d(Logging.LOG_TAG, this + " showFragment: removing " + installed); 450 Log.d(Logging.LOG_TAG, this + " showFragment: detaching [all...] |
/development/samples/training/threadsample/src/com/example/android/threadsample/ |
Constants.java | 27 // Set to true to turn on verbose logging 30 // Set to true to turn on debug logging 87 // The background thread is doing logging
|
/external/bluetooth/bluedroid/hci/include/ |
bt_hci_lib.h | 54 /** HCI logging control */ 187 /** Controls HCI logging on/off */ 188 int (*logging)(bt_hc_logging_state_t state, char *p_path); member in struct:__anon2986
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
run_all.py | 47 import logging namespace 80 logging.basicConfig(level=logging.getLevelName(options.log_level.upper()))
|
/external/jmonkeyengine/engine/src/core/com/jme3/util/ |
JmeFormatter.java | 39 import java.util.logging.Formatter; 40 import java.util.logging.LogRecord; 43 * More simple formatter than the default one used in Java logging.
|
/frameworks/base/core/tests/coretests/src/android/net/http/ |
CookiesTest.java | 26 import java.util.logging.Logger; 27 import java.util.logging.SimpleFormatter; 28 import java.util.logging.StreamHandler;
|
/libcore/luni/src/main/java/java/util/logging/ |
LoggingMXBean.java | 18 package java.util.logging; 23 * {@code LoggingMXBean} is the management interface for the logging sub-system. 34 * Gets the string value of the logging level of a logger. An empty string
|
Logger.java | 18 package java.util.logging; 41 * <p>Developers should use named loggers to enable logging to be controlled on a 62 * source method. In these cases, the logging framework will automatically infer 65 * Once a {@code LogRecord} object has been passed into the logging framework, 66 * it is owned by the logging framework and the client applications should not 115 /** The logging level of this logger, or null if none is set. */ 119 * The effective logging level of this logger. In order of preference this 123 * <li>the logging level of the parent 133 * The resource bundle used to localize logging messages. If null, no 162 /** the tag used for optimized logging. Derived from the logger name. * [all...] |
/packages/apps/Email/src/com/android/email/ |
Throttle.java | 19 import com.android.emailcommon.Logging; 48 /** Name of the instance. Only for logging. */ 99 Log.d(Logging.LOG_TAG, "Throttle: [" + mName + "] " + message);
|
VendorPolicyLoader.java | 20 import com.android.emailcommon.Logging; 80 Log.d(Logging.LOG_TAG, String.format("Using policy: package=%s name=%s", 122 Log.w(Logging.LOG_TAG, "VendorPolicyLoader: " + e); 125 Log.w(Logging.LOG_TAG, "VendorPolicyLoader: " + e); 152 Log.w(Logging.LOG_TAG, "VendorPolicyLoader", e); 210 * and add logging. Other exceptions may escape here (such as null pointers) to fail fast.
|
/packages/apps/Email/src/com/android/email/mail/store/imap/ |
ImapUtility.java | 19 import com.android.emailcommon.Logging; 79 Log.d(Logging.LOG_TAG, "Invalid UID value", e); 122 Log.d(Logging.LOG_TAG, "Invalid range value", e);
|
/packages/apps/Email/src/com/android/email/mail/transport/ |
DiscourseLogger.java | 19 import com.android.emailcommon.Logging; 114 Log.w(Logging.LOG_TAG, "Last network activities:"); 116 Log.w(Logging.LOG_TAG, r);
|
/packages/apps/Email/src/com/android/email/widget/ |
WidgetConfiguration.java | 32 import com.android.emailcommon.Logging; 49 Log.i(Logging.LOG_TAG, "WidgetConfiguration initiated"); 109 Log.i(Logging.LOG_TAG, "WidgetConfiguration exited abnormally. Probably no accounts.");
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
Utils.java | 30 * Android resource IDs, debug logging flags, and static methods 34 static final boolean V = false; // verbose logging 35 static final boolean D = true; // regular logging
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/ |
ImageFactory.java | 6 import java.util.logging.Level; 7 import java.util.logging.Logger;
|
/external/apache-http/src/org/apache/commons/logging/impl/ |
NoOpLog.java | 18 package org.apache.commons.logging.impl; 22 import org.apache.commons.logging.Log;
|
/external/chromium/android/ |
prefix.h | 55 // Need to define assert before logging.h undefines it. 57 // logging.cc needs pthread_mutex_t
|
/external/chromium/chrome/browser/chromeos/login/ |
login_utils.h | 63 // Invoked when the user is logging in for the first time, or is logging in as
|
/external/chromium/sdch/ |
sdch.gyp | 33 'open-vcdiff/src/logging.cc', 34 'open-vcdiff/src/logging.h',
|
/external/chromium/third_party/libjingle/source/talk/base/ |
common.cc | 43 #include "talk/base/logging.h" 66 // TODO - if we put hooks in here, we can do a lot fancier logging
|
/external/guava/guava/src/com/google/common/eventbus/ |
AsyncEventBus.java | 40 * events. Assigns {@code identifier} as the bus's name for logging purposes. 42 * @param identifier short name for the bus, for logging purposes.
|
/external/guava/guava/src/com/google/common/io/ |
Flushables.java | 23 import java.util.logging.Level; 24 import java.util.logging.Logger;
|