/external/nist-sip/java/gov/nist/javax/sip/stack/ |
MessageLog.java | 36 * Used to log messages. 146 String log; local 149 log = 167 log += "<![CDATA["; 168 log += message; 169 log += "]]>\n"; 170 log += "</message>\n"; 172 return log;
|
/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...] |
/external/chromium_org/third_party/libxml/src/ |
check-xml-test-suite.py | 18 LOG="check-xml-test-suite.log" 20 log = open(LOG, "w") variable 76 global log 94 log.write("%s: error: Well Formedness error not detected\n" % (id)) 101 global log 120 log.write("%s: error: Well Formedness error not detected\n" % (id)) 127 global log 147 log.write("%s: error: Well Formedness error not detected\n" % (id) [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...] |
/ndk/build/tools/ |
build-host-perl.sh | 74 log "Using source directory: $SRC_DIR" 87 log "Configuring the build" 107 log "Building perl" 112 log "Checking perl" 117 log "Installing perl" 121 log "Copying executable to prebuilt location" 125 log "Copying library to prebuilt location" 137 log "Cleaning up" 142 log "Done."
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastAlertReminder.java | 31 import android.util.Log; 68 log("playing alert reminder"); 74 log("no reminders queued"); 92 log("playing alert reminder sound"); 111 if (DBG) log("no preference value for alert reminder"); 130 if (DBG) log("queueAlertReminder() in " + interval + " minutes"); 153 if (DBG) log("cancelAlertReminder()"); 155 if (DBG) log("stopping play reminder ringtone"); 160 if (DBG) log("canceling pending play reminder intent"); 166 private static void log(String msg) method in class:CellBroadcastAlertReminder [all...] |
/external/chromium/chrome/browser/net/ |
chrome_net_log_unittest.cc | 23 void Init(ChromeNetLog* log) { 24 log_ = log; 56 ChromeNetLog log; local 60 threads[i].Init(&log); 71 log.GetAllPassivelyCapturedEvents(&entries);
|
/external/chromium/chrome/browser/notifications/ |
notification_test_util.h | 40 // static void log(string); 50 Logger::log("notification displayed\n"); 53 Logger::log("notification error\n"); 56 Logger::log("notification clicked\n"); 60 Logger::log("notification closed by user\n"); 62 Logger::log("notification closed by script\n");
|
/external/chromium_org/chrome/browser/sync_file_system/ |
logger_unittest.cc | 16 util::Log(logging::LOG_INFO, FROM_HERE, "Info test message"); 17 util::Log(logging::LOG_WARNING, FROM_HERE, "Warning test message"); 18 util::Log(logging::LOG_ERROR, FROM_HERE, "Error test message"); 43 const std::vector<EventLogger::Event> log = util::GetLogHistory(); local 44 ASSERT_EQ(3u, log.size()); 45 EXPECT_TRUE(ContainsString("Info test message", log[0])); 46 EXPECT_TRUE(ContainsString("Warning test message", log[1])); 47 EXPECT_TRUE(ContainsString("Error test message", log[2]));
|
/external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/ |
NPPSetWindowCalledDuringDestruction.cpp | 80 log("Fail: setWillBeDestroyed() was called before the initial NPP_SetWindow call"); 85 log("Fail: NPP_SetWindow passed a non-null window during plugin destruction"); 91 log("Fail: NPP_SetWindow called more than once before plugin destruction"); 108 log("Success: NPP_SetWindow %s called during plugin destruction", shouldHaveBeenCalledDuringDestruction ? "was" : "was not"); 110 log("Fail: NPP_SetWindow %s called during plugin destruction", shouldHaveBeenCalledDuringDestruction ? "was not" : "was");
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/ |
AbstractDescriptorBox.java | 32 private static Logger log = Logger.getLogger(AbstractDescriptorBox.class.getName()); field in class:AbstractDescriptorBox 75 log.log(Level.WARNING, "Error parsing ObjectDescriptor", e); 78 log.log(Level.WARNING, "Error parsing ObjectDescriptor", e);
|
/packages/apps/Mms/src/com/android/mms/ui/ |
NoConfirmationSendService.java | 25 import android.util.Log; 46 ComposeMessageActivity.log("NoConfirmationSendService onHandleIntent"); 50 ComposeMessageActivity.log("NoConfirmationSendService onHandleIntent wrong action: " + 56 ComposeMessageActivity.log("Called to send SMS but no extras"); 66 ComposeMessageActivity.log("Recipient(s) cannot be empty"); 75 ComposeMessageActivity.log("Message cannot be empty"); 91 Log.e(TAG, "Failed to send SMS message, threadId=" + threadId, e);
|
/system/core/debuggerd/mips/ |
machine.c | 39 static void dump_memory(log_t* log, pid_t tid, uintptr_t addr, int scopeFlags) { 95 _LOG(log, scopeFlags, " %s %s\n", code_buffer, ascii_buffer); 104 log_t* log, pid_t tid, bool at_fault) { variable 133 _LOG(log, scopeFlags | SCOPE_SENSITIVE, "\nmemory near %.2s:\n", ®_NAMES[reg * 2]); 134 dump_memory(log, tid, addr, scopeFlags | SCOPE_SENSITIVE); 141 _LOG(log, scopeFlags, "\ncode around pc:\n"); 142 dump_memory(log, tid, (uintptr_t)pc, scopeFlags); 145 _LOG(log, scopeFlags, "\ncode around ra:\n"); 146 dump_memory(log, tid, (uintptr_t)ra, scopeFlags); 151 log_t* log, pid_t tid, bool at_fault variable [all...] |
/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...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
DcController.java | 80 log("E ctor"); 85 log("X ctor"); 95 log("dispose: call quiteNow()"); 110 log("addActiveDcByCid dc.mCid < 0 dc=" + dc); 118 log("removeActiveDcByCid removedDc=null dc=" + dc); 155 log("DccDefaultState: msg.what=EVENT_RIL_CONNECTED mRilVersion=" + 159 log("DccDefaultState: Unexpected exception on EVENT_RIL_CONNECTED"); 168 log("DccDefaultState: EVENT_DATA_STATE_CHANGED:" + 186 log("onDataStateChanged: mDcListAll=" + mDcListAll); 201 if (DBG) log("onDataStateChanged: add to retry dc=" + dc) 332 protected void log(String s) { method in class:DcController [all...] |
/packages/services/Telephony/src/com/android/phone/ |
CallController.java | 38 import android.util.Log; 68 // Do not check in with VDBG = true, since that may write PII to the system log. 114 Log.wtf(TAG, "init() called multiple times! sInstance = " + sInstance); 126 if (DBG) log("CallController constructor: app = " + app); 135 if (VDBG) log("handleMessage: " + msg); 139 if (DBG) log("THREEWAY_CALLERINFO_DISPLAY_DONE..."); 151 Log.wtf(TAG, "handleMessage: unexpected code: " + msg); 193 log("placeCall()... intent = " + intent); 194 if (VDBG) log(" extras = " + intent.getExtras()); 201 Log.wtf(TAG, "placeCall: called with null intent") 710 private static void log(String msg) { method in class:CallController [all...] |
/external/chromium_org/v8/test/webkit/ |
dfg-inlining-reg-alloc.js | 36 // produces integers. It also relies on the VM not reasoning about Math.log deeply 42 a += Math.log(b); 49 a += Math.log(b); 56 a += Math.log(b); 63 a += Math.log(b); 70 a += Math.log(b); 77 a += Math.log(b); 84 a += Math.log(b); 91 a += Math.log(b); 98 a += Math.log(b) [all...] |
/libcore/support/src/test/java/tests/support/ |
Support_TestWebServer.java | 118 * Print to the log file (if logging enabled) 119 * @param s String to send to the log 121 protected void log(String s) { method in class:Support_TestWebServer 187 log("Server will redirect output to "+redirect+" code "+code); 208 log("Closing AcceptThread"+acceptT); 247 log(e.getMessage()); 249 log(e.getMessage()); 252 log("AcceptThread terminated" + this); 268 log("IOException caught by server socket close"); 346 log("Exception during handleClient in the TestWebServer: " + e.getMessage()) 348 log(this+" terminated"); method 372 StringBuilder log = new StringBuilder(); local 688 log(new String(bytes)); method [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
logtesting.py | 43 Log messages captured by instances of this object can be tested 57 """A list of log messages written to the stream.""" 72 messages: A list of log message strings. 80 """Supports end-to-end unit-testing of log messages. 95 # Check the resulting log messages. 127 Configures the root logger to log to a testing log stream. 132 "INFO: This is a test log message." 144 of log messages you would like to test. 164 """Assert there are no remaining log messages, and reset logging [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
sampler.cc | 67 log_table_[i] = (log(1.0 + static_cast<double>(i+0.5)/(1<<kFastlogNumBits)) 68 / log(2.0)); 126 return static_cast<size_t>(min(0.0, (FastLog2(q) - 26)) * (-log(2.0)
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
sampler.cc | 67 log_table_[i] = (log(1.0 + static_cast<double>(i+0.5)/(1<<kFastlogNumBits)) 68 / log(2.0)); 126 return static_cast<size_t>(min(0.0, (FastLog2(q) - 26)) * (-log(2.0)
|
/external/droiddriver/src/com/google/android/droiddriver/finders/ |
MatchFinder.java | 19 import android.util.Log; 52 Logs.log(Log.INFO, "Found match: " + context); 59 Logs.log(Log.INFO, "Skip null child for " + context); 63 Logs.log(Log.VERBOSE, "Skip invisible child: " + child);
|
/external/emma/core/java12/com/vladium/emma/rt/ |
RTCoverageDataPersister.java | 45 final Logger log = Logger.getLogger (); local 46 final boolean info = log.atINFO (); 61 log.info ("runtime coverage data " + (merge ? "merged into" : "written to") + " [" + outFile.getAbsolutePath () + "] {in " + (end - start) + " ms}"); 67 // log
|
/external/mockito/src/org/mockito/internal/debugging/ |
LoggingListener.java | 23 logger.log(join(
32 logger.log("This stubbing was never used " + unused.getLocation() + "\n");
37 logger.log(join(
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/ |
AbstractManifestWriter.java | 25 private static final Logger LOG = Logger.getLogger(AbstractManifestWriter.class.getName());
94 String log = "";
local 95 log += (referenceTimes.length);
96 log += ("Reference : [");
98 log += (String.format("%10d,", l));
100 log += ("]");
101 LOG.warning(log);
102 log = "";
104 log += (checkTimes.length); [all...] |