| /external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
| upload.py | 41 from webkitpy.common.system.deprecated_logging import error, log namespace 136 log("Bug %s is already assigned to %s (%s)." % (bug_id, assigned_to_email, committers.committer_by_email(assigned_to_email))) 141 log("Bug %s has no non-obsolete patches, ignoring." % bug_id) 146 log("All reviewed patches on bug %s already have commit-queue+, ignoring." % bug_id) 153 log("Attacher %s is not a committer. Bug %s likely needs commit-queue+." % (attacher_email, bug_id)) 302 make_option("-b", "--bug-id", action="store", type="string", dest="bug_id", help="Specify bug id if no URL is provided in the commit log."), 303 make_option("--add-log-as-comment", action="store_true", dest="add_log_as_comment", default=False, help="Add commit log message as a comment when uploading the patch."), 331 log("Skipping %s: No bug id found in commit or specified with --bug-id." % commit_id) 352 make_option("--bug-id", action="store", type="string", dest="bug_id", help="Specify bug id if no URL is provided in the commit log.") [all...] |
| /external/webkit/Tools/Scripts/webkitpy/tool/ |
| multicommandtool.py | 39 from webkitpy.common.system.deprecated_logging import log namespace 109 log("%s required, %s provided. Provided: %s Required: %s\nSee '%s help %s' for usage." % ( 303 log(failure_reason)
|
| /frameworks/av/media/libnbaio/ |
| NBLog.cpp | 28 #include <utils/Log.h> 90 void NBLog::Writer::log(const char *string) function in class:android::NBLog::Writer 99 log(EVENT_STRING, string, length); 126 log(EVENT_STRING, buffer, length); 137 log(EVENT_TIMESTAMP, &ts, sizeof(struct timespec)); 146 log(EVENT_TIMESTAMP, &ts, sizeof(struct timespec)); 149 void NBLog::Writer::log(Event event, const void *data, size_t length) function in class:android::NBLog::Writer 166 log(&entry, true /*trusted*/); 169 void NBLog::Writer::log(const NBLog::Entry *entry, bool trusted) function in class:android::NBLog::Writer 175 log(entry->mEvent, entry->mData, entry->mLength) 224 void NBLog::LockedWriter::log(const char *string) function in class:android::NBLog::LockedWriter [all...] |
| /frameworks/base/core/java/android/bluetooth/ |
| BluetoothInputDevice.java | 28 import android.util.Log; 193 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up); 195 if (VDBG) Log.d(TAG,"Unbinding service..."); 201 Log.e(TAG,"",re); 208 if (VDBG) Log.d(TAG,"Binding service..."); 210 Log.e(TAG, "Could not bind to Bluetooth HID Service"); 214 Log.e(TAG,"",re); 236 Log.e(TAG,"",e); 242 Log.e(TAG, "Could not bind to Bluetooth HID Service"); 247 if (VDBG) log("close()") 637 private static void log(String msg) { method in class:BluetoothInputDevice [all...] |
| BluetoothPan.java | 28 import android.util.Log; 138 Log.w(TAG,"Unable to register BluetoothStateChangeCallback",re); 140 Log.d(TAG, "BluetoothPan() call bindService"); 143 Log.e(TAG, "Could not bind to Bluetooth HID Service"); 145 Log.d(TAG, "BluetoothPan(), bindService called"); 149 if (VDBG) log("close()"); 158 Log.w(TAG,"Unable to register BluetoothStateChangeCallback",re); 172 Log.d(TAG, "onBluetoothStateChange(on) call bindService"); 175 Log.e(TAG, "Could not bind to Bluetooth HID Service"); 177 Log.d(TAG, "BluetoothPan(), bindService called") 368 private static void log(String msg) { method in class:BluetoothPan [all...] |
| BluetoothPbap.java | 26 import android.util.Log; 116 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up); 118 if (VDBG) Log.d(TAG,"Unbinding service..."); 124 Log.e(TAG,"",re); 131 if (VDBG) Log.d(TAG,"Binding service..."); 135 Log.e(TAG, "Could not bind to Bluetooth PBAP Service"); 139 Log.e(TAG,"",re); 158 Log.e(TAG,"",e); 162 Log.e(TAG, "Could not bind to Bluetooth Pbap Service"); 186 Log.e(TAG,"",e) 315 private static void log(String msg) { method in class:BluetoothPbap [all...] |
| /frameworks/base/core/java/android/net/ |
| DummyDataStateTracker.java | 138 if (DBG) log("setDetailed state, old =" 222 static private void log(String s) { method in class:DummyDataStateTracker
|
| LinkCapabilities.java | 21 import android.util.Log; 197 if (DBG) log("createNeededCapabilities(applicationRole) EX"); 359 protected static void log(String s) { method in class:LinkCapabilities 360 Log.d(TAG, s);
|
| /frameworks/base/core/java/com/android/internal/os/ |
| LoggingPrintStream.java | 72 protected abstract void log(String line); method in class:LoggingPrintStream 91 // Log one line for each line break. 94 log(builder.substring(start, nextBreak)); 99 // Log the remainder of the buffer. 101 log(builder.substring(start)); 303 // Log one line for each line break. 306 log(s.substring(start, nextBreak)); 311 log(s.substring(start));
|
| /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/ |
| ConnectivityManagerMobileTest.java | 29 import android.util.Log; 64 log("airplane is not disabled, disable it."); 83 log("tear down ConnectivityManagerTestActivity"); 89 log("disable airplane mode if it is enabled"); 103 private void log(String message) { method in class:ConnectivityManagerMobileTest 104 Log.v(LOG_TAG, message); 118 Log.v(LOG_TAG, this.getName() + " is excluded for wifi-only test"); 149 log("the state for WIFI is changed"); 150 log("reason: " + 155 log("the state for MOBILE is changed") [all...] |
| /frameworks/base/core/tests/coretests/src/android/util/ |
| LruCacheTest.java | 170 List<String> log = new ArrayList<String>(); local 171 LruCache<String, String> cache = newRemovalLogCache(log); 176 assertEquals(Collections.<String>emptyList(), log); local 179 assertEquals(Arrays.asList("a=A"), log); 187 List<String> log = new ArrayList<String>(); local 188 LruCache<String, String> cache = newRemovalLogCache(log); 194 assertEquals(Arrays.asList("b=B>B2"), log); 302 List<String> log = new ArrayList<String>(); local 303 LruCache<String, String> cache = newRemovalLogCache(log); 309 assertEquals(Arrays.asList("a=A", "b=B", "c=C"), log); 355 List<String> log = new ArrayList<String>(); local 363 List<String> log = new ArrayList<String>(); local 404 final List<String> log = new ArrayList<String>(); local 426 final List<String> log = new ArrayList<String>(); local [all...] |
| /frameworks/base/core/tests/coretests/src/com/android/internal/os/ |
| LoggingPrintStreamTest.java | 184 protected void log(String line) { method in class:LoggingPrintStreamTest.TestPrintStream
|
| /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
| MediaBassBoostTest.java | 35 import android.util.Log; 71 private void log(String testName, String message) { method in class:MediaBassBoostTest 72 Log.v(TAG, "["+testName+"] "+message); 76 Log.e(TAG, "["+testName+"] "+message); 194 Log.e(TAG, "getBassBoost() BassBoost not found exception: "+e); 196 Log.e(TAG, "getBassBoost() Effect library not loaded exception: "+e);
|
| MediaEqualizerTest.java | 35 import android.util.Log; 75 private void log(String testName, String message) { method in class:MediaEqualizerTest 76 Log.v(TAG, "["+testName+"] "+message); 80 Log.e(TAG, "["+testName+"] "+message); 263 Log.e(TAG, "getEqualizer() Equalizer not found exception: "+e); 265 Log.e(TAG, "getEqualizer() Effect library not loaded exception: "+e);
|
| MediaVirtualizerTest.java | 35 import android.util.Log; 71 private void log(String testName, String message) { method in class:MediaVirtualizerTest 72 Log.v(TAG, "["+testName+"] "+message); 76 Log.e(TAG, "["+testName+"] "+message); 195 Log.e(TAG, "getVirtualizer() Virtualizer not found exception: "+e); 197 Log.e(TAG, "getVirtualizer() Effect library not loaded exception: "+e);
|
| /frameworks/base/opengl/java/android/opengl/ |
| EGLLogWrapper.java | 38 public EGLLogWrapper(EGL egl, int configFlags, Writer log) { 40 mLog = log; 381 log(message + '\n'); 384 private void log(String message) { method in class:EGLLogWrapper 393 log(name + '('); 399 log(", "); 402 log(name + "="); 404 log(value); 408 log(");\n"); 455 log(" returns " + result + ";\n") [all...] |
| /frameworks/base/telephony/java/android/telephony/ |
| CellSignalStrengthCdma.java | 134 if (DBG) log("getLevel=" + level); 165 if (DBG) log("getAsuLevel=" + level); 192 if (DBG) log("getCdmaLevel=" + level); 218 if (DBG) log("getEvdoLevel=" + level); 333 if (DBG) log("writeToParcel(Parcel, int): " + toString()); 351 if (DBG) log("CellSignalStrengthCdma(Parcel): " + toString()); 376 * log 378 private static void log(String s) { method
|
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
| CallTracker.java | 117 if (DBG_POLL) log("checkNoOperationsPending: pendingOperations=" + 146 log("checkForTestEmergencyNumber: dialString=" + dialString + 151 log("checkForTestEmergencyNumber: values.length=" + values.length); 156 log("checkForTestEmergencyNumber: remap " + 173 protected abstract void log(String msg); method in class:CallTracker
|
| PhoneSubInfo.java | 59 if (DBG) log("PhoneSubInfo finalized"); 141 if (VDBG) log("VM: PhoneSubInfo.getVoiceMailNUmber: " + number); 155 if (VDBG) log("VM: PhoneSubInfo.getCompleteVoiceMailNUmber: " + number); 217 private void log(String s) { method in class:PhoneSubInfo
|
| RetryManager.java | 117 if (VDBG) log("constructor"); 147 if (VDBG) log("configure: " + maxRetryCount + ", " + retryTime + "," + randomizationTime); 183 if (VDBG) log("configure: '" + configStr + "'"); 189 if (VDBG) log("configure: not empty"); 197 if (VDBG) log("configure: strArray[" + i + "]='" + strArray[i] + "'"); 201 if (VDBG) log("configure: splitStr[0]='" + splitStr[0] + "'"); 204 if (VDBG) log("configure: splitStr[1]='" + splitStr[1] + "'"); 237 if (VDBG) log("configure: splitStr[1]='" + splitStr[1] + "'"); 249 if (VDBG) log("configure: setting mMaxRetryCount=" + mMaxRetryCount); 252 if (VDBG) log("configure: true") 442 private void log(String s) { method in class:RetryManager [all...] |
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
| CdmaSubscriptionSourceManager.java | 110 log("CDMA_SUBSCRIPTION_SOURCE event = " + msg.what); 164 log("Subscription Source Changed : " + mCdmaSubscriptionSource + " >> " 182 private void log(String s) { method in class:CdmaSubscriptionSourceManager
|
| RuimSmsInterfaceManager.java | 85 if (DBG) log("enableCellBroadcastRange"); 97 log("Failed to add cdma broadcast subscription for MID range " + startMessageId 103 log("Added cdma broadcast subscription for MID range " + startMessageId 113 if (DBG) log("disableCellBroadcastRange"); 125 log("Failed to remove cdma broadcast subscription for MID range " + startMessageId 131 log("Removed cdma broadcast subscription for MID range " + startMessageId 184 log("Calling setCdmaBroadcastConfig with " + configs.length + " configurations"); 195 log("interrupted while trying to set cdma broadcast config"); 204 log("Calling setCdmaBroadcastActivation(" + activate + ")"); 215 log("interrupted while trying to set cdma broadcast activation") 223 protected void log(String msg) { method in class:RuimSmsInterfaceManager [all...] |
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
| ApnContext.java | 87 log("setDataConnectionAc: old dcac=" + mDcAc + " new dcac=" + dcac 102 log("getApnSetting: apnSetting=" + mApnSetting); 107 log("setApnSetting: apnSetting=" + apnSetting); 148 log("setState: " + s + ", previous state:" + mState); 172 log("set reason as " + reason + ",current state " + mState); 194 log("set enabled as " + enabled + ", current state is " + mDataEnabled.get()); 205 log("set mDependencyMet as " + met + " current state is " + mDependencyMet.get()); 223 protected void log(String s) { method in class:ApnContext
|
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
| SimSmsInterfaceManager.java | 87 if (DBG) log("enableCellBroadcastRange"); 99 log("Failed to add cell broadcast subscription for MID range " + startMessageId 105 log("Added cell broadcast subscription for MID range " + startMessageId 115 if (DBG) log("disableCellBroadcastRange"); 127 log("Failed to remove cell broadcast subscription for MID range " + startMessageId 133 log("Removed cell broadcast subscription for MID range " + startMessageId 186 log("Calling setGsmBroadcastConfig with " + configs.length + " configurations"); 197 log("interrupted while trying to set cell broadcast config"); 206 log("Calling setCellBroadcastActivation(" + activate + ')'); 217 log("interrupted while trying to set cell broadcast activation") 225 protected void log(String msg) { method in class:SimSmsInterfaceManager [all...] |
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
| UiccController.java | 176 if (DBG) log("Received EVENT_ICC_STATUS_CHANGED, calling getIccCardStatus"); 180 if (DBG) log("Received EVENT_GET_ICC_STATUS_DONE"); 191 if (DBG) log("Creating UiccController"); 217 if (DBG) log("Notifying IccChangedRegistrants"); 221 private void log(String string) { method in class:UiccController
|