HomeSort by relevance Sort by last modified time
    Searched defs:LOG (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/harfbuzz/src/
harfbuzz-stream.c 35 #define LOG(x) _hb_log x
48 #define LOG(x) do {} while (0)
64 LOG(( "_hb_stream_pos() -> %ld\n", stream->pos ));
79 LOG(( "_hb_stream_seek(%ld) -> 0x%04X\n", pos, error ));
103 LOG(( "_hb_stream_frame_enter(%ld) -> 0x%04X\n", count, error ));
113 LOG(( "_hb_stream_frame_exit()\n" ));
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromiumIncludes.h 34 // Both WebKit and Chromium define LOG. In AOSP, the framework also defines
35 // LOG. To avoid conflicts, we undefine LOG before including Chromium code,
37 #ifdef LOG
39 #undef LOG
49 // Copied from log.h.
117 #undef LOG
118 // If LOG was defined, restore it to the WebKit macro.
120 // If LOG was defined, JOIN_LOG_CHANNEL_WITH_PREFIX must be too.
123 #define LOG(channel, ...) ((void)0
    [all...]
  /system/core/debuggerd/
utility.h 27 /* if true, does not log anything to the Android logcat */
31 /* Log information onto the tombstone. */
32 void _LOG(log_t* log, bool in_tombstone_only, const char *fmt, ...)
35 #define LOG(fmt...) _LOG(NULL, 0, fmt)
  /sdk/chimpchat/src/com/android/chimpchat/core/
MultiSelectorText.java 34 private static final Logger LOG = Logger.getLogger(ChimpView.class.getName());
55 LOG.log(Level.SEVERE, "Error communicating with device: " + e.getMessage());
72 LOG.log(Level.SEVERE, "Error retrieving views: " + response);
ChimpView.java 33 private static final Logger LOG = Logger.getLogger(ChimpView.class.getName());
54 LOG.log(Level.SEVERE, "Error querying view: " + e.getMessage());
194 LOG.log(Level.SEVERE, "Error retrieving accesibility ids: " + e.getMessage());
  /sdk/monkeyrunner/src/com/android/monkeyrunner/controller/
MonkeyController.java 37 private static final Logger LOG = Logger.getLogger(MonkeyController.class.getName());
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
ReportExporter.java 41 protected static final Logger LOG = Logger.getLogger(ReportExporter.class.getName());
54 LOG.log(Level.WARNING, "External storage is not writable.");
62 LOG.log(Level.WARNING, "Couldn't create test results report", e);
77 LOG.log(Level.WARNING, "I/O exception writing report to storage.", e);
85 LOG.log(Level.WARNING, "I/O exception closing report.", e);
  /sdk/chimpchat/src/com/android/chimpchat/adb/
AdbBackend.java 36 private static Logger LOG = Logger.getLogger(AdbBackend.class.getCanonicalName());
115 LOG.log(Level.SEVERE, "Error sleeping", e);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunnerStarter.java 50 private static final Logger LOG = Logger.getLogger(MonkeyRunnerStarter.class.getName());
89 LOG.log(Level.SEVERE, "Unable to open plugin file. Is it a jar file? " +
97 LOG.log(Level.SEVERE, "Unable to get manifest file from jar: " +
111 LOG.log(Level.SEVERE, "Unable to convert file to url " + f.getAbsolutePath(),
121 LOG.log(Level.SEVERE, "Unable to load the specified plugin: " + pluginClass, e);
128 LOG.log(Level.SEVERE, "Unable to load the specified plugin: " + pluginClass, e)
    [all...]
MonkeyRunner.java 45 private static final Logger LOG = Logger.getLogger(MonkeyRunner.class.getCanonicalName());
96 LOG.log(Level.SEVERE, "Error sleeping", e);
ScriptRunner.java 49 private static final Logger LOG = Logger.getLogger(MonkeyRunnerOptions.class.getName());
102 LOG.log(Level.SEVERE, "Plugin Main through an exception.", e);
106 LOG.severe("Plugin Main returned error for: " + entry.getKey());
122 // Then some other kind of exception was thrown. Log it and return error;
123 LOG.log(Level.SEVERE, "Script terminated due to an exception", e);
MonkeyRect.java 37 private static final Logger LOG = Logger.getLogger(MonkeyRect.class.getName());
MonkeyRunnerOptions.java 26 private static final Logger LOG = Logger.getLogger(MonkeyRunnerOptions.class.getName());
126 printUsage("Missing Log Level after -v");
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/
MonkeyRecorder.java 33 private static final Logger LOG = Logger.getLogger(MonkeyRecorder.class.getName());
71 LOG.log(Level.SEVERE, "Unexpected Exception", e);
  /external/chromium/sdch/open-vcdiff/src/
logging.h 62 #define LOG(level) LogMessage(open_vcdiff::level, #level)
  /external/webkit/Source/WebKit/android/content/
content_detector.cpp 35 #undef LOG
  /external/openfst/src/include/fst/
log.h 0 // log.h
50 #define LOG(type) LogMessage(#type).stream()
51 #define VLOG(level) if ((level) <= FLAGS_v) LOG(INFO)
  /frameworks/base/core/java/android/webkit/
ConsoleMessage.java 22 * <code>console.log('...')</code>) or a JavaScript error on the page. To receive notifications
31 LOG,
  /frameworks/base/core/java/com/android/internal/http/multipart/
StringPart.java 37 import org.apache.commons.logging.Log;
52 /** Log object for this class. */
53 private static final Log LOG = LogFactory.getLog(StringPart.class);
126 LOG.trace("enter sendData(OutputStream)");
137 LOG.trace("enter lengthOfData()");
FilePart.java 39 import org.apache.commons.logging.Log;
68 /** Log object for this class. */
69 private static final Log LOG = LogFactory.getLog(FilePart.class);
191 LOG.trace("enter sendDispositionHeader(OutputStream out)");
210 LOG.trace("enter sendData(OutputStream out)");
216 LOG.debug("No data to send.");
239 LOG.trace("enter getSource()");
250 LOG.trace("enter lengthOfData()");
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestTrustManager.java 34 private static final boolean LOG = false;
35 private static final PrintStream out = LOG ? System.out : new NullPrintStream();
  /bootable/recovery/minzip/
Log.h 9 // The output will be correct when the log file is shared between multiple
12 // and so are NOT reentrant. Do not use LOG in a signal handler.
46 * Simplified macro to send a verbose log message using the current LOG_TAG.
52 #define LOGV(...) ((void)LOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
64 ? ((void)LOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \
73 * Simplified macro to send a debug log message using the current LOG_TAG.
76 #define LOGD(...) ((void)LOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__))
82 ? ((void)LOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)) \
87 * Simplified macro to send an info log message using the current LOG_TAG.
90 #define LOGI(...) ((void)LOG(LOG_INFO, LOG_TAG, __VA_ARGS__)
    [all...]
  /external/qemu/
loadpng.c 7 #define LOG(x...) fprintf(stderr,"error: " x)
9 #define LOG(x...) do {} while (0)
26 LOG("%s: failed to allocate png read struct\n", fn);
32 LOG("%s: failed to allocate png info struct\n", fn);
38 LOG("%s: failed to open file\n", fn);
43 LOG("%s: failed to read header\n", fn);
48 LOG("%s: header is not a PNG header\n", fn);
53 LOG("%s: png library error\n", fn);
94 LOG("%s: unsupported (grayscale?) color type\n");
106 LOG("could not allocate data buffer\n")
    [all...]
  /external/webkit/Tools/FindSafari/
FindSafari.cpp 36 #define LOG(header, ...) \
41 #define LOG_WARNING(...) LOG(TEXT("WARNING: "), __VA_ARGS__)
42 #define LOG_ERROR(...) LOG(TEXT("ERROR: "), __VA_ARGS__)
  /sdk/chimpchat/src/com/android/chimpchat/
ChimpManager.java 49 private static Logger LOG = Logger.getLogger(ChimpManager.class.getName());
182 LOG.info("Monkey Command: " + command + ".");
246 LOG.log(Level.SEVERE, "Unable to close monkeySocket", e);
251 LOG.log(Level.SEVERE, "Unable to close monkeyReader", e);
256 LOG.log(Level.SEVERE, "Unable to close monkeyWriter", e);

Completed in 3265 milliseconds

1 2 3