HomeSort by relevance Sort by last modified time
    Searched refs:log (Results 1 - 25 of 986) 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.c 30 Files (log name "foo"):
31 foo.gz -- gzip file with the complete log
36 foo.repairs -- log file for log file recovery operations (not compressed)
83 gain exclusive access to the log files, first a foo.lock file must be
223 - Log the repair with a date stamp in foo.repairs
287 /* internal structure for log information */
289 struct log { struct
292 char *path; /* allocated path, e.g. "/var/log/foo" or "foo" */
348 local int log_lock(struct log *log
867 struct log *log; local
913 struct log *log = logd; local
997 struct log *log = logd; local
1043 struct log *log = logd; local
    [all...]
gzlog.h 29 gzlog_write() now always leaves the log file as valid gzip
33 The gzlog object allows writing short messages to a gzipped log file,
34 opening the log file locked for small bursts, and then closing it. The log
37 replaces the uncompressed data in the file. The log file is truncated to
38 its new size at that time. After each write operation, the log file is a
42 system crash, and the log file will be recovered the next time the log is
52 /* Open a gzlog object, creating the log file if it does not exist. Return
57 this object. If path is "foo", then the log file will be "foo.gz", an
    [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,
84 log.error
    [all...]
  /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/chromium/third_party/icu/source/test/intltest/
windttst.h 31 static void testLocales(TestLog *log);
winnmtst.h 31 static void testLocales(TestLog *log);
  /external/icu4c/test/intltest/
windttst.h 31 static void testLocales(TestLog *log);
winnmtst.h 31 static void testLocales(TestLog *log);
  /external/chromium/net/base/
load_log_util_unittest.cc 14 scoped_refptr<LoadLog> log(new LoadLog(10));
16 log->Add(LoadLog::Entry(MakeTime(1),
19 log->Add(
24 log->Add(
30 log->Add(LoadLog::Entry(MakeTime(12),
34 log->Add(LoadLog::Entry(MakeTime(131),
43 LoadLogUtil::PrettyPrintAsEventTree(log));
47 scoped_refptr<LoadLog> log(new LoadLog(10));
49 log->Add(LoadLog::Entry(MakeTime(1),
53 log->Add(LoadLog::Entry(MakeTime(12), "Sup foo"))
    [all...]
load_log_unittest.h 22 const LoadLog& log,
29 size_t j = (i < 0) ? log.entries().size() + i : i;
30 if (j >= log.entries().size())
32 const LoadLog::Entry& entry = log.entries()[j];
59 const LoadLog& log,
64 return LogContainsEventHelper(log, i, expected_time, true,
70 const LoadLog& log,
74 return LogContainsEventHelper(log, i, base::TimeTicks(), false,
80 const LoadLog& log,
83 return LogContainsEvent(log, i, expected_event, LoadLog::PHASE_BEGIN)
    [all...]
  /packages/apps/Phone/src/com/android/phone/
InCallControlState.java 20 import android.util.Log;
89 if (DBG) log("InCallControlState constructor...");
185 log("InCallControlState:");
186 log(" manageConferenceVisible: " + manageConferenceVisible);
187 log(" manageConferenceEnabled: " + manageConferenceEnabled);
188 log(" canAddCall: " + canAddCall);
189 log(" canSwap: " + canSwap);
190 log(" canMerge: " + canMerge);
191 log(" bluetoothEnabled: " + bluetoothEnabled);
192 log(" bluetoothIndicatorOn: " + bluetoothIndicatorOn)
203 private void log(String msg) { method in class:InCallControlState
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/frameworks/telephonytests/
TelephonyMockRilTestRunner.java 23 import android.util.Log;
38 log("getAllTests E");
41 log("getAllTests X");
47 log("getLoader EX");
53 log("onCreate E");
60 log("onCreate X");
68 log("onDestroy EX");
77 log("onStart EX");
84 log("finish E");
86 log("finish X")
90 private void log(String s) { method in class:TelephonyMockRilTestRunner
    [all...]
  /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);
  /external/chromium/base/
bits.h 20 int log = 0; local
27 log += shift;
31 return 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;
  /cts/tests/tests/permission/src/android/permission/cts/
NoReadLogsPermissionTest.java 22 import android.util.Log;
30 * Verify the read system log require specific permissions.
36 * Verify that we won't get the system log without a READ_LOGS permission.
48 Log.d(LOGTAG, "no read logs permission test");
53 final StringBuilder log = new StringBuilder(); local
56 log.append(line);
57 log.append(separator);
60 // no permission get empty log
61 assertEquals(0, log.length());
71 File logDir = new File("/dev/log");
    [all...]
  /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>

Completed in 1614 milliseconds

1 2 3 4 5 6 7 8 91011>>