Home
last modified time | relevance | path

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

12345678910>>...53

/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapObexServer.java59 private static final String TAG = "BluetoothPbapObexServer"; field in BluetoothPbapObexServer
178 if (D) Log.d(TAG, "Initialize mMissedCallSize=" + mMissedCallSize); in BluetoothPbapObexServer()
189 if (D) Log.d(TAG, "onConnect(): uuid=" + Arrays.toString(uuid)); in onConnect()
192 Log.w(TAG, "Wrong UUID length"); in onConnect()
197 Log.w(TAG, "Wrong UUID"); in onConnect()
203 Log.e(TAG, e.toString()); in onConnect()
210 if (D) Log.d(TAG, "onConnect(): remote=" + Arrays.toString(remote)); in onConnect()
214 Log.e(TAG, e.toString()); in onConnect()
218 if (V) Log.v(TAG, "onConnect(): uuid is ok, will send out " + in onConnect()
230 if (D) Log.d(TAG, "onDisconnect(): enter"); in onDisconnect()
[all …]
DBluetoothPbapService.java70 private static final String TAG = "BluetoothPbapService"; field in BluetoothPbapService
191 if (VERBOSE) Log.v(TAG, "Pbap Service onCreate"); in onCreate()
198 if (VERBOSE) Log.v(TAG, "Starting PBAP service"); in onCreate()
214 Log.w(TAG, "Stopping BluetoothPbapService: " in onStartCommand()
232 if (VERBOSE) Log.v(TAG, "action: " + action); in parseIntent()
235 if (VERBOSE) Log.v(TAG, "state: " + state); in parseIntent()
266 if (VERBOSE) Log.v(TAG, "setTrust() result=" + result); in parseIntent()
275 Log.e(TAG, "Caught the error: " + ex.toString()); in parseIntent()
296 if (VERBOSE) Log.v(TAG, "Pbap Service onDestroy"); in onDestroy()
308 if (VERBOSE) Log.v(TAG, "Pbap Service onBind"); in onBind()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppService.java83 if (V) Log.v(TAG, "ContentObserver received notification"); in onChange()
88 private static final String TAG = "BtOppService"; field in BluetoothOppService
149 if (V) Log.v(TAG, "onCreate"); in onCreate()
173 Log.w(TAG, "Local BT device is not enabled"); in onCreate()
184 if (V) Log.v(TAG, "onStartCommand"); in onStartCommand()
188 Log.w(TAG, "Local BT device is not enabled"); in onStartCommand()
200 if (V) Log.v(TAG, "Starting RfcommListener"); in startListener()
236 if (V) Log.v(TAG, "Update mInfo.id " + msg.arg1 + " for data uri= "
250 Log.v(TAG, "Update mInfo.id " + msg.arg1 + " for MEDIA_SCANNED_FAILED");
261 if (D) Log.d(TAG, "Get incoming connection");
[all …]
DBluetoothOppTransfer.java69 private static final String TAG = "BtOppTransfer"; field in BluetoothOppTransfer
149 if (V) Log.v(TAG, "receive RFCOMM_ERROR msg"); in handleMessage()
160 if (V) Log.v(TAG, "Transfer receive RFCOMM_CONNECTED msg"); in handleMessage()
175 if (V) Log.v(TAG, "receive MSG_SHARE_COMPLETE for info " + info.mId); in handleMessage()
181 if (V) Log.v(TAG, "continue session for info " + mCurrentShare.mId + in handleMessage()
186 if (V) Log.v(TAG, "Batch " + mBatch.mId + " is done"); in handleMessage()
197 if (V) Log.v(TAG, "receive MSG_SESSION_COMPLETE for batch " + mBatch.mId); in handleMessage()
207 if (V) Log.v(TAG, "receive MSG_SESSION_ERROR for batch " + mBatch.mId); in handleMessage()
216 if (V) Log.v(TAG, "receive MSG_SHARE_INTERRUPTED for batch " + mBatch.mId); in handleMessage()
221 Log.v(TAG, "receive MSG_SHARE_INTERRUPTED but mTransport = null"); 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 = "BtOppObexClient"; 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()
153 wakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, TAG); in ClientThread()
166 if (V) Log.v(TAG, "acquire partial WakeLock"); in run()
172 if (V) Log.v(TAG, "Client thread was interrupted (1), exiting"); in run()
184 if (D) Log.d(TAG, "Client thread waiting for next share, sleep for " in run()
195 if (V) Log.v(TAG, "release partial WakeLock"); in run()
[all …]
DBluetoothOppRfcommListener.java51 private static final String TAG = "BtOppRfcommListener"; field in BluetoothOppRfcommListener
80 mSocketAcceptThread = new Thread(TAG) { in start()
85 if (V) Log.v(TAG, "Create TCP ServerSocket"); in start()
88 Log.e(TAG, "Error listing on port" + Constants.TCP_DEBUG_PORT); in start()
95 if (V) Log.v(TAG, "Socket connected!"); in start()
104 Log.e(TAG, "Error accept connection " + e); in start()
107 if (V) Log.v(TAG, "TCP listen thread finished"); in start()
117 if (V) Log.v(TAG, "Starting RFCOMM listener...."); in start()
119 if (V) Log.v(TAG, "Started RFCOMM listener...."); in start()
121 Log.e(TAG, "Error create RfcommServerSocket " + e1); in start()
[all …]
/packages/apps/Phone/src/com/android/phone/
DOutgoingCallBroadcaster.java66 private static final String TAG = "OutgoingCallBroadcaster"; field in OutgoingCallBroadcaster
108 Log.i(TAG, "Outgoing call takes too long. Showing the spinner.");
111 Log.wtf(TAG, "Unknown message id: " + msg.what);
122 private static final String TAG = "OutgoingCallReceiver"; field in OutgoingCallBroadcaster.OutgoingCallReceiver
128 if (DBG) Log.v(TAG, "OutgoingCallReceiver is going to finish the Activity itself."); in onReceive()
133 if (DBG) Log.v(TAG, "doReceive: " + intent); in doReceive()
142 if (DBG) Log.v(TAG, "CALL already placed -- returning."); in doReceive()
151 if (VDBG) Log.v(TAG, "- got number from resultData: '" + number + "'"); in doReceive()
192 Log.w(TAG, "OTASP call is active: disallowing a new outgoing call."); in doReceive()
198 if (DBG) Log.v(TAG, "CALL cancelled (null number), returning..."); in doReceive()
[all …]
/packages/apps/Mms/src/com/android/mms/transaction/
DTransactionService.java86 private static final String TAG = "TransactionService"; field in TransactionService
167 Log.v(TAG, "Creating TransactionService"); in onCreate()
201 Log.v(TAG, "onNewIntent: serviceId: " + serviceId + ": " + intent.getExtras() + in onNewIntent()
203 Log.v(TAG, " networkAvailable=" + !noNetwork); in onNewIntent()
217 Log.v(TAG, "onNewIntent: cursor.count=" + count + " action=" + action); in onNewIntent()
222 Log.v(TAG, "onNewIntent: no pending messages. Stopping service."); in onNewIntent()
237 Log.v(TAG, "onNewIntent: msgType=" + msgType + " transactionType=" + in onNewIntent()
258 Log.v(TAG, "onNewIntent: failureType=" + failureType + in onNewIntent()
267 Log.v(TAG, "onNewIntent: skipping - autodownload off"); in onNewIntent()
277 Log.v(TAG, "onNewIntent: skipping - permanent error"); in onNewIntent()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DInputAttributes.java27 private final String TAG = InputAttributes.class.getSimpleName(); field in InputAttributes
45 Log.w(TAG, "No editor info for this field. Bug?"); in InputAttributes()
48 Log.i(TAG, "InputType.TYPE_NULL is specified"); in InputAttributes()
51 Log.w(TAG, String.format("Unexpected input class: inputType=0x%08x" in InputAttributes()
109 Log.i(TAG, "Input class:"); in dumpFlags()
112 Log.i(TAG, " TYPE_CLASS_TEXT"); in dumpFlags()
114 Log.i(TAG, " TYPE_CLASS_PHONE"); in dumpFlags()
116 Log.i(TAG, " TYPE_CLASS_NUMBER"); in dumpFlags()
118 Log.i(TAG, " TYPE_CLASS_DATETIME"); in dumpFlags()
119 Log.i(TAG, "Variation:"); in dumpFlags()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
DGattService.java52 private static final String TAG = GattServiceConfig.TAG_PREFIX + "GattService"; field in GattService
146 return TAG; in getName()
154 if (DBG) Log.d(TAG, "start()"); in start()
160 if (DBG) Log.d(TAG, "stop()"); in stop()
172 if (DBG) Log.d(TAG, "cleanup()"); in cleanup()
198 if (DBG) Log.d(TAG, "Binder is dead - unregistering client (" + mAppIf + ")!"); in binderDied()
211 if (DBG) Log.d(TAG, "Binder is dead - unregistering server (" + mAppIf + ")!"); in binderDied()
233 Log.e(TAG, "getService() - Service requested, but not available!"); in getService()
478 if (DBG) Log.d(TAG, "onScanResult() - address=" + address in onScanResult()
503 Log.e(TAG, "Exception: " + e); in onScanResult()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
DHeadsetStateMachine.java69 private static final String TAG = "HeadsetStateMachine"; field in HeadsetStateMachine
166 super(TAG); in HeadsetStateMachine()
173 TAG + ":VoiceRecognition"); in HeadsetStateMachine()
184 Log.e(TAG, "Could not bind to Bluetooth Headset Phone Service"); in HeadsetStateMachine()
209 Log.d(TAG, "make"); in make()
222 if (DBG) Log.d(TAG,"Unbinding service..."); in cleanup()
228 Log.e(TAG,"Error unbinding from IBluetoothHeadsetPhone",re); in cleanup()
257 Log.e(TAG, "ERROR: current, target, or mIncomingDevice not null in Disconnected"); in processMessage()
305 Log.e(TAG, "Unexpected stack event: " + event.type); in processMessage()
324 Log.w(TAG, "Ignore HF DISCONNECTED event, device: " + device); in processConnectionEvent()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
DAdapterState.java41 private static final String TAG = "BluetoothAdapterState"; field in AdapterState
76 if (VDBG) Log.d(TAG,"isTurningOn()=" + isTurningOn); in isTurningOn()
82 if (VDBG) Log.d(TAG,"isTurningOff()=" + isTurningOff); in isTurningOff()
97 Log.d(TAG, "make"); in make()
124 Log.e(TAG,"receive message at OffState after cleanup:" + in processMessage()
130 if (DBG) Log.d(TAG,"CURRENT_STATE=OFF, MESSAGE = USER_TURN_ON"); in processMessage()
138 if (DBG) Log.d(TAG,"CURRENT_STATE=OFF, MESSAGE = USER_TURN_OFF"); in processMessage()
142 … if (DBG) Log.d(TAG,"ERROR: UNEXPECTED MESSAGE: CURRENT_STATE=OFF, MESSAGE = " + msg.what ); in processMessage()
155 Log.e(TAG,"enter OnState after cleanup"); in enter()
165 Log.e(TAG,"receive message at OnState after cleanup:" + in processMessage()
[all …]
DAdapterService.java71 private static final String TAG = "BluetoothAdapterService"; field in AdapterService
96 if (DBG) Log.d(TAG, "getAdapterService(): returning " + sAdapterService); in getAdapterService()
101 Log.d(TAG, "getAdapterService(): service not available"); in getAdapterService()
103 Log.d(TAG,"getAdapterService(): service is cleaning up"); in getAdapterService()
111 if (DBG) Log.d(TAG, "setAdapterService(): set to: " + sAdapterService); in setAdapterService()
116 Log.d(TAG, "setAdapterService(): service not available"); in setAdapterService()
118 Log.d(TAG,"setAdapterService(): service is cleaning up"); in setAdapterService()
146 Log.d(TAG, "REFCOUNT: CREATED. INSTANCE_COUNT" + sRefCount); in AdapterService()
174 Log.e(TAG, "",re); in processProfileStateChanged()
198 …if (DBG) Log.d(TAG,"onProfileServiceStateChange: serviceName=" + serviceName + ", state = " + stat… in processProfileServiceStateChanged()
[all …]
/packages/apps/Nfc/tests/src/com/android/nfc/snep/
DSnepValidationClientTests.java36 private static final String TAG = "nfcTest"; field in SnepValidationClientTests
43 Log.d(TAG, "Waiting for service to restart..."); in setUp()
48 Log.d(TAG, "Running test."); in setUp()
55 Log.d(TAG, "Connecting to service " + SERVICE_NAME + "..."); in testNonFragmented()
57 Log.d(TAG, "Putting ndef message..."); in testNonFragmented()
60 Log.d(TAG, "Getting ndef message..."); in testNonFragmented()
64 Log.d(TAG, "Done. Checking " + msgBytes.length + " bytes."); in testNonFragmented()
68 Log.d(TAG, "Closing client."); in testNonFragmented()
71 Log.d(TAG, "Test failed.", e); in testNonFragmented()
80 Log.d(TAG, "Connecting to service " + SERVICE_NAME + "..."); in testFragmented()
[all …]
/packages/apps/Gallery2/src/com/android/camera/
DEffectsRecorder.java47 private static final String TAG = "EffectsRecorder"; field in EffectsRecorder
112 Log.v(TAG, "Can't find the class android.filterfw.core.Filter");
114 Log.v(TAG, "Can't find the method Filter.isAvailable");
178 private boolean mLogVerbose = Log.isLoggable(TAG, Log.VERBOSE);
199 Log.e(TAG, "Fail to check filter", ex); in isEffectSupported()
205 if (mLogVerbose) Log.v(TAG, "EffectsRecorder created (" + this + ")"); in EffectsRecorder()
295 Log.v(TAG, "Current effects recorder index is " + sEffectsRecorderIndex); in EffectsRecorder()
420 if (mLogVerbose) Log.v(TAG, "Setting time lapse capture rate to " + fps + " fps"); in setCaptureRate()
427 if (mLogVerbose) Log.v(TAG, "setPreviewSurfaceTexture(" + this + ")"); in setPreviewSurfaceTexture()
455 if (mLogVerbose) Log.v(TAG, in setEffect()
[all …]
/packages/apps/Camera/src/com/android/camera/
DEffectsRecorder.java46 private static final String TAG = "EffectsRecorder"; field in EffectsRecorder
111 Log.v(TAG, "Can't find the class android.filterfw.core.Filter");
113 Log.v(TAG, "Can't find the method Filter.isAvailable");
177 private boolean mLogVerbose = Log.isLoggable(TAG, Log.VERBOSE);
198 Log.e(TAG, "Fail to check filter", ex); in isEffectSupported()
204 if (mLogVerbose) Log.v(TAG, "EffectsRecorder created (" + this + ")"); in EffectsRecorder()
294 Log.v(TAG, "Current effects recorder index is " + sEffectsRecorderIndex); in EffectsRecorder()
419 if (mLogVerbose) Log.v(TAG, "Setting time lapse capture rate to " + fps + " fps"); in setCaptureRate()
426 if (mLogVerbose) Log.v(TAG, "setPreviewSurfaceTexture(" + this + ")"); in setPreviewSurfaceTexture()
454 if (mLogVerbose) Log.v(TAG, in setEffect()
[all …]
/packages/apps/Nfc/src/com/android/nfc/
DNfcService.java86 static final String TAG = "NfcService"; field in NfcService
366 Log.i(TAG, "Starting NFC service"); in NfcService()
569 Log.e(TAG, "Processing EnableDisable task " + params[0] + " from bad state " + in doInBackground()
591 Log.d(TAG,"checking on firmware download"); in doInBackground()
595 Log.d(TAG,"NFC is on. Doing normal stuff"); in doInBackground()
598 Log.d(TAG,"NFC is off. Checking firmware version"); in doInBackground()
602 Log.i(TAG, "First Boot"); in doInBackground()
626 Log.i(TAG, "Enabling NFC"); in enableInternal()
635 Log.w(TAG, "Error enabling NFC"); in enableInternal()
669 Log.i(TAG, "Disabling NFC"); in disableInternal()
[all …]
/packages/apps/VoiceDialer/src/com/android/voicedialer/
DVoiceDialerActivity.java127 private static final String TAG = "VoiceDialerActivity"; field in VoiceDialerActivity
240 Log.e(TAG, "Getting Headset Proxy failed"); in onCreate()
245 if (false) Log.d(TAG, "bluetooth unavailable"); in onCreate()
288 Log.e(TAG, "utterance completion not delivered, using fallback"); in run()
290 Log.d(TAG, "onTtsCompletionRunnable"); in run()
326 if (false) Log.d(TAG, "onInit for tts"); in onInit()
329 Log.e(TAG, "Could not initialize TextToSpeech."); in onInit()
336 Log.e(TAG, "null tts"); in onInit()
371 if (false) Log.d(TAG, "onUtteranceCompleted " + utteranceId); in onUtteranceCompleted()
381 if (false) Log.d(TAG, "using bluetooth"); in updateBluetoothParameters()
[all …]
/packages/apps/LegacyCamera/src/com/android/camera/
DEffectsRecorder.java119 private boolean mLogVerbose = Log.isLoggable(TAG, Log.VERBOSE);
120 private static final String TAG = "effectsrecorder"; field in EffectsRecorder
138 if (mLogVerbose) Log.v(TAG, "EffectsRecorder created (" + this + ")"); in EffectsRecorder()
244 if (mLogVerbose) Log.v(TAG, "Setting time lapse capture rate to " + fps + " fps"); in setCaptureRate()
251 if (mLogVerbose) Log.v(TAG, "setPreviewDisplay (" + this + ")"); in setPreviewDisplay()
277 if (mLogVerbose) Log.v(TAG, in setEffect()
350 if (mLogVerbose) Log.v(TAG, "Setting orientation hint to: " + degrees); in setOrientationHint()
407 Log.v(TAG, "Effects framework initializing. Recording size " in initializeFilterFramework()
433 Log.v(TAG, "Effect initializing. Preview size " in initializeEffect()
465 Log.v(TAG, "New runner: " + mRunner in initializeEffect()
[all …]
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
DMmsSmsDatabaseHelper.java51 private static final String TAG = "MmsSmsDatabaseHelper"; field in MmsSmsDatabaseHelper
379 Log.e(TAG, ex.getMessage(), ex); in updateThread()
417 Log.e(TAG, ex.getMessage(), ex); in updateAllThreads()
543 Log.e(TAG, "got exception creating words table: " + ex.toString()); in createWordsTables()
556 Log.e(TAG, "got exception creating indices: " + ex.toString()); in createThreadIdIndex()
1013 Log.w(TAG, "Upgrading database from version " + oldVersion in onUpgrade()
1027 Log.e(TAG, ex.getMessage(), ex); in onUpgrade()
1043 Log.e(TAG, ex.getMessage(), ex); in onUpgrade()
1059 Log.e(TAG, ex.getMessage(), ex); in onUpgrade()
1075 Log.e(TAG, ex.getMessage(), ex); in onUpgrade()
[all …]
/packages/experimental/StrictModeTest/src/com/android/strictmodetest/
DStrictModeActivity.java78 private static final String TAG = "StrictModeActivity"; field in StrictModeActivity
87 Log.v(TAG, "Service connected: " + name); in onServiceConnected()
91 Log.v(TAG, "Service disconnected: " + name); in onServiceDisconnected()
121 Log.e(TAG, "SQLiteException: " + e); in onCreate()
145 Log.d(TAG, "Time for " + iters + ": " + (endTime - startTime) + ", avg=" + in onCreate()
153 Log.d(TAG, "Doing DNS lookup for www.l.google.com... " in onCreate()
158 Log.d(TAG, "got: " + addrs[i]); in onCreate()
161 Log.d(TAG, "DNS error: " + e); in onCreate()
171 Log.d(TAG, "for random domain " + domain + ": " + addr); in onCreate()
188 Log.d(TAG, "Fetched http response: " + res); in onCreate()
[all …]
/packages/apps/Calendar/tests/src/com/android/calendar/
DAsyncQueryServiceTest.java57 private static final String TAG = "AsyncQueryServiceTest"; field in AsyncQueryServiceTest
129 Log.d(TAG, "testQuery Waiting >>>>>>>>>>>"); in testQuery()
132 Log.d(TAG, "testQuery Done <<<<<<<<<<<<<<"); in testQuery()
155 Log.d(TAG, "testInsert Waiting >>>>>>>>>>>"); in testInsert()
158 Log.d(TAG, "testInsert Done <<<<<<<<<<<<<<"); in testInsert()
183 Log.d(TAG, "testUpdate Waiting >>>>>>>>>>>"); in testUpdate()
186 Log.d(TAG, "testUpdate Done <<<<<<<<<<<<<<"); in testUpdate()
213 Log.d(TAG, "testDelete Waiting >>>>>>>>>>>"); in testDelete()
216 Log.d(TAG, "testDelete Done <<<<<<<<<<<<<<"); in testDelete()
245 Log.d(TAG, "testBatch Waiting >>>>>>>>>>>"); in testBatch()
[all …]
/packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/
DImsFrameworkApp.java42 private static final String TAG = "ImsFrameworkApp"; field in ImsFrameworkApp
55 Log.d(TAG, "onCreate(): registering for telephony state change broadcasts"); in onCreate()
71 Log.d(TAG, "mReceiver received action " + action); in onReceive()
73 Log.d(TAG, "mReceiver: ACTION_AIRPLANE_MODE_CHANGED"); in onReceive()
74 Log.d(TAG, "- state: " + intent.getBooleanExtra(Phone.STATE_KEY, false)); in onReceive()
76 Log.d(TAG, "mReceiver: ACTION_ANY_DATA_CONNECTION_STATE_CHANGED"); in onReceive()
77 Log.d(TAG, "- apnName: " + intent.getStringExtra(Phone.DATA_APN_KEY)); in onReceive()
78 Log.d(TAG, "- apnType: " + intent.getStringExtra(Phone.DATA_APN_TYPE_KEY)); in onReceive()
79 Log.d(TAG, "- state: " + intent.getStringExtra(Phone.STATE_KEY)); in onReceive()
80 Log.d(TAG, "- reason: " + intent.getStringExtra(Phone.STATE_CHANGE_REASON_KEY)); in onReceive()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DActionBatch.java93 static final String TAG = "DictionaryProvider:" + StartDownloadAction.class.getSimpleName(); field in ActionBatch.StartDownloadAction
110 Log.e(TAG, "UpdateAction with a null parameter!"); in execute()
131 Log.e(TAG, "Unexpected state of the word list '" + mWordList.mId + "' : " + status in execute()
190 static final String TAG = "DictionaryProvider:" field in ActionBatch.InstallAfterDownloadAction
206 Log.e(TAG, "InstallAfterDownloadAction with a null parameter!"); in execute()
212 Log.e(TAG, "Unexpected state of the word list '" + id + "' : " + status in execute()
226 static final String TAG = "DictionaryProvider:" + EnableAction.class.getSimpleName(); field in ActionBatch.EnableAction
240 Log.e(TAG, "EnableAction with a null parameter!"); in execute()
250 Log.e(TAG, "Unexpected state of the word list '" + mWordList.mId + " : " + status in execute()
262 static final String TAG = "DictionaryProvider:" + DisableAction.class.getSimpleName(); field in ActionBatch.DisableAction
[all …]

12345678910>>...53