HomeSort by relevance Sort by last modified time
    Searched defs:log (Results 276 - 300 of 963) sorted by null

<<11121314151617181920>>

  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
queueengine.py 37 from webkitpy.common.system.deprecated_logging import log, OutputTee namespace
86 log(error)
109 log("Unable to process work item.")
132 log("\n%s" % message)
149 # If we still have a bug log open, close it.
163 log(self._sleep_message(message))
  /external/webp/src/enc/
backward_references.h 54 int log = 0; local
64 log += shift;
67 return log;
  /frameworks/base/core/java/android/bluetooth/
BluetoothA2dp.java 28 import android.util.Log;
115 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up);
117 if (VDBG) Log.d(TAG,"Unbinding service...");
123 Log.e(TAG,"",re);
130 if (VDBG) Log.d(TAG,"Binding service...");
132 Log.e(TAG, "Could not bind to Bluetooth A2DP Service");
136 Log.e(TAG,"",re);
156 Log.e(TAG,"",e);
161 Log.e(TAG, "Could not bind to Bluetooth A2DP Service");
172 Log.e(TAG,"",e)
479 private static void log(String msg) { method in class:BluetoothA2dp
    [all...]
  /frameworks/base/core/java/android/util/
MathUtils.java 50 public static float log(float a) { method in class:MathUtils
51 return (float) Math.log(a);
  /frameworks/base/core/java/com/android/internal/http/multipart/
MultipartEntity.java 46 import org.apache.commons.logging.Log;
86 private static final Log log = LogFactory.getLog(MultipartEntity.class); field in class:MultipartEntity
210 log.error("An exception occurred while getting the length of the parts", e);
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
WifiAssociationTest.java 36 import android.util.Log;
90 log("tearDown()");
97 Log.v(TAG, "read frequency band: " + currentFreq);
130 private void log(String message) { method in class:WifiAssociationTest
131 Log.v(TAG, message);
140 log("Security type is " + security.toString());
212 Log.v(TAG, "network config: " + config.toString());
WifiConnectionTest.java 42 import android.util.Log;
95 log("==== print network configurations parsed from XML file ====");
96 log("number of access points: " + networks.size());
98 log(config.toString());
104 log("tearDown()");
126 log("config.SSID = " + config.SSID);
127 log("mAct.mWifiManager.getConnectionInfo.getSSID()" +
141 private void log(String message) { method in class:WifiConnectionTest
142 Log.v(TAG, message);
149 log("-- START Wi-Fi connection test to : " + ssid + " --")
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/http/
CookiesTest.java 47 * Test that we don't log potentially sensitive cookie values.
65 String log = out.toString("UTF-8"); local
66 assertTrue(log, log.contains("password"));
67 assertTrue(log, log.contains("fake.domain"));
68 assertFalse(log, log.contains("secret"));
  /frameworks/base/services/java/com/android/server/
BootReceiver.java 65 // Log boot events in the background to avoid blocking the main thread with I/O
72 Slog.e(TAG, "Can't log boot events", e);
123 addFileToDropBox(db, prefs, headers, "/cache/recovery/log",
150 Slog.e(TAG, "Can't log tombstone", e);
196 String log = FileUtils.readTextFile(file, maxSize, "[[TRUNCATED]]\n"); local
198 for (String line : log.split("\n")) {
  /frameworks/base/telephony/java/android/telephony/
CellIdentityCdma.java 185 if (DBG) log("writeToParcel(Parcel, int): " + toString());
200 if (DBG) log("CellIdentityCdma(Parcel): " + toString());
219 * log
221 private static void log(String s) { method in class:CellIdentityCdma
CellIdentityLte.java 165 if (DBG) log("writeToParcel(Parcel, int): " + toString());
180 if (DBG) log("CellIdentityLte(Parcel): " + toString());
199 * log
201 private static void log(String s) { method in class:CellIdentityLte
CellIdentityWcdma.java 166 if (DBG) log("writeToParcel(Parcel, int): " + toString());
181 if (DBG) log("CellIdentityWcdma(Parcel): " + toString());
200 * log
202 private static void log(String s) { method in class:CellIdentityWcdma
CellInfoCdma.java 121 if (DBG) log("CellInfoCdma(Parcel): " + toString());
144 * log
146 private static void log(String s) { method in class:CellInfoCdma
CellInfoGsm.java 143 * log
145 private static void log(String s) { method in class:CellInfoGsm
CellInfoLte.java 49 if (DBG) log("getCellIdentity: " + mCellIdentityLte);
54 if (DBG) log("setCellIdentity: " + cid);
59 if (DBG) log("getCellSignalStrength: " + mCellSignalStrengthLte);
64 if (DBG) log("setCellSignalStrength: " + css);
112 if (DBG) log("writeToParcel(Parcel, int): " + toString());
126 if (DBG) log("CellInfoLte(Parcel): " + toString());
149 * log
151 private static void log(String s) { method in class:CellInfoLte
CellInfoWcdma.java 143 * log
145 private static void log(String s) { method in class:CellInfoWcdma
CellSignalStrengthGsm.java 120 if (DBG) log("getLevel=" + level);
138 if (DBG) log("getDbm=" + dBm);
153 if (DBG) log("getAsuLevel=" + level);
193 if (DBG) log("writeToParcel(Parcel, int): " + toString());
205 if (DBG) log("CellSignalStrengthGsm(Parcel): " + toString());
230 * log
232 private static void log(String s) { method in class:CellSignalStrengthGsm
CellSignalStrengthLte.java 165 if (DBG) log("Lte rsrp level: " + levelRsrp
189 if (DBG) log("Lte Asu level: "+lteAsuLevel);
248 if (DBG) log("writeToParcel(Parcel, int): " + toString());
268 if (DBG) log("CellSignalStrengthLte(Parcel): " + toString());
293 * log
295 private static void log(String s) { method in class:CellSignalStrengthLte
CellSignalStrengthWcdma.java 120 if (DBG) log("getLevel=" + level);
138 if (DBG) log("getDbm=" + dBm);
153 if (DBG) log("getAsuLevel=" + level);
193 if (DBG) log("writeToParcel(Parcel, int): " + toString());
205 if (DBG) log("CellSignalStrengthWcdma(Parcel): " + toString());
230 * log
232 private static void log(String s) { method in class:CellSignalStrengthWcdma
  /frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/
BatteryWaster.java 57 mLog = (TextView)findViewById(R.id.log);
119 log("Start");
132 log("Stop");
160 void log(String s) { method in class:BatteryWaster
174 log(title + ": level=" + level);
176 log(title);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DisplayListLayersActivity.java 25 import android.util.Log;
103 private void log(String tag) { method in class:DisplayListLayersActivity.LayerView
104 Log.d(LOG_TAG, mTag + ": " + tag);
109 log("invalidate");
115 log("draw");
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipSessionListenerProxy.java 251 // This creates race but it's harmless. Just don't log the error
258 private void log(String s) { method in class:SipSessionListenerProxy
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcRetryAlarmController.java 54 log("onReceive: ignore empty action='" + action + "'");
67 log("onReceive: action=" + action
73 if (DBG) log("onReceive: unknown action=" + action);
87 log("DcRetryAlarmController: register for intent action=" + mActionRetry);
96 if (DBG) log("dispose");
118 if (DBG) log("getSuggestedRetryTime: suggestedRetryTime is MAX_INT, retry NOT needed");
121 if (DBG) log("getSuggestedRetryTime: suggestedRetryTime is >= 0 use it");
127 if (DBG) log("getSuggestedRetryTime: retry is needed");
129 if (DBG) log("getSuggestedRetryTime: retry is NOT needed");
134 log("getSuggestedRetryTime: " + retryDelay + " response=" + response + " dc=" + dc)
166 private void log(String s) { method in class:DcRetryAlarmController
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipConnectionBase.java 58 if (DBG) log("SipConnectionBase: ctor dialString=" + dialString);
65 if (DBG) log("setState: state=" + state);
88 if (VDBG) log("getCreateTime: ret=" + mCreateTime);
94 if (VDBG) log("getConnectTime: ret=" + mConnectTime);
100 if (VDBG) log("getDisconnectTime: ret=" + mDisconnectTime);
114 if (VDBG) log("getDurationMillis: ret=" + dur);
127 if (VDBG) log("getHoldDurationMillis: ret=" + dur);
133 if (VDBG) log("getDisconnectCause: ret=" + mCause);
138 if (DBG) log("setDisconnectCause: prev=" + mCause + " new=" + cause);
144 if (VDBG) log("getPostDialState: ret=" + mPostDialState)
178 private void log(String msg) { method in class:SipConnectionBase
    [all...]
  /frameworks/rs/java/tests/Balls/src/com/example/android/rs/balls/
Balls.java 29 import android.util.Log;
60 //android.util.Log.d("rs", "sensor: " + event.sensor + ", x: " + event.values[0] + ", y: " + event.values[1] + ", z: " + event.values[2]);
110 static void log(String message) { method in class:Balls
112 Log.v(LOG_TAG, message);

Completed in 1708 milliseconds

<<11121314151617181920>>