/packages/apps/Email/src/org/apache/james/mime4j/field/ |
MailboxListField.java | 23 import org.apache.james.mime4j.Log;
50 private static Log log = LogFactory.getLog(Parser.class);
field in class:MailboxListField.Parser 59 if (log.isDebugEnabled()) {
60 log.debug("Parsing value '" + body + "': "+ e.getMessage());
|
/packages/apps/Phone/src/com/android/phone/ |
CdmaDisplayInfo.java | 22 import android.util.Log; 44 if (DBG) log("displayInfoRecord: infoMsg=" + infoMsg); 75 if (DBG) log("Dissmissing Display Info Record..."); 83 private static void log(String msg) { method in class:CdmaDisplayInfo 84 Log.d(LOG_TAG, "[CdmaDisplayInfo] " + msg);
|
DTMFTwelveKeyDialerView.java | 23 import android.util.Log; 67 if (DBG) log("dispatchKeyEvent(" + event + ")..."); 79 if (DBG) log("==> dispatchKeyEvent: forwarding event to the DTMFDialer"); 93 private void log(String msg) { method in class:DTMFTwelveKeyDialerView 94 Log.d(LOG_TAG, msg);
|
Ringer.java | 33 import android.util.Log; 77 if(DBG) Log.d(LOG_TAG, "updateRingerContextAfterRadioTechnologyChange..."); 124 if (DBG) log("ring()..."); 140 if (DBG) log("- starting vibrator..."); 147 if (DBG) log("skipping ring because volume is zero"); 163 log("delaying ring by " + (mFirstRingStartTime - mFirstRingEventTime)); 188 if (DBG) log("stopRing()..."); 208 if (DBG) log("- stopRing: null mRingHandler!"); 212 if (DBG) log("- stopRing: cleaning up vibrator thread..."); 284 if (DBG) log("mRingHandler: PLAY_RING_ONCE...") 322 private static void log(String msg) { method in class:Ringer [all...] |
ManageConferenceUtils.java | 21 import android.util.Log; 61 if (DBG) log("ManageConferenceUtils constructor..."); 67 if (DBG) log("initManageConferencePanel()..."); 69 if (DBG) log("initManageConferencePanel: first-time initialization!"); 143 if (DBG) log("updateManageConferencePanel()... num connections in conference = " 178 if (DBG) log("updateManageConferenceRow(" + i + ")... connection = " + connection); 196 if (DBG) log("- button: " + endButton + ", nameTextView: " + nameTextView); 227 if (DBG) log(" - got info from startGetCallerInfo(): " + info); 285 if (DBG) log("===> ENDING conference connection " + i 301 if (DBG) log("===> SEPARATING conference connection " + 338 private void log(String msg) { method in class:ManageConferenceUtils [all...] |
ADNList.java | 29 import android.util.Log; 105 if (DBG) log("query: starting an async query"); 162 if (DBG) log("displayProgress: " + flag); 176 if (DBG) log("onQueryComplete: cursor.count=" + c.getCount()); 185 if (DBG) log("onInsertComplete: requery"); 191 if (DBG) log("onUpdateComplete: requery"); 197 if (DBG) log("onDeleteComplete: requery"); 202 protected void log(String msg) { method in class:ADNList 203 Log.d(TAG, "[ADNList] " + msg);
|
CallCard.java | 28 import android.util.Log; 117 if (DBG) log("CallCard constructor..."); 118 if (DBG) log("- this = " + this); 119 if (DBG) log("- context " + context + ", attrs " + attrs); 136 if (DBG) log("- Density: " + mDensity); 158 if (DBG) log("CallCard onFinishInflate(this = " + this + ")..."); 201 if (DBG) log("updateState(" + phone + ")..."); 258 if (DBG) log("updateForegroundCall()..."); 264 if (DBG) log("updateForegroundCall: no active call, show holding call"); 300 if (DBG) log("updateRingingCall()...") 1475 private void log(String msg) { method in class:CallCard [all...] |
/dalvik/libcore/logging/src/main/java/java/util/logging/ |
Logger.java | 42 * Loggers are used to log records to certain outputs, including file, console, 49 * namespace hierarchy managed by a log manager. The naming convention is 53 * Loggers "inherit" log level setting from their parent if their own level is 55 * resource bundle is used to localize the log messages if no resource bundle 56 * name is given when a log method is called. If {@code getUseParentHandlers()} 67 * Some log methods accept log requests that do not specify the source class and 88 source.log(record); 142 /** True to notify the parent's handlers of each log message. */ 171 * Direct use of {@code android.util.Log} takes 29ns per message 898 log(Level.SEVERE, msg); method 909 log(Level.WARNING, msg); method 920 log(Level.INFO, msg); method 931 log(Level.CONFIG, msg); method 942 log(Level.FINE, msg); method 953 log(Level.FINER, msg); method 964 log(Level.FINEST, msg); method 976 public void log(Level logLevel, String msg) { method in class:Logger 997 public void log(Level logLevel, String msg, Object param) { method in class:Logger 1020 public void log(Level logLevel, String msg, Object[] params) { method in class:Logger 1044 public void log(Level logLevel, String msg, Throwable thrown) { method in class:Logger 1071 public void log(LogRecord record) { method in class:Logger [all...] |
/external/qemu/ |
android-configure.sh | 139 log "Prebuilt : CCACHE=$CCACHE" 146 log "Prebuilt : SDL_CONFIG=$SDL_CONFIG" 154 log "Targets : TARGETS=$OPTION_TARGETS" 161 log "Tools : Found tools revision number $ANDROID_SDK_TOOLS_REVISION" 163 log "Tools : Could not locate $TOOLS_PROPS !?" 182 log "Prebuilt : SDL_CONFIG=$SDL_CONFIG" 212 log "SDL-probe : SDL_CFLAGS = $SDL_CFLAGS" 213 log "SDL-probe : SDL_LIBS = $SDL_LIBS" 241 log "SDL-probe : static linking ok" 271 log "SDL-probe : extra features ok [all...] |
/system/core/init/ |
bootchart.c | 40 #define LOG_STAT LOG_ROOT"/proc_stat.log" 41 #define LOG_PROCS LOG_ROOT"/proc_ps.log" 42 #define LOG_DISK LOG_ROOT"/proc_diskstats.log" 171 /* create log file if needed */ 185 do_log_uptime(FileBuff log) 201 file_buff_write(log, buff, len); 207 do_log_ln(FileBuff log) 209 file_buff_write(log, "\n", 1); 214 do_log_file(FileBuff log, const char* procfile) 219 do_log_uptime(log); [all...] |
/cts/tools/host/src/com/android/cts/ |
Log.java | 28 public class Log { 40 private static boolean LOG = true; 50 log(INFO_PREFIX + msg); 60 log(INFO_PREFIX + msg); 71 log(ERROR_PREFIX + msg); 93 log(DEBUG_PREFIX + System.currentTimeMillis() + " " + msg); 119 * Initialize the log stream. 121 * @param path The path to add the log file. 137 * Close the log stream. 151 * Log the message 155 public static void log(String msg) { method in class:Log [all...] |
/external/webkit/WebKitTools/Scripts/webkitpy/commands/ |
queries.py | 36 from webkitpy.webkit_logging import log namespace 57 log("Patches in commit queue:") 74 log("%s already has cq=%s" % (patch.id(), patch.commit_queue())) 80 log("%s committer = %s" % (patch.id(), committer_record)) 102 log("Patches pending review:")
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothAudioGateway.java | 23 import android.util.Log; 98 if (DBG) log("Connect Thread starting"); 100 //Log.i(TAG, "waiting for connect"); 106 Log.i(TAG, "select thread timed out, but " + 110 Log.i(TAG, "select thread was interrupted (2), exiting"); 116 Log.i(TAG, "connect notification!"); 123 Log.i(TAG, "Incoming connection from headset " + 136 Log.i(TAG, "Incoming connection from handsfree " + 151 if (DBG) log("Connect Thread finished"); 156 Log.e(TAG, "Could not set up listening socket, exiting") 199 private static void log(String msg) { method in class:BluetoothAudioGateway [all...] |
/external/emma/core/java12/com/vladium/emma/instr/ |
InstrProcessorST.java | 71 final Logger log = m_log; local 72 if (log.atTRACE2 ()) log.trace2 ("handleArchiveStart", "[" + parentDir + "] [" + archive + "]"); 135 if (log.atTRACE2 ()) log.trace2 ("handleArchiveStart", "created temp archive [" + m_tempArchiveFile.getAbsolutePath () + "]"); 152 final Logger log = m_log; local 153 if (log.atTRACE2 ()) log.trace2 ("handleArchiveEntry", "[" + entry.getName () + "]"); 212 if (log.atVERBOSE ()) log.verbose ("destination file [" + outFile + "] skipped: more recent than the source") 344 final Logger log = m_log; local 389 final Logger log = m_log; local 404 final Logger log = m_log; local 574 final Logger log = m_log; local 623 final Logger log = m_log; local [all...] |
/external/speex/libspeex/ |
vbr.c | 95 vbr->last_log_energy[i] = log(MIN_ENERGY); 142 log_energy = log(ener+MIN_ENERGY); 194 short_diff = log((ener+1)/(1+vbr->last_energy)); 195 long_diff = log((ener+1)/(1+vbr->average_energy)); 240 qual -= 1.0 * (log(3.0 + vbr->consec_noise)-log(3)); 247 qual-=0.5*(log(3.0 + vbr->consec_noise)-log(3)); 249 qual-=0.5*(log(3.0 + vbr->consec_noise)-log(3)) [all...] |
/packages/apps/IM/src/com/android/im/imps/ |
TcpCirChannel.java | 31 import android.util.Log; 86 if (Log.isLoggable(ImpsLog.TAG, Log.DEBUG)) { 87 ImpsLog.log(mUser + " Shutting down CIR channel"); 130 if (Log.isLoggable(ImpsLog.TAG, Log.DEBUG)) { 131 ImpsLog.log(mUser + " TCP CIR: socket closed by server."); 136 if (Log.isLoggable(ImpsLog.TAG, Log.DEBUG)) { 137 ImpsLog.log(mUser + " << TCP CIR: OK Received") [all...] |
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
AbstractSessionContext.java | 137 log(e); 140 log(e); 156 log(new AssertionError("Unexpected type ID: " + type)); 176 log(e); 179 log(e); 184 static void log(Throwable t) { 185 java.util.logging.Logger.global.log(Level.WARNING,
|
/external/apache-http/src/org/apache/http/client/protocol/ |
RequestAddCookies.java | 40 import org.apache.commons.logging.Log; 72 private final Log log = LogFactory.getLog(getClass()); field in class:RequestAddCookies 91 this.log.info("Cookie store not available in HTTP context"); 99 this.log.info("CookieSpec registry not available in HTTP context"); 118 if (this.log.isDebugEnabled()) { 119 this.log.debug("CookieSpec selected: " + policy); 154 if (this.log.isDebugEnabled()) { 155 this.log.debug("Cookie " + cookie + " match " + cookieOrigin);
|
/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
ThreadSafeClientConnManager.java | 36 import org.apache.commons.logging.Log; 69 private final Log log = LogFactory.getLog(getClass()); field in class:ThreadSafeClientConnManager 170 if (log.isDebugEnabled()) { 171 log.debug("ThreadSafeClientConnManager.getConnection: " 201 if (log.isDebugEnabled()) { 202 log.debug 216 //@@@ log as warning? let pass? 217 if (log.isDebugEnabled()) 218 log.debug("Exception shutting down released connection." [all...] |
/external/icu4c/tools/ctestfw/ |
tstdtmod.cpp | 14 TestDataModule *TestDataModule::getTestDataModule(const char* name, TestLog& log, UErrorCode &status) 24 result = new RBTestDataModule(name, log, status); 33 TestDataModule::TestDataModule(const char* name, TestLog& log, UErrorCode& /*status*/) 36 fLog(log) 61 RBTestDataModule::RBTestDataModule(const char* name, TestLog& log, UErrorCode& status) 62 : TestDataModule(name, log, status), 76 log.errln(UNICODE_STRING_SIMPLE("Unable to initalize test data - missing mandatory description resources!"));
|
/frameworks/base/tests/BrowserTestPlugin/jni/event/ |
EventPlugin.cpp | 49 gLogI.log(kDebug_ANPLogType, " ------ %p drawing the plugin (%d,%d)", 63 gLogI.log(kError_ANPLogType, " ------ %p zoom is out of sync (%f,%f)", 112 gLogI.log(kError_ANPLogType, " ------ %p Unable to retrieve DOM Window", inst()); 129 gLogI.log(kDebug_ANPLogType, "text: %.*s\n", totalLength, (char*)beginMem); 135 gLogI.log(kError_ANPLogType, " ------ %p Unable to eval the JS.", inst()); 173 gLogI.log(kError_ANPLogType, " ------ %p the plugin did not request touch events", inst()); 176 gLogI.log(kError_ANPLogType, " ------ %p the plugin did not request key events", inst());
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
RepoSources.java | 72 public void loadUserSources(ISdkLog log) {
107 log.error(e, null);
110 log.error(e, null);
113 log.error(e, null);
141 * @param log Logger. Cannot be null.
143 public void saveUserSources(ISdkLog log) {
165 log.error(e, null);
168 log.error(e, null);
|
/external/apache-http/src/org/apache/http/impl/client/ |
DefaultRequestDirector.java | 42 import org.apache.commons.logging.Log; 111 private final Log log = LogFactory.getLog(getClass()); field in class:DefaultRequestDirector 334 this.log.debug("Stale connection check"); 336 this.log.debug("Stale connection detected"); 354 if (this.log.isDebugEnabled()) { 355 this.log.debug(ex.getMessage()); 407 if (this.log.isDebugEnabled()) { 408 this.log.debug("Attempt " + execCount + " to execute request"); 414 this.log.debug("Closing the connection.") [all...] |
/external/ipsec-tools/src/racoon/ |
logger.c | 63 struct log * 68 struct log *p; 70 p = (struct log *)racoon_malloc(sizeof(*p)); 104 struct log *p; 117 * write out string to the log file, as is. 123 struct log *p; 140 log_vprint(struct log *p, const char *fmt, ...) 161 log_vaprint(struct log *p, const char *fmt, va_list ap) 177 * write out content of ring buffer, and reclaim the log structure 181 struct log *p [all...] |
/external/qemu/android/build/ |
common.sh | 25 log () function 144 TMPL=/tmp/android-$$-test.log 173 log "Check32Bits: Forcing generation of 32-bit binaries (--try-64 to disable)" 232 log "CC : compiler check ok ($CC)" 251 log "LD : linker check ok ($LD)" 255 # stores the error log into $TMPL 263 # try to link the recently built file into an executable. error log in $TMPL 375 #log "Host : $1=$result_ch" 394 log "Host : $1=$run_exec_result" 416 log "ANDROID_TOP found at $ANDROID_TOP [all...] |