Searched refs:log (Results 1 - 25 of 290) sorted by relevance

1234567891011>>

/external/ipsec-tools/src/racoon/
H A Dlogger.h37 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/
H A Dgzlog.h25 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);
H A Dgzlog.c21 /* log object structure */
24 int fd; /* log file descriptor */
62 /* release a log object */
63 local void log_clean(gz_log *log) argument
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 structur
230 gz_log *log; local
267 recomp(gz_log *log) argument
368 gz_log *log; local
[all...]
/external/dropbear/libtommath/
H A Dmess.sh2 if cvs log $1 >/dev/null 2>/dev/null; then exit 0; else echo "$1 shouldn't be here" ; exit 1; fi
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/
H A D15.8.2.10.js24 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(nul
[all...]
/external/dropbear/libtomcrypt/
H A Dmess.sh2 if cvs log $1 >/dev/null 2>/dev/null; then exit 0; else echo "$1 shouldn't be here, removed"; rm -f $1 ; fi
/external/webkit/LayoutTests/http/tests/appcache/resources/
H A Doffline-access.js3 applicationCache.oncached = function() { log("cached") }
4 applicationCache.onnoupdate = function() { log("noupdate") }
5 applicationCache.onerror = function() { log("error") }
/external/e2fsprogs/ext2ed/
H A Dext2ed.conf.in22 # LogFile is the location of the log file. Actual changes to the filesystem
26 LogFile /var/log/ext2ed.log
/external/icu4c/test/intltest/
H A Dwindttst.h31 static void testLocales(TestLog *log);
H A Dwinnmtst.h31 static void testLocales(TestLog *log);
/external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/
H A DMakefile18 log:
19 tail -f twistd.log
/external/webkit/WebCore/manual-tests/inspector/resources/
H A Dscript-console-calls.js2 console.log("Test console.log");
/external/apache-http/src/org/apache/http/impl/conn/
H A DIdleConnectionHandler.java54 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);
139 log.debug("I/O error closing connection", ex);
148 if (log
[all...]
/external/srec/srec/EventLog/include/
H A DSR_EventLog.h57 #define SR_EventLogToken_BASIC(log, loglevel, tokenName, value) \
59 log->token(log, tokenName, value) : ESR_SUCCESS ) \
64 #define SR_EventLogTokenInt_BASIC(log, loglevel, tokenName, value) \
66 log->tokenInt(log, tokenName, value) : ESR_SUCCESS ) \
71 #define SR_EventLogTokenUint16_t_BASIC(log, loglevel, tokenName, value) \
73 log->tokenUint16_t(log, tokenName, value) : ESR_SUCCESS ) \
78 #define SR_EventLogTokenSize_t_BASIC(log, logleve
[all...]
/external/netcat/scripts/
H A Ddist.sh11 SRC=`tail -1 dist.log`
20 ./nc -v -l -p ${PORT} -e dist.sh < /dev/null >> dist.log 2>&1 &
/external/opencore/codecs_v2/standalone_headerfiles/
H A Darbt_math.h28 #define arbt_log log
/external/webkit/WebKitTools/Scripts/webkitpy/steps/
H A Dclosebugforlanddiff.py32 from webkitpy.webkit_logging import log namespace
49 log("Updating bug %s" % bug_id)
57 log(comment_text)
58 log("No bug id provided.")
H A Dcompleterollout.py34 from webkitpy.webkit_logging import log namespace
51 # FIXME: Fully automated rollout is not 100% idiot-proof yet, so for now just log with instructions on how to complete the rollout.
54 log("\nNOTE: Rollout support is experimental.\nPlease verify the rollout diff and use \"webkit-patch land %s\" to commit the rollout." % bug_id)
63 log(comment_text)
64 log("No bugs were updated.")
H A Dapplypatch.py31 from webkitpy.webkit_logging import log namespace
41 log("Processing patch %s from bug %s." % (state["patch"].id(), state["patch"].bug_id()))
H A Dupdate.py31 from webkitpy.webkit_logging import log namespace
45 log("Updating working directory")
/external/apache-http/src/org/apache/commons/logging/
H A DLogSource.java45 * <code>org.apache.commons.logging.log</code> to the name of the
69 /** Constructor for current log class */
103 name = System.getProperty("org.apache.commons.logging.log");
157 * Set the log implementation/log implementation factory
161 * of the log).
179 * Set the log implementation/log implementation factory
182 * argument (containing the name of the log).
195 Log log
[all...]
/external/emma/core/java12/com/vladium/emma/
H A DProcessor.java41 final Logger log = AppLoggers.create (m_appName, toolProperties, current);
43 if (log.atTRACE1 ())
45 log.trace1 ("run", "complete tool properties:");
46 toolProperties.list (log.getWriter ());
51 Logger.push (log);
52 m_log = log;
/external/dropbear/libtommath/demo/
H A Dtiming.c84 FILE *log, *logb, *logc, *logd; local
108 log = fopen("logs/add.log", "w");
124 fprintf(log, "%d %9llu\n", cnt * DIGIT_BIT, tt);
125 fflush(log);
127 fclose(log);
129 log = fopen("logs/sub.log", "w");
146 fprintf(log, "%d %9llu\n", cnt * DIGIT_BIT, tt);
147 fflush(log);
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DReportProcessor.java116 final Logger log = m_log;
121 log.verbose (IAppConstants.APP_VERBOSE_BUILD_ID);
124 log.verbose ("input data path:");
125 log.verbose ("{");
131 log.verbose (" " + nonexistent + f.getAbsolutePath ());
133 log.verbose ("}");
138 log.verbose ("source path not set");
142 log.verbose ("source path:");
143 log.verbose ("{");
149 log
[all...]
/external/apache-http/src/org/apache/http/client/protocol/
H A DResponseProcessCookies.java64 private final Log log = LogFactory.getLog(getClass()); field in class:ResponseProcessCookies
83 this.log.info("Cookie store not available in HTTP context");
90 this.log.info("CookieSpec not available in HTTP context");
97 this.log.info("CookieOrigin not available in HTTP context");
126 if (this.log.isDebugEnabled()) {
127 this.log.debug("Cookie accepted: \""
131 if (this.log.isWarnEnabled()) {
132 this.log.warn("Cookie rejected: \""
138 if (this.log.isWarnEnabled()) {
139 this.log
[all...]

Completed in 319 milliseconds

1234567891011>>