HomeSort by relevance Sort by last modified time
    Searched refs:log (Results 1 - 25 of 839) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/ipsec-tools/src/racoon/
logger.h 37 struct log { struct
45 extern struct log *log_open __P((size_t, char *));
46 extern void log_add __P((struct log *, char *));
47 extern int log_print __P((struct log *, char *));
48 extern int log_vprint __P((struct log *, const char *, ...));
49 extern int log_vaprint __P((struct log *, const char *, va_list));
50 extern int log_close __P((struct log *));
51 extern void log_free __P((struct log *));
  /external/zlib/examples/
gzlog.h 25 The gzlog object allows writing short messages to a gzipped log file,
26 opening the log file locked for small bursts, and then closing it. The log
29 uncompressed data in the file. The log file is truncated to its new size at
30 that time. After closing, the log file is always valid gzip file that can
39 /* Open a gzlog object, creating the log file if it does not exist. Return
51 int gzlog_write(void *log, char *data, size_t len);
53 /* Close a gzlog object. Return non-zero on error. The log file is locked
58 int gzlog_close(void *log);
gzlog.c 21 /* log object structure */
24 int fd; /* log file descriptor */
62 /* release a log object */
63 local void log_clean(gz_log *log)
65 unlock(log->fd);
66 (void)close(log->fd);
67 free(log);
131 /* initialize a log object with locking */
138 gz_log *log; local
140 /* allocate log structure *
230 gz_log *log; local
368 gz_log *log; local
    [all...]
  /frameworks/base/include/utils/
Log.h 23 // The output will be correct when the log file is shared between multiple
26 // and so are NOT reentrant. Do not use LOG in a signal handler.
31 #include <cutils/log.h>
  /external/dropbear/libtommath/
mess.sh 2 if cvs log $1 >/dev/null 2>/dev/null; then exit 0; else echo "$1 shouldn't be here" ; exit 1; fi
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
Main.java 29 Log log = new Log(); local
34 if (!processArgs(log, args, osJarPath, osDestJar)) {
35 log.error("Usage: layoutlib_create [-v] output.jar input.jar ...");
39 log.info("Output: %1$s", osDestJar[0]);
41 log.info("Input : %1$s", path);
45 AsmGenerator agen = new AsmGenerator(log, osDestJar[0],
52 AsmAnalyzer aa = new AsmAnalyzer(log, osJarPath, agen,
83 log.error
    [all...]
LogAbortException.java 29 public void error(Log log) {
30 log.error(mFormat, mArgs);
  /external/dropbear/libtomcrypt/
mess.sh 2 if cvs log $1 >/dev/null 2>/dev/null; then exit 0; else echo "$1 shouldn't be here, removed"; rm -f $1 ; fi
  /bionic/libm/i387/
e_log.S 40 ENTRY(log) function
  /external/icu4c/test/intltest/
windttst.h 31 static void testLocales(TestLog *log);
winnmtst.h 31 static void testLocales(TestLog *log);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.10.js 24 ECMA Section: 15.8.2.10 Math.log(x)
40 var TITLE = "Math.log(x)";
52 array[item++] = new TestCase( SECTION, "Math.log.length", 1, Math.log.length );
54 array[item++] = new TestCase( SECTION, "Math.log()", Number.NaN, Math.log() );
55 array[item++] = new TestCase( SECTION, "Math.log(void 0)", Number.NaN, Math.log(void 0) );
56 array[item++] = new TestCase( SECTION, "Math.log(null)", Number.NEGATIVE_INFINITY, Math.log(null) )
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLDebugHelper.java 48 * a log.
53 * @param log - null to disable logging, non-null to enable logging.
79 public static GL wrap(GL gl, int configFlags, Writer log) {
83 if ( log != null ) {
86 gl = new GLLogWrapper(gl, log, logArgumentNames);
97 * @param log - null to disable logging, non-null to enable logging.
100 public static EGL wrap(EGL egl, int configFlags, Writer log) {
101 if (log != null) {
102 egl = new EGLLogWrapper(egl, configFlags, log);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
InvalidValueTypeException.java 17 package com.android.ddmlib.log;
19 import com.android.ddmlib.log.EventContainer.EventValueType;
20 import com.android.ddmlib.log.EventValueDescription.ValueType;
  /external/e2fsprogs/ext2ed/
ext2ed.conf.in 22 # LogFile is the location of the log file. Actual changes to the filesystem
26 LogFile /var/log/ext2ed.log
  /external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/
Makefile 18 log:
19 tail -f twistd.log
  /frameworks/base/core/java/android/bluetooth/
ScoSocket.java 23 import android.util.Log;
71 if (VDBG) log(this + " SCO OBJECT CTOR"); method
77 if (VDBG) log(this + " SCO OBJECT DTOR"); method
90 if (DBG) log("connect() " + this);
92 if (DBG) log("connect(): Bad state");
111 if (VDBG) log("accept() " + this);
113 if (DBG) log("Bad state");
127 if (DBG) log(this + " SCO OBJECT close() mState = " + mState); method
140 if (VDBG) log(this + " onConnected() mState = " + mState + " " + this); method
142 if (DBG) log("Strange state, closing " + mState + " " + this)
203 private void log(String msg) { method in class:ScoSocket
    [all...]
  /system/core/nexus/
SupplicantEvent.cpp 20 #include <cutils/log.h>
  /external/apache-http/src/org/apache/http/impl/conn/
IdleConnectionHandler.java 38 import org.apache.commons.logging.Log;
54 private final Log log = LogFactory.getLog(getClass()); field in class:IdleConnectionHandler
77 if (log.isDebugEnabled()) {
78 log.debug("Adding connection at: " + timeAdded);
95 log.warn("Removing a connection that never existed!");
120 if (log.isDebugEnabled()) {
121 log.debug("Checking for connections, idleTimeout: " + idleTimeout);
132 if (log.isDebugEnabled()) {
133 log.debug("Closing connection, connection time: " + connectionTime)
    [all...]
  /external/srec/srec/EventLog/include/
SR_EventLog.h 38 * OSI Event Log levels
46 * Log audio data.
50 * Log ADDWORD commands.
55 * Log a string token using the basic logging level.
57 #define SR_EventLogToken_BASIC(log, loglevel, tokenName, value) \
59 log->token(log, tokenName, value) : ESR_SUCCESS ) \
62 * Log an integer token using the basic logging level.
64 #define SR_EventLogTokenInt_BASIC(log, loglevel, tokenName, value) \
66 log->tokenInt(log, tokenName, value) : ESR_SUCCESS )
    [all...]
  /packages/apps/Phone/src/com/android/phone/
InCallControlState.java 20 import android.util.Log;
88 if (DBG) log("InCallControlState constructor...");
194 log("InCallControlState:");
195 log(" manageConferenceVisible: " + manageConferenceVisible);
196 log(" manageConferenceEnabled: " + manageConferenceEnabled);
197 log(" canAddCall: " + canAddCall);
198 log(" canSwap: " + canSwap);
199 log(" canMerge: " + canMerge);
200 log(" bluetoothEnabled: " + bluetoothEnabled);
201 log(" bluetoothIndicatorOn: " + bluetoothIndicatorOn)
212 private void log(String msg) { method in class:InCallControlState
    [all...]
Profiler.java 20 import android.util.Log;
86 log(">>> call screen perf stats <<<");
87 log(">>> request -> onCreate = " +
89 log(">>> onCreate -> created = " +
115 log(">>> incoming call panel perf stats <<<");
116 log(">>> request -> onCreate = " +
118 log(">>> onCreate -> created = " +
123 private static void log(String msg) { method in class:Profiler
124 Log.d(LOG_TAG, "[Profiler] " + msg);
InCallScreen.java 48 import android.util.Log;
309 // Flag indicating whether or not we should bring up the Call Log when
323 if (DBG) log("Handler: ignoring message " + msg + "; we're destroyed!");
327 if (DBG) log("Handler: handling message " + msg + " while not in foreground");
393 if (DBG) log("Got MMI_COMPLETE, finishing InCallScreen...");
421 if (VDBG) log("ALLOW_SCREEN_ON message...");
430 if (VDBG) log("TOUCH_LOCK_TIMER...");
435 if (VDBG) log("REQUEST_UPDATE_BLUETOOTH_INDICATION...");
445 if (DBG) log("Received PHONE_CDMA_CALL_WAITING event ...");
458 if (DBG) log("Received THREEWAY_CALLERINFO_DISPLAY_DONE event ...")
4940 private void log(String msg) { method in class:InCallScreen
    [all...]
  /cts/tools/host/src/com/android/cts/
CUIOutputStream.java 37 Log.log(msg);
48 Log.log(msg);
84 Log.log(CTS_PROMPT_SIGN);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplayFilteredLog.java 17 package com.android.ddmuilib.log.event;
19 import com.android.ddmlib.log.EventContainer;
20 import com.android.ddmlib.log.EventLogParser;

Completed in 1936 milliseconds

1 2 3 4 5 6 7 8 91011>>