HomeSort by relevance Sort by last modified time
    Searched defs:log (Results 426 - 450 of 2955) sorted by null

<<11121314151617181920>>

  /tools/tradefederation/core/src/com/android/tradefed/log/
HistoryLogger.java 16 package com.android.tradefed.log;
18 import com.android.ddmlib.Log.LogLevel;
19 import com.android.tradefed.log.ILogRegistry.EventType;
27 /** TF History Logger, special log that contains only some specific events. */
34 /** Initialize the log, creating any required IO resources. */
54 * Call this method to log an event from a type with the associated information in the map.
56 * @param event the {@link EventType} of the event to log.
57 * @param args the map of arguments to be added to the log entry to get more details on the
ILogRegistry.java 17 package com.android.tradefed.log;
19 import com.android.ddmlib.Log.ILogOutput;
20 import com.android.ddmlib.Log.LogLevel;
44 * Set the log level display for the global log
51 * Set the log tags to display for the global log
56 * Returns current log level display for the global log
65 public void registerLogger(ILeveledLogOutput log);
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
Bugreport.java 18 import com.android.tradefed.log.ITestLogger;
19 import com.android.tradefed.log.LogUtil.CLog;
55 * Helper to log the Bugreport whether its zipped or not.
58 * @param logger a {@link ITestLogger} to receive the log.
60 public void log(String dataName, ITestLogger logger) { method in class:Bugreport
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
CompoundTransliteratorTest.java 230 StringBuffer log = new StringBuffer(); local
234 log.append(" + ");
236 log.append(source.charAt(i)).append(" -> ");
242 log.append(s.substring(0, index.start)).
252 log.append(" => ").append(rsource.toString());
253 expectAux(t.getID() + ":Keyboard", log.toString(),
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
CompoundTransliteratorTest.java 229 StringBuffer log = new StringBuffer(); local
233 log.append(" + ");
235 log.append(source.charAt(i)).append(" -> ");
241 log.append(s.substring(0, index.start)).
251 log.append(" => ").append(rsource.toString());
252 expectAux(t.getID() + ":Keyboard", log.toString(),
  /external/nist-sip/java/gov/nist/javax/sip/stack/
ServerLog.java 53 * Log file wrapper class. Log messages into the message trace file and also write the log into
70 * Name of the log file in which the trace is written out (default is null)
75 * Print writer that is used to write out the log file.
80 * Set auxililary information to log with this trace.
93 // Debug log file. Whatever gets logged by us also makes its way into debug log.
112 // the log4j effective log level.
182 // Dont create a log file if tracing i
326 LogRecord log = this.sipStack.logRecordFactory.createLogRecord(message, from, to, time, local
    [all...]
  /external/objenesis/tck/src/main/java/org/objenesis/tck/
TextReporter.java 62 private final PrintStream log; field in class:TextReporter
84 * @param log Any additional information, useful for diagnostics.
86 public TextReporter(PrintStream summary, PrintStream log) {
88 this.log = log;
210 log.println("--- Candidate '" + element.candidateDescription + "', Instantiator '"
212 element.exception.printStackTrace(log);
213 log.println();
216 log.println();
  /external/slf4j/jul-to-slf4j/src/test/java/org/slf4j/bridge/
SLF4JBridgeHandlerTest.java 131 julResourceBundleLogger.info(resourceKey1); // 1st log
136 julResourceBundleLogger.log(Level.INFO, resourceKey2, params2); // 2nd log
141 julResourceBundleLogger.log(Level.INFO, resourceKey3, params3); // 3rd log
143 julLogger.log(Level.INFO, resourceKey3, params3); // 4th log
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
Category.java 193 locationAwareLogger.log(marker, fqcn, level, m, null, t);
291 log(FQCN, p, msg, t); method
295 public void log(String FQCN, Priority p, Object msg, Throwable t) { method in class:Category
300 public void log(Priority p, Object message, Throwable t) { method in class:Category
305 public void log(Priority p, Object message) { method in class:Category
  /external/webrtc/webrtc/base/java/src/org/webrtc/
Logging.java 30 // If native logging is unavailable, log to system log.
33 fallbackLogger.log(Level.WARNING, "Failed to load jingle_peerconnection_so: ", t);
68 fallbackLogger.log(Level.WARNING, "Cannot enable log thread because native lib not loaded.");
76 fallbackLogger.log(Level.WARNING,
77 "Cannot enable log timestamps because native lib not loaded.");
88 fallbackLogger.log(Level.WARNING, "Cannot enable tracing because native lib not loaded.");
103 public static void log(Severity severity, String tag, String message) { method in class:Logging
109 // Fallback to system log
129 log(Severity.LS_INFO, tag, message); method
133 log(Severity.LS_ERROR, tag, message); method
137 log(Severity.LS_WARNING, tag, message); method
141 log(Severity.LS_ERROR, tag, message); method
142 log(Severity.LS_ERROR, tag, e.toString()); method
143 log(Severity.LS_ERROR, tag, getStackTraceString(e)); method
147 log(Severity.LS_WARNING, tag, message); method
148 log(Severity.LS_WARNING, tag, e.toString()); method
149 log(Severity.LS_WARNING, tag, getStackTraceString(e)); method
153 log(Severity.LS_VERBOSE, tag, message); method
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
EclipseLintClient.java 200 public void log(@NonNull Severity severity, @Nullable Throwable exception, method in class:EclipseLintClient
203 AdtPlugin.log(IStatus.WARNING, format, args);
205 AdtPlugin.log(exception, format, args);
218 AdtPlugin.log(IStatus.ERROR, "Can't find file %1$s in workspace", path);
237 AdtPlugin.log(e, "Cannot read XML file");
239 AdtPlugin.log(e, null);
436 AdtPlugin.log(e, null);
503 AdtPlugin.log(e, null);
539 AdtPlugin.log(e, null);
557 AdtPlugin.log(e, null)
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LogRecordTest.java 142 logger.log(Level.SEVERE, MSG);
149 logger.log(lr);
156 logger.log(lr);
164 logger.log(lr);
170 logger.log(RecordFactory.getDefaultRecord());
177 RecordFactory.log(logger, lr);
180 assertEquals("log", handler.getSourceMethodName());
186 RecordFactory.log(logger, lr);
200 ml.log(Level.SEVERE, MSG);
399 public static void log(Logger logger, LogRecord lr) method in class:LogRecordTest.RecordFactory
414 public void log(Level l, String s) { method in class:LogRecordTest.MockLogger
422 public void log(LogRecord record) { method in class:LogRecordTest.MockLogger
    [all...]
  /external/emma/core/java12/com/vladium/emma/data/
DataFactory.java 396 final Logger log = Logger.getLogger (); local
397 final boolean trace1 = log.atTRACE1 ();
398 final boolean trace2 = log.atTRACE2 ();
420 if (trace1) log.trace1 (method, "[" + file + "]: file length = " + length);
445 if (trace2) log.trace2 (method, "[" + file + "]: position " + raf.getFilePointer ());
458 if (trace2) log.trace2 (method, "[" + file + "]: found valid entry of size " + entryLength + " and type " + type);
462 if (trace2) log.trace2 (method, "entry read in " + (System.currentTimeMillis () - entrystart) + " ms");
492 log.trace1 (method, "[" + file + "]: file processed in " + (end - start) + " ms");
505 final Logger log = Logger.getLogger (); local
506 final boolean trace1 = log.atTRACE1 ()
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 115 * Print to the log file (if logging enabled)
116 * @param s String to send to the log
118 protected void log(String s) { method in class:Support_TestWebServer
176 log("Server will redirect output to "+redirect+" code "+code);
202 log("Closing AcceptThread"+acceptT);
232 log(e.getMessage());
234 log(e.getMessage());
237 log("AcceptThread terminated" + this);
253 log("IOException caught by server socket close");
339 log("Exception during handleClient in the TestWebServer: " + e.getMessage())
341 log(this+" terminated"); method
365 StringBuilder log = new StringBuilder(); local
690 log(new String(bytes)); method
    [all...]
  /art/runtime/
transaction.h 147 ObjectLog(ObjectLog&& log) = default; member in class:art::FINAL::ObjectLog
166 FieldValue(FieldValue&& log) = default; member in struct:art::FINAL::ObjectLog::FieldValue
194 ArrayLog(ArrayLog&& log) = default; member in class:art::FINAL::ArrayLog
227 InternStringLog(InternStringLog&& log) = default; member in class:art::FINAL::InternStringLog
252 void LogInternedString(InternStringLog&& log)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
Correlation.java 19 import android.util.Log;
42 log("Started Auto Correlation for data with " + data.length + " points");
73 log(String.format(" Maxvalue %f, max Index : %d/%d (%d) minIndex=%d",maxValue, maxIndex,
76 log(String.format(" average : %.3f rms: %.3f", average, rms));
83 log(String.format("Raw: %.3f",raw));
87 log(String.format(" ****Confidence: %.2f",mEstimatedLatencyConfidence));
93 log(String.format(" latencySamples: %.2f %.2f ms", mEstimatedLatencySamples,
134 log(String.format(" Threshold: %.3f, ignored:%d/%d (%%.2f)", threshold, ignored, N,
166 private static void log(String msg) { method in class:Correlation
167 Log.v("Recorder", msg)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
GpsTestActivity.java 30 import android.util.Log;
36 public void log(String s); method in interface:PassFailLog
120 log("All GPS tests complete", Color.GREEN);
127 public void log(String s) { method in class:GpsTestActivity
140 private void log(String s, int color) { method in class:GpsTestActivity
151 log(s, Color.RED); method
157 log("OK!\n", Color.GREEN);
160 log("(Sleep 2 second) \n", Color.GREEN);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/
ReportExporter.java 43 protected static final Logger LOG = Logger.getLogger(ReportExporter.class.getName());
56 LOG.log(Level.WARNING, "External storage is not writable.");
76 LOG.log(Level.WARNING, "I/O exception writing report to storage.", e);
84 LOG.log(Level.WARNING, "I/O exception closing report.", e);
  /cts/tests/tests/shortcutmanager/src/android/content/pm/cts/shortcutmanager/
ShortcutLaunchedActivity.java 22 import android.util.Log;
53 private void log(String action) { method in class:ShortcutLaunchedActivity
54 Log.i(TAG, String.format("Activity #%d %s: intent=%s",
59 log("ctor");
68 log("onCreate");
75 log("onResume");
79 log("Not my turn yet.");
95 log("onPause");
102 log("onDestroy");
  /developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/midiscope/
MainActivity.java 62 mLog = (TextView) findViewById(R.id.log);
83 log(getString(R.string.header_text));
85 log(MidiPrinter.formatDeviceInfo(deviceInfo));
92 // Tell the virtual device to log its messages here..
100 // writing log messages to this Activity.
137 public void log(final String string) { method in class:MainActivity
  /developers/samples/android/media/MidiScope/Application/src/main/java/com/example/android/midiscope/
MainActivity.java 62 mLog = (TextView) findViewById(R.id.log);
83 log(getString(R.string.header_text));
85 log(MidiPrinter.formatDeviceInfo(deviceInfo));
92 // Tell the virtual device to log its messages here..
100 // writing log messages to this Activity.
137 public void log(final String string) { method in class:MainActivity
  /development/samples/browseable/MidiScope/src/com.example.android.midiscope/
MainActivity.java 62 mLog = (TextView) findViewById(R.id.log);
83 log(getString(R.string.header_text));
85 log(MidiPrinter.formatDeviceInfo(deviceInfo));
92 // Tell the virtual device to log its messages here..
100 // writing log messages to this Activity.
137 public void log(final String string) { method in class:MainActivity
  /development/tools/idegen/src/com/android/idegen/
DirectorySearch.java 228 logger.log(Level.SEVERE, "Could not get jar location.", e);
  /external/apache-http/android/src/com/android/internal/http/multipart/
MultipartEntity.java 46 import org.apache.commons.logging.Log;
86 private static final Log log = LogFactory.getLog(MultipartEntity.class); field in class:MultipartEntity
210 log.error("An exception occurred while getting the length of the parts", e);
  /external/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 25 import org.apache.commons.logging.Log;
29 * <p>Implementation of the <code>org.apache.commons.logging.Log</code>
44 public class Jdk14Logger implements Log, Serializable {
87 private void log( Level level, String msg, Throwable ex ) { method in class:Jdk14Logger
114 * @param message to log
115 * @see org.apache.commons.logging.Log#debug(Object)
118 log(Level.FINE, String.valueOf(message), null); method
125 * @param message to log
126 * @param exception log this cause
127 * @see org.apache.commons.logging.Log#debug(Object, Throwable
130 log(Level.FINE, String.valueOf(message), exception); method
141 log(Level.SEVERE, String.valueOf(message), null); method
153 log(Level.SEVERE, String.valueOf(message), exception); method
164 log(Level.SEVERE, String.valueOf(message), null); method
176 log(Level.SEVERE, String.valueOf(message), exception); method
198 log(Level.INFO, String.valueOf(message), null); method
210 log(Level.INFO, String.valueOf(message), exception); method
269 log(Level.FINEST, String.valueOf(message), null); method
281 log(Level.FINEST, String.valueOf(message), exception); method
292 log(Level.WARNING, String.valueOf(message), null); method
304 log(Level.WARNING, String.valueOf(message), exception); method
    [all...]

Completed in 2197 milliseconds

<<11121314151617181920>>