/bootable/diskinstaller/libdiskconfig/ |
dump_diskconfig.c | 21 #include <cutils/log.h>
|
/cts/tests/tests/permission/src/android/permission/cts/ |
NoReadLogsPermissionTest.java | 25 import android.util.Log; 28 * Verify the read system log require specific permissions. 34 * Verify that we won't get the system log without a READ_LOGS permission. 46 Log.d(LOGTAG, "no read logs permission test"); 51 final StringBuilder log = new StringBuilder(); local 54 log.append(line); 55 log.append(separator); 57 // no permission get empty log 58 assertEquals(0, log.length());
|
/external/netcat/scripts/ |
dist.sh | 11 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/ |
arbt_math.h | 28 #define arbt_log log
|
/external/webkit/WebKitTools/Scripts/webkitpy/steps/ |
closebugforlanddiff.py | 32 from webkitpy.webkit_logging import log namespace 49 log("Updating bug %s" % bug_id) 57 log(comment_text) 58 log("No bug id provided.")
|
runtests.py | 31 from webkitpy.webkit_logging import log namespace 51 log("Running Python unit tests") 53 log("Running Perl unit tests") 55 log("Running JavaScriptCore tests") 58 log("Running run-webkit-tests")
|
updatechangelogswithreviewer.py | 35 from webkitpy.webkit_logging import log, error namespace 47 log("%s on bug %s, cannot infer reviewer." % (pluralize("reviewed patch", len(patches)), bug_id)) 50 log("Guessing \"%s\" as reviewer from attachment %s on bug %s." % (patch.reviewer().full_name, patch.id(), bug_id)) 61 log("No bug id provided and --reviewer= not provided. Not updating ChangeLogs with reviewer.") 66 log("Failed to guess reviewer from bug %s and --reviewer= not provided. Not updating ChangeLogs with reviewer." % bug_id)
|
/system/core/libdiskconfig/ |
dump_diskconfig.c | 21 #include <cutils/log.h>
|
/external/apache-http/src/org/apache/commons/logging/ |
LogSource.java | 27 * <p>Factory for creating {@link Log} instances. Applications should call 29 * of the configured {@link Log} implementation class.</p> 45 * <code>org.apache.commons.logging.log</code> to the name of the 46 * <code>org.apache.commons.logging.Log</code> implementation class 69 /** Constructor for current log class */ 100 // Set the default Log implementation 103 name = System.getProperty("org.apache.commons.logging.log"); 105 name = System.getProperty("org.apache.commons.logging.Log"); 157 * Set the log implementation/log implementation factor 195 Log log = (Log) (logs.get(name)); local 236 Log log = null; local [all...] |
/external/emma/core/java12/com/vladium/emma/ |
Processor.java | 41 final Logger log = AppLoggers.create (m_appName, toolProperties, current); local 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/webkit/LayoutTests/http/tests/appcache/resources/ |
offline-access.js | 3 applicationCache.oncached = function() { log("cached") } 4 applicationCache.onnoupdate = function() { log("noupdate") } 5 applicationCache.onerror = function() { log("error") }
|
/dalvik/libcore/support/src/test/java/tests/support/ |
Support_TestWebServer.java | 101 * @param log Set true if you want trace output 103 public void initServer(boolean log) throws Exception { 104 initServer(DEFAULT_PORT, DEFAULT_TIMEOUT, log); 110 * @param log Set true if you want trace output 112 public void initServer(int port, boolean log) throws Exception { 113 initServer(port, DEFAULT_TIMEOUT, log); 117 * Initialize a new server with default timeout and disabled log. 133 * @param log Set true if you want trace output 135 public void initServer(int port, int timeout, boolean log) throws Exception { 138 mLog = log; 152 protected void log(String s) { method in class:Support_TestWebServer 391 log(this+" terminated"); method 415 StringBuilder log = new StringBuilder(); local 731 log(new String(bytes)); method [all...] |
/external/dropbear/libtommath/demo/ |
timing.c | 84 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/ |
ReportProcessor.java | 116 final Logger log = m_log; local 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.verbose (" " + nonexistent + f.getAbsolutePath ()) [all...] |
/external/apache-http/src/org/apache/http/client/protocol/ |
ResponseProcessCookies.java | 37 import org.apache.commons.logging.Log; 64 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: \" [all...] |
/packages/apps/Email/src/org/apache/james/mime4j/decoder/ |
QuotedPrintableInputStream.java | 26 import org.apache.james.mime4j.Log;
38 private static Log log = LogFactory.getLog(QuotedPrintableInputStream.class);
field in class:QuotedPrintableInputStream 150 if (log.isWarnEnabled()) {
151 log.warn("Malformed MIME; got ==");
156 if (log.isWarnEnabled()) {
157 log.warn("Malformed MIME; expected \\r or "
170 if (log.isWarnEnabled()) {
171 log.warn("Malformed MIME; expected "
188 if (log.isWarnEnabled()) { [all...] |
/packages/apps/Phone/src/com/android/phone/ |
NetworkQueryService.java | 31 import android.util.Log; 84 if (DBG) log("scan completed, broadcasting results"); 115 if (DBG) log("registering callback " + cb.getClass().toString()); 124 if (DBG) log("starting new query"); 129 if (DBG) log("query already in progress"); 150 if (DBG) log("unregistering callback " + cb.getClass().toString()); 178 if (DBG) log("binding service implementation"); 193 if (DBG) log("AsyncResult is null."); 200 if (DBG) log("AsyncResult has exception " + exception); 205 if (DBG) log("broadcasting results to " + cb.getClass().toString()) 217 private static void log(String msg) { method in class:NetworkQueryService [all...] |
InCallMenuView.java | 25 import android.util.Log; 97 if (DBG) log("InCallMenuView constructor..."); 107 if (DBG) log("- IconMenuView styled attrs: " + a); 110 if (DBG) log(" - mRowHeight: " + mRowHeight); 114 if (DBG) log("- MenuView styled attrs: " + a); 116 if (DBG) log(" - mItemBackground: " + mItemBackground); 118 if (DBG) log(" - mHorizontalDivider: " + mHorizontalDivider); 121 if (DBG) log(" - mVerticalDivider: " + mVerticalDivider); 173 if (DBG) log("addItemView(" + itemView + ", row " + row + ")..."); 209 if (DBG) log("updateVisibility()...") 483 private void log(String msg) { method in class:InCallMenuView [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
RetryManager.java | 19 import android.util.Log; 115 if (DBG) log("constructor"); 133 if (DBG) log("configure: " + maxRetryCount + ", " + retryTime + "," + randomizationTime); 167 if (DBG) log("configure: '" + configStr + "'"); 172 if (DBG) log("configure: not empty"); 180 if (DBG) log("configure: strArray[" + i + "]='" + strArray[i] + "'"); 184 if (DBG) log("configure: splitStr[0]='" + splitStr[0] + "'"); 187 if (DBG) log("configure: splitStr[1]='" + splitStr[1] + "'"); 201 Log.e(LOG_TAG, "Unrecognized configuration name value pair: " 220 if (DBG) log("configure: splitStr[1]='" + splitStr[1] + "'") 393 private void log(String s) { method in class:RetryManager [all...] |
/development/samples/BrowserPlugin/jni/background/ |
BackgroundPlugin.cpp | 77 gLogI.log(kError_ANPLogType, "Error selecting input events."); 95 gLogI.log(kError_ANPLogType, " ---- getSurface: failed to get env"); 103 gLogI.log(kError_ANPLogType, " ---- getSurface: failed to load class"); 111 gLogI.log(kError_ANPLogType, " ---- getSurface: failed to construct object"); 140 gLogI.log(kError_ANPLogType, " ------ %p zoom is out of sync (%f,%f)", 152 gLogI.log(kError_ANPLogType, " ------ %p unable to lock the plugin", inst()); 185 gLogI.log(kError_ANPLogType, " ------ %p the plugin did not request draw events", inst()); 190 gLogI.log(kDebug_ANPLogType, " ------ %p onLoad", inst()); 193 gLogI.log(kDebug_ANPLogType, " ------ %p onScreen", inst()); 196 gLogI.log(kDebug_ANPLogType, " ------ %p offScreen", inst()) [all...] |
/external/emma/core/java12/com/vladium/emma/data/ |
MergeProcessor.java | 96 final Logger log = m_log; local 101 log.verbose (IAppConstants.APP_VERBOSE_BUILD_ID); 104 log.verbose ("input data path:"); 105 log.verbose ("{"); 111 log.verbose (" " + nonexistent + f.getAbsolutePath ()); 113 log.verbose ("}"); 117 log.info ("processing input files ..."); 137 final long start = log.atINFO () ? System.currentTimeMillis () : 0; 142 if (verbose) log.verbose ("processing input file [" + dataFile.getAbsolutePath () + "] ..."); 149 if (verbose) log.verbose (" loaded " + _mdata.size () + " metadata entries") [all...] |
/ndk/ |
ndk-gdb | 224 log "Android NDK installation path: $ANDROID_NDK_ROOT" 236 log "Using specific adb command: $ADB_CMD" 244 log "Using default adb command: $ADB_CMD" 252 log "ADB version found: $ADB_VERSION" 255 log "Using final ADB command: '$ADB_CMD'" 285 log "Using specified project path: $PROJECT" 314 log "Using auto-detected project path: $PROJECT" 319 log "Found package name: $PACKAGE_NAME" 328 log "Extracting list of launchable activities from manifest:" 335 log "Found debuggable flag: $DEBUGGABLE [all...] |
/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> 39 public class Jdk14Logger implements Log, Serializable { 82 private void log( Level level, String msg, Throwable ex ) { method in class:Jdk14Logger 109 * @param message to log 110 * @see org.apache.commons.logging.Log#debug(Object) 113 log(Level.FINE, String.valueOf(message), null); method 120 * @param message to log 121 * @param exception log this cause 122 * @see org.apache.commons.logging.Log#debug(Object, Throwable 125 log(Level.FINE, String.valueOf(message), exception); method 136 log(Level.SEVERE, String.valueOf(message), null); method 148 log(Level.SEVERE, String.valueOf(message), exception); method 159 log(Level.SEVERE, String.valueOf(message), null); method 171 log(Level.SEVERE, String.valueOf(message), exception); method 193 log(Level.INFO, String.valueOf(message), null); method 205 log(Level.INFO, String.valueOf(message), exception); method 264 log(Level.FINEST, String.valueOf(message), null); method 276 log(Level.FINEST, String.valueOf(message), exception); method 287 log(Level.WARNING, String.valueOf(message), null); method 299 log(Level.WARNING, String.valueOf(message), exception); method [all...] |
/development/samples/BrowserPlugin/jni/video/ |
VideoPlugin.cpp | 56 gLogI.log(kError_ANPLogType, "Error selecting input events."); 74 gLogI.log(kError_ANPLogType, " ---- getSurface: failed to get env"); 82 gLogI.log(kError_ANPLogType, " ---- getSurface: failed to load class"); 90 gLogI.log(kError_ANPLogType, " ---- getSurface: failed to construct object"); 111 gLogI.log(kDebug_ANPLogType, " ---- %p entering fullscreen", inst()); 114 gLogI.log(kDebug_ANPLogType, " ---- %p exiting fullscreen", inst()); 120 gLogI.log(kError_ANPLogType, " ------ %p the plugin did not request draw events", inst()); 124 gLogI.log(kDebug_ANPLogType, " ------ %p requesting fullscreen mode", inst()); 129 gLogI.log(kError_ANPLogType, " ------ %p the plugin did not request key events", inst());
|
/frameworks/base/tests/CoreTests/android/core/ |
TestWebServer.java | 19 import android.util.Log; 104 * @param log Set true if you want trace output 106 public void initServer(boolean log) throws Exception { 107 initServer(DEFAULT_PORT, DEFAULT_TIMEOUT, log); 113 * @param log Set true if you want trace output 115 public void initServer(int port, boolean log) throws Exception { 116 initServer(port, DEFAULT_TIMEOUT, log); 124 * @param log Set true if you want trace output 126 public void initServer(int port, int timeout, boolean log) throws Exception { 129 mLog = log; 143 protected void log(String s) { method in class:TestWebServer 390 log(this+" Moving to wait state"); method 418 log(this+" terminated"); method 759 log(new String(bytes)); method [all...] |