Home
last modified time | relevance | path

Searched refs:TAG (Results 1 – 25 of 559) sorted by relevance

12345678910>>...23

/packages/apps/Nfc/src/com/android/nfc/ndefpush/
DNdefPushServer.java36 private static final String TAG = "NdefPushServer"; field in NdefPushServer
54 super(TAG); in ConnectionThread()
60 if (DBG) Log.d(TAG, "starting connection thread"); in run()
71 if (DBG) Log.d(TAG, "read " + size + " bytes"); in run()
81 if (DBG) Log.d(TAG, "connection broken by IOException", e); in run()
87 if (DBG) Log.d(TAG, "got message " + msg.toString()); in run()
92 Log.e(TAG, "badly formatted NDEF message, ignoring", e); in run()
95 if (DBG) Log.d(TAG, "about to close"); in run()
101 if (DBG) Log.d(TAG, "finished connection thread"); in run()
113 if (DBG) Log.d(TAG, "about create LLCP service socket"); in run()
[all …]
DNdefPushClient.java40 private static final String TAG = "NdefPushClient"; field in NdefPushClient
74 if (DBG) Log.d(TAG, "LLCP connection up and running"); in onReceive()
85 if (DBG) Log.d(TAG, "sending foreground and my tag"); in onReceive()
88 if (DBG) Log.d(TAG, "sending my tag"); in onReceive()
91 if (DBG) Log.d(TAG, "sending foreground"); in onReceive()
94 if (DBG) Log.d(TAG, "no tags set, bailing"); in onReceive()
111 if (DBG) Log.d(TAG, "about to create socket"); in doInBackground()
114 if (DBG) Log.d(TAG, "about to connect to service " + NdefPushServer.SERVICE_NAME); in doInBackground()
118 if (DBG) Log.d(TAG, "about to send a " + buffer.length + " byte message"); in doInBackground()
122 if (DBG) Log.d(TAG, "about to send a " + length + " byte packet"); in doInBackground()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppRfcommListener.java50 private static final String TAG = "BtOppRfcommListener"; field in BluetoothOppRfcommListener
89 mSocketAcceptThread = new Thread(TAG) { in start()
94 if (V) Log.v(TAG, "Create TCP ServerSocket"); in start()
97 Log.e(TAG, "Error listing on port" + Constants.TCP_DEBUG_PORT); in start()
104 if (V) Log.v(TAG, "Socket connected!"); in start()
113 Log.e(TAG, "Error accept connection " + e); in start()
116 if (V) Log.v(TAG, "TCP listen thread finished"); in start()
129 Log.e(TAG, "Error create RfcommServerSocket " + e1); in start()
135 if (V) Log.v(TAG, "wait 3 seconds"); in start()
138 Log.e(TAG, "socketAcceptThread thread was interrupted (3)"); in start()
[all …]
DBluetoothOppTransfer.java69 private static final String TAG = "BtOppTransfer"; field in BluetoothOppTransfer
143 if (V) Log.v(TAG, "SDP request returned " + msg.arg1 + " (" + in handleMessage()
158 Log.e(TAG, "SDP query failed!"); in handleMessage()
170 if (V) Log.v(TAG, "receive RFCOMM_ERROR msg"); in handleMessage()
181 if (V) Log.v(TAG, "Transfer receive RFCOMM_CONNECTED msg"); in handleMessage()
196 if (V) Log.v(TAG, "receive MSG_SHARE_COMPLETE for info " + info.mId); in handleMessage()
202 if (V) Log.v(TAG, "continue session for info " + mCurrentShare.mId + in handleMessage()
207 if (V) Log.v(TAG, "Batch " + mBatch.mId + " is done"); in handleMessage()
218 if (V) Log.v(TAG, "receive MSG_SESSION_COMPLETE for batch " + mBatch.mId); in handleMessage()
228 if (V) Log.v(TAG, "receive MSG_SESSION_ERROR for batch " + mBatch.mId); in handleMessage()
[all …]
DBluetoothOppObexServerSession.java65 private static final String TAG = "BtOppObexServer"; field in BluetoothOppObexServerSession
105 | PowerManager.ON_AFTER_RELEASE, TAG); in BluetoothOppObexServerSession()
106 mPartialWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, TAG); in BluetoothOppObexServerSession()
118 if (D) Log.d(TAG, "acquire full WakeLock"); in preStart()
121 if (D) Log.d(TAG, "Create ServerSession with transport " + mTransport.toString()); in preStart()
124 Log.e(TAG, "Create server session error" + e); in preStart()
132 if (D) Log.d(TAG, "Start!"); in start()
146 if (D) Log.d(TAG, "Stop!"); in stop()
153 Log.e(TAG, "close mTransport error" + e); in stop()
161 if (D) Log.d(TAG, "addShare for id " + info.mId); in addShare()
[all …]
DBluetoothOppObexClientSession.java62 private static final String TAG = "BtOpp ObexClient"; field in BluetoothOppObexClientSession
87 if (D) Log.d(TAG, "Start!"); in start()
94 if (D) Log.d(TAG, "Stop!"); in stop()
99 if (V) Log.v(TAG, "waiting for thread to terminate"); in stop()
103 if (V) Log.v(TAG, "Interrupted waiting for thread to join"); in stop()
141 wakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, TAG); in ClientThread()
154 if (V) Log.v(TAG, "acquire partial WakeLock"); in run()
160 if (V) Log.v(TAG, "Client thread was interrupted (1), exiting"); in run()
172 if (D) Log.d(TAG, "Client thread waiting for next share, sleep for " in run()
183 if (V) Log.v(TAG, "release partial WakeLock"); in run()
[all …]
DBluetoothOppService.java85 if (V) Log.v(TAG, "ContentObserver received notification"); in onChange()
90 private static final String TAG = "BtOpp Service"; field in BluetoothOppService
151 if (V) Log.v(TAG, "Service onCreate"); in onCreate()
175 Log.w(TAG, "Local BT device is not enabled"); in onCreate()
186 if (V) Log.v(TAG, "Service onStartCommand"); in onStartCommand()
190 Log.w(TAG, "Local BT device is not enabled"); in onStartCommand()
202 if (V) Log.v(TAG, "Starting RfcommListener in 9 seconds"); in startListenerDelayed()
227 if (V) Log.v(TAG, "Update mInfo.id " + msg.arg1 + " for data uri= "
241 Log.v(TAG, "Update mInfo.id " + msg.arg1 + " for MEDIA_SCANNED_FAILED");
252 if (D) Log.d(TAG, "Get incoming connection");
[all …]
DConstants.java51 public static final String TAG = "BluetoothOpp"; field in Constants
225 Log.v(TAG, "Dumping HeaderSet " + hs.toString()); in logHeader()
228 Log.v(TAG, "COUNT : " + hs.getHeader(HeaderSet.COUNT)); in logHeader()
229 Log.v(TAG, "NAME : " + hs.getHeader(HeaderSet.NAME)); in logHeader()
230 Log.v(TAG, "TYPE : " + hs.getHeader(HeaderSet.TYPE)); in logHeader()
231 Log.v(TAG, "LENGTH : " + hs.getHeader(HeaderSet.LENGTH)); in logHeader()
232 Log.v(TAG, "TIME_ISO_8601 : " + hs.getHeader(HeaderSet.TIME_ISO_8601)); in logHeader()
233 Log.v(TAG, "TIME_4_BYTE : " + hs.getHeader(HeaderSet.TIME_4_BYTE)); in logHeader()
234 Log.v(TAG, "DESCRIPTION : " + hs.getHeader(HeaderSet.DESCRIPTION)); in logHeader()
235 Log.v(TAG, "TARGET : " + hs.getHeader(HeaderSet.TARGET)); in logHeader()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapObexServer.java58 private static final String TAG = "BluetoothPbapObexServer"; field in BluetoothPbapObexServer
180 if (D) Log.d(TAG, "Initialize mMissedCallSize=" + mMissedCallSize); in BluetoothPbapObexServer()
191 if (D) Log.d(TAG, "onConnect(): uuid=" + Arrays.toString(uuid)); in onConnect()
194 Log.w(TAG, "Wrong UUID length"); in onConnect()
199 Log.w(TAG, "Wrong UUID"); in onConnect()
205 Log.e(TAG, e.toString()); in onConnect()
212 if (D) Log.d(TAG, "onConnect(): remote=" + Arrays.toString(remote)); in onConnect()
216 Log.e(TAG, e.toString()); in onConnect()
220 if (V) Log.v(TAG, "onConnect(): uuid is ok, will send out " + in onConnect()
232 if (D) Log.d(TAG, "onDisconnect(): enter"); in onDisconnect()
[all …]
DBluetoothPbapService.java65 private static final String TAG = "BluetoothPbapService"; field in BluetoothPbapService
204 if (VERBOSE) Log.v(TAG, "Pbap Service onCreate"); in onCreate()
211 if (VERBOSE) Log.v(TAG, "Starting PBAP service"); in onCreate()
223 if (VERBOSE) Log.v(TAG, "Pbap Service onStartCommand"); in onStartCommand()
228 Log.w(TAG, "Stopping BluetoothPbapService: " in onStartCommand()
246 if (VERBOSE) Log.v(TAG, "action: " + action); in parseIntent()
259 if (VERBOSE) Log.v(TAG, "setTrust() result=" + result); in parseIntent()
268 Log.e(TAG, "Caught the error: " + ex.toString()); in parseIntent()
288 if (VERBOSE) Log.v(TAG, "Pbap Service onDestroy"); in onDestroy()
301 if (VERBOSE) Log.v(TAG, "Pbap Service onBind"); in onBind()
[all …]
DBluetoothPbapVcardManager.java63 private static final String TAG = "BluetoothPbapVcardManager"; field in BluetoothPbapVcardManager
134 if (V) Log.v(TAG, "getPhonebookSzie size = " + size + " type = " + type); in getPhonebookSize()
215 if (V) Log.v(TAG, "getPhonebookNameList, order by index"); in getPhonebookNameList()
219 if (V) Log.v(TAG, "getPhonebookNameList, order by alpha"); in getPhonebookNameList()
260 if (V) Log.v(TAG, "got name " + name + " by number " + phoneNumber + " @" + id); in getContactNamesByNumber()
275 Log.e(TAG, "internal error: startPoint or endPoint is not correct."); in composeAndSendCallLogVcards()
296 if (V) Log.v(TAG, "Call Log query startPointId = " + startPointId); in composeAndSendCallLogVcards()
303 if (V) Log.v(TAG, "Call log query endPointId = " + endPointId); in composeAndSendCallLogVcards()
328 if (V) Log.v(TAG, "Call log query selection is: " + selection); in composeAndSendCallLogVcards()
336 Log.e(TAG, "internal error: startPoint or endPoint is not correct."); in composeAndSendPhonebookVcards()
[all …]
/packages/apps/Mms/src/com/android/mms/transaction/
DTransactionService.java83 private static final String TAG = "TransactionService"; field in TransactionService
156 Log.v(TAG, "Creating TransactionService"); in onCreate()
182 Log.v(TAG, "onStart: #" + startId + ": " + intent.getExtras() + " intent=" + intent); in onStartCommand()
183 Log.v(TAG, " networkAvailable=" + !noNetwork); in onStartCommand()
195 Log.v(TAG, "onStart: cursor.count=" + count); in onStartCommand()
200 Log.v(TAG, "onStart: no pending messages. Stopping service."); in onStartCommand()
214 Log.v(TAG, "onStart: registerForConnectionStateChanges"); in onStartCommand()
257 Log.v(TAG, "onStart: no pending messages. Stopping service."); in onStartCommand()
264 Log.v(TAG, "onStart: launch transaction..."); in onStartCommand()
277 Log.v(TAG, "stopSelfIfIdle: STOP!"); in stopSelfIfIdle()
[all …]
/packages/apps/Phone/src/com/android/phone/
DOutgoingCallBroadcaster.java50 private static final String TAG = "OutgoingCallBroadcaster"; field in OutgoingCallBroadcaster
77 private static final String TAG = "OutgoingCallReceiver"; field in OutgoingCallBroadcaster.OutgoingCallReceiver
85 if (DBG) Log.v(TAG, "doReceive: " + intent); in doReceive()
94 if (DBG) Log.v(TAG, "CALL already placed -- returning."); in doReceive()
121 if (DBG) Log.v(TAG, "OTA call is active, a 2nd CALL cancelled -- returning."); in doReceive()
127 if (DBG) Log.v(TAG, "CALL cancelled (null number), returning..."); in doReceive()
132 if (DBG) Log.v(TAG, "Call is active, a 2nd OTA call cancelled -- returning."); in doReceive()
135 Log.w(TAG, "Cannot modify outgoing call to emergency number " + number + "."); in doReceive()
142 Log.e(TAG, "Intent is missing EXTRA_ORIGINAL_URI -- returning."); in doReceive()
153 if (DBG) Log.v(TAG, "CALL to " + /*number*/ "xxxxxxx" + " proceeding."); in doReceive()
[all …]
DEmergencyCallHandler.java51 private static final String TAG = "EmergencyCallHandler"; field in EmergencyCallHandler
88 if (DBG) Log.d(TAG, "EVENT_SERVICE_STATE_CHANGED: state = " + state); in handleMessage()
96 if (DBG) Log.d(TAG, "About to (re)launch InCallScreen: " + eci.intent); in handleMessage()
103 if (DBG) Log.d(TAG, "EVENT_TIMEOUT_EMERGENCY_CALL..."); in handleMessage()
108 if (DBG) Log.d(TAG, "About to (re)launch InCallScreen: " + eci.intent); in handleMessage()
118 Log.i(TAG, "onCreate()... intent = " + getIntent()); in onCreate()
131 Log.w(TAG, "Unexpected intent action! Should be ACTION_CALL_EMERGENCY, " in onCreate()
153 if (DBG) Log.d(TAG, "- initial eci.intent: " + eci.intent); in onCreate()
181 if (DBG) Log.d(TAG, "Turning off airplane mode..."); in onCreate()
194 if (DBG) Log.d(TAG, "Manually powering radio on..."); in onCreate()
[all …]
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastConfigService.java44 private static final String TAG = "CellBroadcastConfigService"; field in CellBroadcastConfigService
49 super(TAG); // use class name for worker thread name in CellBroadcastConfigService()
67 if (DBG) Log.d(TAG, "enabling emergency cell broadcast channels"); in onHandleIntent()
71 if (DBG) Log.d(TAG, "enabled emergency cell broadcast channels"); in onHandleIntent()
74 if (DBG) Log.d(TAG, "disabling emergency cell broadcast channels"); in onHandleIntent()
78 if (DBG) Log.d(TAG, "disabled emergency cell broadcast channels"); in onHandleIntent()
82 if (DBG) Log.d(TAG, "enabling cell broadcast channel 50"); in onHandleIntent()
84 if (DBG) Log.d(TAG, "enabled cell broadcast channel 50"); in onHandleIntent()
86 if (DBG) Log.d(TAG, "disabling cell broadcast channel 50"); in onHandleIntent()
88 if (DBG) Log.d(TAG, "disabled cell broadcast channel 50"); in onHandleIntent()
[all …]
DCellBroadcastAlertAudio.java46 private static final String TAG = "CellBroadcastAlertAudio"; field in CellBroadcastAlertAudio
97 if (DBG) Log.v(TAG, "ALERT_SOUND_FINISHED");
111 if (DBG) Log.v(TAG, "ALERT_PAUSE_FINISHED");
113 if (DBG) Log.v(TAG, "Speaking broadcast text: " + mMessageBody);
117 Log.w(TAG, "TTS engine not ready or language not supported");
124 Log.e(TAG, "Handler received unknown message, what=" + msg.what);
145 if (DBG) Log.v(TAG, "onInit() TTS engine status: " + status); in onInit()
153 Log.e(TAG, "onInit() TTS engine error: " + status); in onInit()
163 if (DBG) Log.v(TAG, "Setting TTS language to '" + mMessageLanguage + '\''); in setTtsLanguage()
166 if (DBG) Log.v(TAG, "TTS setLanguage() returned: " + result); in setTtsLanguage()
[all …]
/packages/experimental/StrictModeTest/src/com/android/strictmodetest/
DStrictModeActivity.java77 private static final String TAG = "StrictModeActivity"; field in StrictModeActivity
86 Log.v(TAG, "Service connected: " + name); in onServiceConnected()
90 Log.v(TAG, "Service disconnected: " + name); in onServiceDisconnected()
135 Log.d(TAG, "Time for " + iters + ": " + (endTime - startTime) + ", avg=" + in onCreate()
143 Log.d(TAG, "Doing DNS lookup for www.l.google.com... " in onCreate()
148 Log.d(TAG, "got: " + addrs[i]); in onCreate()
151 Log.d(TAG, "DNS error: " + e); in onCreate()
167 Log.d(TAG, "Fetched http response: " + res); in onCreate()
169 Log.d(TAG, "HTTP fetch error: " + e); in onCreate()
183 Log.d(TAG, "Got input stream: " + is); in onCreate()
[all …]
/packages/apps/VoiceDialer/src/com/android/voicedialer/
DRecognizerEngine.java62 protected static final String TAG = "RecognizerEngine"; field in RecognizerEngine
136 if (Config.LOGD) Log.d(TAG, "start new Recognizer"); in recognize()
147 if (Config.LOGD) Log.d(TAG, "using mic file"); in recognize()
152 if (Config.LOGD) Log.d(TAG, "start new MicrophoneInputStream"); in recognize()
165 if (Config.LOGD) Log.d(TAG, "start mSrec.start"); in recognize()
175 Log.d(TAG, "start advance()=" + in recognize()
192 Log.d(TAG, "unknown event " + event); in recognize()
200 if (Config.LOGD) Log.d(TAG, "start interrupted " + e); in recognize()
203 if (Config.LOGD) Log.d(TAG, "start new Srec failed " + e); in recognize()
206 if (Config.LOGD) Log.d(TAG, "exception " + e); in recognize()
[all …]
/packages/providers/DrmProvider/src/com/android/providers/drm/
DDrmPushReceiver.java33 private static final String TAG = "DrmPushReceiver"; field in DrmPushReceiver
45 Log.e(TAG, "The rights data is invalid."); in onReceive()
54 Log.e(TAG, "Install drm rights failed."); in onReceive()
57 Log.e(TAG, "IOException occurs when install drm rights."); in onReceive()
61 Log.d(TAG, "Install drm rights successfully."); in onReceive()
64 Log.d(TAG, "This is not drm rights push mimetype."); in onReceive()
66 Log.d(TAG, "This is not wap push received action."); in onReceive()
/packages/experimental/RpcPerformance/src/com/android/rpc_performance/
DMiscService.java35 private static final String TAG = "MiscService"; field in MiscService
40 Log.v(TAG, "onCreate"); in onCreate()
44 Log.v(TAG, "in onCreate, making server socket: " + e); in onCreate()
53 Log.v(TAG, "Waiting for connection..."); in onCreate()
55 Log.v(TAG, "Got socket: " + socket); in onCreate()
62 Log.v(TAG, "in accept: " + e); in onCreate()
84 Log.v(TAG, "in echo thread loop: " + e); in startEchoThread()
92 Log.v(TAG, "onBind"); in onBind()
/packages/apps/Camera/tests/src/com/android/camera/stress/
DCameraLatency.java37 private String TAG = "CameraLatency"; field in CameraLatency
71 Log.v(TAG, "start testImageCapture test"); in testImageCapture()
92 Log.v(TAG, e.toString()); in testImageCapture()
128 Log.v(TAG, "The Image capture wait time = " + in testImageCapture()
130 Log.v(TAG, "Avg AutoFocus = " + mAvgAutoFocusTime); in testImageCapture()
131 Log.v(TAG, "Avg mShutterLag = " + mAvgShutterLag); in testImageCapture()
132 Log.v(TAG, "Avg mShutterToPictureDisplayedTime = " in testImageCapture()
134 Log.v(TAG, "Avg mPictureDisplayedToJpegCallbackTime = " in testImageCapture()
136 Log.v(TAG, "Avg mJpegCallbackFinishTime = " + mAvgJpegCallbackFinishTime); in testImageCapture()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DCursorBackedSuggestionCursor.java29 protected static final String TAG = "QSB.CursorBackedSuggestionCursor"; field in CursorBackedSuggestionCursor
87 if (DBG) Log.d(TAG, "close()"); in close()
97 Log.e(TAG, "close() failed, ", ex); in close()
105 Log.e(TAG, "LEAK! Finalized without being closed: " + toString()); in finalize()
118 Log.e(TAG, "getCount() failed, ", ex); in getCount()
129 Log.e(TAG, "moveToPosition(" + pos + ") failed, count=" + getCount()); in moveTo()
133 Log.e(TAG, "moveToPosition() failed, ", ex); in moveTo()
145 Log.e(TAG, "moveToNext() failed, ", ex); in moveToNext()
158 Log.e(TAG, "getPosition() failed, ", ex); in getPosition()
249 Log.e(TAG, "getColumnIndex() failed, ", ex); in getColumnIndex()
[all …]
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarCache.java33 private static final String TAG = "CalendarCache"; field in CalendarCache
85 Log.e(TAG, "Could not read timezone database version from CalendarCache"); in readTimezoneDatabaseVersion()
99 Log.e(TAG, "Cannot read timezone type from CalendarCache - using AUTO as default", e); in readTimezoneType()
108 Log.e(TAG, "Cannot write instances timezone to CalendarCache"); in writeTimezoneInstances()
117 Log.e(TAG, "Cannot read instances timezone from CalendarCache - using device one: " + in readTimezoneInstances()
127 Log.e(TAG, "Cannot write previous instance timezone to CalendarCache"); in writeTimezoneInstancesPrevious()
135 Log.e(TAG, "Cannot read previous instances timezone from CalendarCache", e); in readTimezoneInstancesPrevious()
153 if (Log.isLoggable(TAG, Log.VERBOSE)) { in writeData()
154 Log.i(TAG, "Wrote (key, value) = [ " + key + ", " + value + "] "); in writeData()
226 if (Log.isLoggable(TAG, Log.VERBOSE)) { in readDataLocked()
[all …]
/packages/apps/Settings/src/com/android/settings/applications/
DApplicationsState.java40 static final String TAG = "ApplicationsState"; field in ApplicationsState
364 if (DEBUG_LOCKING) Log.v(TAG, "resume about to acquire lock..."); in resume()
392 if (DEBUG_LOCKING) Log.v(TAG, "...resume releasing lock"); in resume()
397 if (DEBUG_LOCKING) Log.v(TAG, "pause about to acquire lock..."); in pause()
401 if (DEBUG_LOCKING) Log.v(TAG, "...pause releasing lock"); in pause()
464 if (DEBUG) Log.i(TAG, "Rebuilding..."); in handleRebuildList()
469 if (DEBUG_LOCKING) Log.v(TAG, "rebuild acquired lock"); in handleRebuildList()
472 if (DEBUG) Log.i(TAG, "Using " + info.packageName + ": " + entry); in handleRebuildList()
474 if (DEBUG_LOCKING) Log.v(TAG, "rebuild releasing lock"); in handleRebuildList()
500 if (DEBUG_LOCKING) Log.v(TAG, "getEntry about to acquire lock..."); in getEntry()
[all …]
/packages/apps/Contacts/src/com/android/contacts/ui/
DQuickContactActivity.java38 private static final String TAG = "QuickContactActivity"; field in QuickContactActivity
48 if (LOGV) Log.d(TAG, "onCreate"); in onCreate()
56 if (LOGV) Log.d(TAG, "onNewIntent"); in onNewIntent()
63 if (LOGV) Log.d(TAG, "Preparing window"); in onNewIntent()
89 if (LOGV) Log.w(TAG, "Unexpected back captured by stub activity"); in onBackPressed()
96 if (LOGV) Log.d(TAG, "onPause"); in onPause()
105 if (LOGV) Log.d(TAG, "onDestroy"); in onDestroy()
110 if (LOGV) Log.d(TAG, "onDismiss"); in onDismiss()

12345678910>>...23