/packages/services/Telecomm/src/com/android/server/telecom/ |
D | InCallAdapter.java | 22 import android.telecom.Log; 48 mOwnerPackageAbbreviation = Log.getPackageAbbreviation(ownerPackageName); in InCallAdapter() 54 Log.startSession(LogUtils.Sessions.ICA_ANSWER_CALL, mOwnerPackageAbbreviation); in answerCall() 58 Log.d(this, "answerCall(%s,%d)", callId, videoState); in answerCall() 63 Log.w(this, "answerCall, unknown call id: %s", callId); in answerCall() 70 Log.endSession(); in answerCall() 77 Log.startSession(LogUtils.Sessions.ICA_DEFLECT_CALL, mOwnerPackageAbbreviation); in deflectCall() 81 Log.i(this, "deflectCall - %s, %s ", callId, Log.pii(address)); in deflectCall() 86 Log.w(this, "deflectCall, unknown call id: %s", callId); in deflectCall() 93 Log.endSession(); in deflectCall() [all …]
|
D | TelecomServiceImpl.java | 52 import android.telecom.Log; 120 Log.startSession("TSI.gDOPA"); 129 Log.e(this, e, "getDefaultOutgoingPhoneAccount"); 144 Log.endSession(); 152 Log.startSession("TSI.gUSOPA"); 161 Log.e(this, e, "getUserSelectedOutgoingPhoneAccount"); 164 Log.endSession(); 172 Log.startSession("TSI.sUSOPA"); 181 Log.e(this, e, "setUserSelectedOutgoingPhoneAccount"); 188 Log.endSession(); [all …]
|
D | ConnectionServiceWrapper.java | 40 import android.telecom.Log; 81 Log.startSession(sessionInfo, LogUtils.Sessions.CSW_HANDLE_CREATE_CONNECTION_COMPLETE, in handleCreateConnectionComplete() 94 Log.getExternalSession()); in handleCreateConnectionComplete() 101 Log.e(ConnectionServiceWrapper.this, t, ""); in handleCreateConnectionComplete() 105 Log.endSession(); in handleCreateConnectionComplete() 112 Log.startSession(sessionInfo, LogUtils.Sessions.CSW_HANDLE_CREATE_CONNECTION_COMPLETE, in handleCreateConferenceComplete() 125 Log.getExternalSession()); in handleCreateConferenceComplete() 131 Log.e(ConnectionServiceWrapper.this, t, ""); in handleCreateConferenceComplete() 135 Log.endSession(); in handleCreateConferenceComplete() 142 Log.startSession(sessionInfo, LogUtils.Sessions.CSW_SET_ACTIVE, in setActive() [all …]
|
D | CallDiagnosticServiceController.java | 41 import android.telecom.Log; 176 Log.startSession("CDSC.oSC", Log.getPackageAbbreviation(name)); in onServiceConnected() 183 Log.i(CallDiagnosticServiceController.this, "onServiceConnected: cmp=%s", name); in onServiceConnected() 185 Log.endSession(); in onServiceConnected() 191 Log.startSession("CDSC.oSD", Log.getPackageAbbreviation(name)); in onServiceDisconnected() 197 Log.i(CallDiagnosticServiceController.this, "onServiceDisconnected: cmp=%s", name); in onServiceDisconnected() 199 Log.endSession(); in onServiceDisconnected() 205 Log.startSession("CDSC.oBD", Log.getPackageAbbreviation(name)); in onBindingDied() 211 Log.w(CallDiagnosticServiceController.this, "onBindingDied: cmp=%s", name); in onBindingDied() 213 Log.endSession(); in onBindingDied() [all …]
|
/packages/apps/DevCamera/src/com/android/devcamera/ |
D | CameraDeviceReport.java | 31 import android.util.Log; 55 Log.v(TAG, "Number of cameras:" + cameralist.length); in printCameraSystemInfo() 57 Log.e(TAG, "Could not get camera ID list: "+e); in printCameraSystemInfo() 72 Log.v(TAG, "============= CAMERA " + id + " INFO ============="); in printCameraInfo() 78 Log.e(TAG, "Could not get getCameraCharacteristics"); in printCameraInfo() 86 Log.v(TAG, "SENSOR_INFO_ACTIVE_ARRAY_SIZE: " in printCameraInfo() 89 Log.v(TAG, "SENSOR_INFO_ACTIVE_ARRAY_SIZE: null"); in printCameraInfo() 93 Log.v(TAG, "SENSOR_INFO_PIXEL_ARRAY_SIZE: " + size2.getWidth() + "x" + size2.getHeight()); in printCameraInfo() 96 Log.v(TAG, "SENSOR_INFO_PHYSICAL_SIZE: " + size3.getWidth() + "x" + size3.getHeight()); in printCameraInfo() 100 Log.v(TAG, "SENSOR_ORIENTATION: " + sensorOrientation); in printCameraInfo() [all …]
|
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/ |
D | SupplicantP2pIfaceHal.java | 44 import android.util.Log; 89 Log.i(TAG, "IServiceNotification.onRegistration for: " + fqName 93 Log.e(TAG, "initalizing ISupplicant failed."); 96 Log.i(TAG, "Completed initialization of ISupplicant interfaces."); 103 Log.w(TAG, "IServiceManager died: cookie=" + cookie); 111 Log.w(TAG, "ISupplicant/ISupplicantP2pIface died: cookie=" + cookie); 128 Log.wtf(TAG, "Error on linkToDeath on IServiceManager"); in linkToServiceManagerDeath() 134 Log.e(TAG, "IServiceManager.linkToDeath exception", e); in linkToServiceManagerDeath() 155 if (sVerboseLoggingEnabled) Log.i(TAG, "Registering ISupplicant service ready callback."); in initialize() 158 Log.i(TAG, "Supplicant HAL already initialized."); in initialize() [all …]
|
/packages/apps/Test/connectivity/PMC/src/com/android/pmc/ |
D | A2dpReceiver.java | 35 import android.util.Log; 70 Log.d(TAG, "mBluetoothA2dpReceiver.onReceive() intent=" + intent); 87 Log.d(TAG, "BluetoothA2dpServiceListener.onServiceConnected"); 93 Log.d(TAG, "BluetoothA2dpServiceListener.onServiceDisconnected"); 111 Log.e(TAG, "BluetoothAdapter is Null"); in A2dpReceiver() 115 Log.d(TAG, "BluetoothAdapter is NOT enabled, enable now"); in A2dpReceiver() 118 Log.e(TAG, "Can't enable Bluetooth"); in A2dpReceiver() 129 Log.d(TAG, "After getProfileProxy()"); in A2dpReceiver() 135 Log.d(TAG, "A2dpReceiver()"); in A2dpReceiver() 143 Log.d(TAG, "Start initialize()"); in initialize() [all …]
|
/packages/apps/Camera2/src/com/android/camera/debug/ |
D | Log.java | 23 public class Log { class 34 private static final Log.Tag TAG = new Log.Tag("Log"); 65 if (isLoggable(tag, android.util.Log.DEBUG)) { in d() 66 android.util.Log.d(tag.toString(), msg); in d() 71 if (isLoggable(tag, android.util.Log.DEBUG)) { in d() 72 android.util.Log.d(tag.toString(), LogUtil.addTags(instance, msg)); in d() 77 if (isLoggable(tag, android.util.Log.DEBUG)) { in d() 78 android.util.Log.d(tag.toString(), LogUtil.addTags(instance, msg, tags)); in d() 83 if (isLoggable(tag, android.util.Log.DEBUG)) { in d() 84 android.util.Log.d(tag.toString(), msg, tr); in d() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapObexServer.java | 30 import android.util.Log; 144 Log.d(TAG, "BluetoothMapObexServer(): accountId=" + mAccountId); in BluetoothMapObexServer() 148 Log.d(TAG, "BluetoothMapObexServer(): baseUri=" + mBaseUriString); in BluetoothMapObexServer() 154 Log.d(TAG, "BluetoothMapObexServer(): mEmailFolderUri=" + mEmailFolderUri); in BluetoothMapObexServer() 219 Log.d(TAG, "buildFolderStructure(): " + mEmailFolderUri.toString()); in buildFolderStructure() 301 Log.d(TAG, "addEmailFolders(): no elements found"); in addEmailFolders() 323 Log.d(TAG, "setRemoteFeatureMask() " + Integer.toHexString(mRemoteFeatureMask)); in setRemoteFeatureMask() 331 if (V) Log.d(TAG," setRemoteFeatureMask mMessageVersion :" + mMessageVersion); in setRemoteFeatureMask() 337 Log.d(TAG, "onConnect():"); in onConnect() 354 Log.d(TAG, "onConnect(): uuid=" + Arrays.toString(uuid)); in onConnect() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
D | BluetoothOppTransfer.java | 55 import android.util.Log; 112 Log.d(TAG, " Action :" + action); in onReceive() 117 Log.e(TAG, "device : " + device + " mBatch :" + mBatch + " mCurrentShare :" in onReceive() 123 Log.v(TAG, "Device :" + device + "- OPP device: " + mBatch.mDestination in onReceive() 129 Log.v(TAG, "ACTION_ACL_DISCONNECTED to be processed for batch: " in onReceive() 144 Log.d(TAG, "Received UUID: " + uuid.toString()); in onReceive() 145 Log.d(TAG, "expected UUID: " + BluetoothUuid.OBEX_OBJECT_PUSH.toString()); in onReceive() 149 Log.d(TAG, " -> status: " + status); in onReceive() 153 Log.w(TAG, "OPP SDP search, target device is null, ignoring result"); in onReceive() 157 Log.w(TAG, " OPP SDP search for wrong device, ignoring!!"); in onReceive() [all …]
|
D | BluetoothOppService.java | 55 import android.util.Log; 99 Log.v(TAG, "ContentObserver received notification"); in onChange() 196 Log.v(TAG, "onCreate"); in create() 217 Log.w(TAG, "BluetoothOppPreference.getInstance returned null."); in create() 225 Log.v(TAG, "start()"); in start() 241 Log.w(TAG, "stop() called before start()"); in stop() 253 Log.v(TAG, "Starting RfcommListener"); in startListener() 284 Log.w(TAG, "getBluetoothOppService(): service is null"); in getBluetoothOppService() 288 Log.w(TAG, "getBluetoothOppService(): service is not available"); in getBluetoothOppService() 296 Log.d(TAG, "setBluetoothOppService(): set to: " + instance); in setBluetoothOppService() [all …]
|
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/ |
D | PasspointProvisioner.java | 39 import android.util.Log; 157 Log.v(TAG, "Provisioning started with " + provider.toString()); in startSubscriptionProvisioning() 224 Log.v(TAG, "startProvisioning received in state=" + mState); in startProvisioning() 229 Log.v(TAG, "State Machine needs to be reset before starting provisioning"); in startProvisioning() 243 Log.w(TAG, "Provisioning is not possible"); in startProvisioning() 252 Log.e(TAG, "Invalid Server URL"); in startProvisioning() 292 Log.v(TAG, "Wifi Disabled in state=" + mState); in handleWifiDisabled() 295 Log.w(TAG, "Wifi Disable unhandled in state=" + mState); in handleWifiDisabled() 310 Log.v(TAG, "Server Connection status received in " + mState); in handleServerConnectionStatus() 313 Log.w(TAG, "Expected server connection failure callback for currentSessionId=" in handleServerConnectionStatus() [all …]
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | SessionTest.java | 21 import android.telecom.Log; 57 Log.startSession("testParent"); in testRecursion_printFullSessionTree() 59 Session childSession = Log.getSessionManager() in testRecursion_printFullSessionTree() 61 Log.continueSession(childSession, "child"); in testRecursion_printFullSessionTree() 75 Log.endSession(); in testRecursion_printFullSessionTree() 77 Log.endSession(); in testRecursion_printFullSessionTree() 88 Log.startSession("testParent"); in testRecursion_getFullMethodPath() 90 Session childSession = Log.getSessionManager() in testRecursion_getFullMethodPath() 92 Log.continueSession(childSession, "child"); in testRecursion_getFullMethodPath() 106 Log.endSession(); in testRecursion_getFullMethodPath() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/sap/ |
D | SapService.java | 29 import android.util.Log; 128 Log.d(TAG, "Removing SDP record handle: " + mSdpHandle); in removeSdpRecord() 137 Log.v(TAG, "Sap Service startRfcommSocketListener"); in startRfcommSocketListener() 151 Log.v(TAG, "Sap Service initSocket"); in initSocket() 170 Log.e(TAG, "Error create RfcommServerSocket ", e); in initSocket() 182 Log.w(TAG, "initServerSocket failed as BT is (being) turned off"); in initSocket() 187 Log.v(TAG, "wait 300 ms"); in initSocket() 191 Log.e(TAG, "socketAcceptThread thread was interrupted (3)", e); in initSocket() 200 Log.v(TAG, "Succeed to create listening socket "); in initSocket() 204 Log.e(TAG, "Error to create listening socket after " + CREATE_RETRY_TIME + " try"); in initSocket() [all …]
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | HalDeviceManager.java | 42 import android.util.Log; 166 Log.w(TAG, "registerStatusListener: duplicate registration ignored"); in registerStatusListener() 365 if (VDBG) Log.d(TAG, "getChip: iface(name)=" + name); in getChip() 370 Log.e(TAG, "getChip: no entry for iface(name)=" + name); in getChip() 396 Log.d(TAG, "replaceRequestorWs: iface(name)=" + name + ", newRequestorWs=" in replaceRequestorWs() 403 Log.e(TAG, "replaceRequestorWs: no entry for iface(name)=" + name); in replaceRequestorWs() 423 Log.wtf(TAG, "registerSubsystemRestartListener with nulls!? listener=" + listener); in registerSubsystemRestartListener() 427 Log.w(TAG, "registerSubsystemRestartListener: duplicate registration ignored"); in registerSubsystemRestartListener() 448 if (VDBG) Log.d(TAG, "registerDestroyedListener: iface(name)=" + name); in registerDestroyedListener() 453 Log.e(TAG, "registerDestroyedListener: no entry for iface(name)=" + name); in registerDestroyedListener() [all …]
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
D | LogUtil.java | 32 public static final int DEBUG = android.util.Log.DEBUG; 33 public static final int WARN = android.util.Log.WARN; 34 public static final int VERBOSE = android.util.Log.VERBOSE; 35 public static final int INFO = android.util.Log.INFO; 36 public static final int ERROR = android.util.Log.ERROR; 77 println(android.util.Log.VERBOSE, tag, msg); in v() 88 println(android.util.Log.VERBOSE, tag, msg + '\n' in v() 89 + android.util.Log.getStackTraceString(tr)); in v() 99 println(android.util.Log.DEBUG, tag, msg); in d() 110 println(android.util.Log.DEBUG, tag, msg + '\n' in d() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
D | BluetoothPbapObexServer.java | 44 import android.util.Log; 247 Log.d(TAG, "onConnect(): uuid=" + Arrays.toString(uuid)); in onConnect() 251 Log.w(TAG, "Wrong UUID length"); in onConnect() 256 Log.w(TAG, "Wrong UUID"); in onConnect() 262 Log.e(TAG, e.toString()); in onConnect() 270 Log.d(TAG, "onConnect(): remote=" + Arrays.toString(remote)); in onConnect() 275 Log.e(TAG, e.toString()); in onConnect() 287 Log.e(TAG, e.toString()); in onConnect() 292 Log.v(TAG, "onConnect(): uuid is ok, will send out " + "MSG_SESSION_ESTABLISHED msg."); in onConnect() 301 Log.d(TAG, "onDisconnect(): enter"); in onDisconnect() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/le_audio/ |
D | LeAudioStateMachine.java | 55 import android.util.Log; 113 Log.i(TAG, "make for device"); in make() 132 Log.i(TAG, "Enter Disconnected(" + mDevice + "): " + messageWhatToString( in enter() 161 Log.e(TAG, "Disconnected: error connecting to " + mDevice); in processMessage() 168 Log.w(TAG, "Outgoing LeAudio Connecting request rejected: " + mDevice); in processMessage() 172 Log.d(TAG, "Disconnected: " + mDevice); in processMessage() 178 Log.d(TAG, "Disconnected: stack event: " + event); in processMessage() 181 Log.wtfStack(TAG, "Device(" + mDevice + "): event mismatch: " + event); in processMessage() 188 Log.e(TAG, "Disconnected: ignoring stack event: " + event); in processMessage() 202 Log.w(TAG, "Ignore LeAudio DISCONNECTED event: " + mDevice); in processConnectionEvent() [all …]
|
/packages/apps/Car/LocalMediaPlayer/src/com/android/car/media/localmediaplayer/ |
D | Player.java | 35 import android.util.Log; 165 Log.e(TAG, "Failed to acquire audio focus"); in requestAudioFocus() 172 if (Log.isLoggable(TAG, Log.DEBUG)) { in onPlay() 173 Log.d(TAG, "onPlay"); in onPlay() 186 if (Log.isLoggable(TAG, Log.DEBUG)) { in onPause() 187 Log.d(TAG, "onPause"); in onPause() 315 Log.e(TAG, "Restored queue, but couldn't resume playback."); in maybeRestoreState() 332 if (Log.isLoggable(TAG, Log.DEBUG)) { in startPlayback() 333 Log.d(TAG, "startPlayback()"); in startPlayback() 362 Log.e(TAG, "Playback failed.", e); in startPlayback() [all …]
|
/packages/apps/Car/Hvac/src/com/android/car/hvac/ |
D | HvacController.java | 34 import android.util.Log; 166 Log.e(TAG, "Car not connected in HVAC"); in initHvacManager() 181 Log.e(TAG, "Car not connected in onServiceConnected"); 225 if (Log.isLoggable(TAG, Log.DEBUG)) { 226 Log.d(TAG, "Unhandled HVAC event, id: " + val.getPropertyId()); 247 if (Log.isLoggable(TAG, Log.DEBUG)) { in handleHvacPowerOn() 248 Log.d(TAG, "Hvac Power On: " + isOn + " should propagate: " + shouldPropagate); in handleHvacPowerOn() 261 if (Log.isLoggable(TAG, Log.DEBUG)) { in handleSeatWarmerUpdate() 262 Log.d(TAG, "Seat Warmer Update, zone: " + zone + " level: " + level + in handleSeatWarmerUpdate() 281 if (Log.isLoggable(TAG, Log.DEBUG)) { in handleAirCirculationUpdate() [all …]
|
/packages/modules/IPsec/src/java/com/android/internal/net/utils/ |
D | Log.java | 27 public class Log { class 40 public Log(String tag, boolean logSensitive) { in Log() method in Log 45 Log(String tag, boolean isEngBuild, boolean logSensitive) { in Log() method in Log 61 if (isLoggable(android.util.Log.VERBOSE)) { in v() 62 android.util.Log.v(mTAG, prefix + ": " + msg); in v() 77 if (isLoggable(android.util.Log.VERBOSE)) { in v() 78 android.util.Log.v(mTAG, prefix + ": " + msg, tr); in v() 92 if (isLoggable(android.util.Log.DEBUG)) { in d() 93 android.util.Log.d(mTAG, prefix + ": " + msg); in d() 108 if (isLoggable(android.util.Log.DEBUG)) { in d() [all …]
|
/packages/services/Car/tests/SampleCustomInputService/src/com/android/car/custominput/sample/ |
D | CustomInputEventListener.java | 30 import android.util.Log; 123 Log.e(TAG, "Ignoring event [" + action + "]"); in handle() 129 if (Log.isLoggable(TAG, Log.DEBUG)) { in getDisplayIdForDisplayType() 130 Log.d(TAG, "Resolved display id {" + displayId + "} for display type {" in getDisplayIdForDisplayType() 146 Log.w(TAG, in isValidTargetDisplayType() 155 if (Log.isLoggable(TAG, Log.DEBUG)) { in launchMap() 156 Log.d(TAG, "Launching Maps on display id {" + targetDisplayId + "}"); in launchMap() 168 Log.i(TAG, "Entering acceptIncomingCall"); in acceptIncomingCall() 169 if (Log.isLoggable(TAG, Log.DEBUG)) { in acceptIncomingCall() 170 Log.d(TAG, "Accepting incoming call on display id {" + targetDisplayType + "}"); in acceptIncomingCall() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/ |
D | A2dpStateMachine.java | 59 import android.util.Log; 126 Log.i(TAG, "make for device " + device); in make() 154 Log.i(TAG, "Enter Disconnected(" + mDevice + "): " + (currentMessage == null ? "null" in enter() 164 Log.i(TAG, "Disconnected: stopped playing: " + mDevice); in enter() 187 Log.i(TAG, "Connecting to " + mDevice); in processMessage() 189 Log.e(TAG, "Disconnected: error connecting to " + mDevice); in processMessage() 196 Log.w(TAG, "Outgoing A2DP Connecting request rejected: " + mDevice); in processMessage() 200 Log.w(TAG, "Disconnected: DISCONNECT ignored: " + mDevice); in processMessage() 206 Log.wtf(TAG, "Device(" + mDevice + "): event mismatch: " + event); in processMessage() 216 Log.e(TAG, "Disconnected: ignoring stack event: " + event); in processMessage() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/ |
D | NativeInterface.java | 25 import android.util.Log; 318 Log.d(TAG, "Device addr " + event.device.getAddress() + " State " + state); in onConnectionStateChanged() 324 Log.w(TAG, "Ignoring message because service not available: " + event); in onConnectionStateChanged() 333 Log.d(TAG, "onAudioStateChanged: address " + address + " event " + event); in onAudioStateChanged() 339 Log.w(TAG, "onAudioStateChanged: Ignoring message because service not available: " in onAudioStateChanged() 349 Log.d(TAG, "onVrStateChanged: address " + address + " event " + event); in onVrStateChanged() 356 Log.w(TAG, in onVrStateChanged() 366 Log.d(TAG, "onNetworkStateChanged: address " + address + " event " + event); in onNetworkState() 373 Log.w(TAG, in onNetworkState() 384 Log.d(TAG, "onNetworkRoaming: incoming: " + event); in onNetworkRoaming() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/hearingaid/ |
D | HearingAidStateMachine.java | 56 import android.util.Log; 117 Log.i(TAG, "make for device " + device); in make() 137 Log.i(TAG, "Enter Disconnected(" + mDevice + "): " + messageWhatToString( in enter() 166 Log.e(TAG, "Disconnected: error connecting to " + mDevice); in processMessage() 173 Log.w(TAG, "Outgoing HearingAid Connecting request rejected: " + mDevice); in processMessage() 177 Log.d(TAG, "Disconnected: DISCONNECT: call native disconnect for " + mDevice); in processMessage() 183 Log.d(TAG, "Disconnected: stack event: " + event); in processMessage() 186 Log.wtf(TAG, "Device(" + mDevice + "): event mismatch: " + event); in processMessage() 193 Log.e(TAG, "Disconnected: ignoring stack event: " + event); in processMessage() 207 Log.w(TAG, "Ignore HearingAid DISCONNECTED event: " + mDevice); in processConnectionEvent() [all …]
|