Searched refs:TAG (Results 1 - 25 of 361) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/accounts/
H A DAuthenticatorBindHelper.java44 private static final String TAG = "Accounts"; field in class:AuthenticatorBindHelper
73 if (Log.isLoggable(TAG, Log.VERBOSE)) {
74 Log.v(TAG, "service connection already exists for " + authenticatorType);
78 if (Log.isLoggable(TAG, Log.VERBOSE)) {
79 Log.v(TAG, "the service is connected, scheduling a connected message for "
84 if (Log.isLoggable(TAG, Log.VERBOSE)) {
85 Log.v(TAG, "the service is *not* connected, waiting for for "
92 if (Log.isLoggable(TAG, Log.VERBOSE)) {
93 Log.v(TAG, "there is no service connection for " + authenticatorType);
102 if (Log.isLoggable(TAG, Lo
[all...]
/frameworks/base/location/java/com/android/internal/location/
H A DLocationProviderProxy.java38 private static final String TAG = "LocationProviderProxy"; field in class:LocationProviderProxy
52 Log.e(TAG, "linkToDeath failed", e);
75 Log.e(TAG, "requiresNetwork failed", e);
84 Log.e(TAG, "requiresSatellite failed", e);
93 Log.e(TAG, "requiresCell failed", e);
102 Log.e(TAG, "hasMonetaryCost failed", e);
111 Log.e(TAG, "supportsAltitude failed", e);
120 Log.e(TAG, "supportsSpeed failed", e);
129 Log.e(TAG, "supportsBearing failed", e);
138 Log.e(TAG, "getPowerRequiremen
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DTtyIntent.java21 private static final String TAG = "TtyIntent"; field in class:TtyIntent
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHeadset.java56 private static final String TAG = "BluetoothHeadset"; field in class:BluetoothHeadset
151 Log.e(TAG, "Could not bind to Bluetooth Headset Service");
187 } catch (RemoteException e) {Log.e(TAG, e.toString());}
189 Log.w(TAG, "Proxy not attached to service");
190 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
206 } catch (RemoteException e) {Log.e(TAG, e.toString());}
208 Log.w(TAG, "Proxy not attached to service");
209 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
233 } catch (RemoteException e) {Log.e(TAG, e.toString());}
235 Log.w(TAG, "Prox
[all...]
H A DBluetoothAudioGateway.java17 private static final String TAG = "BT Audio Gateway"; field in class:BluetoothAudioGateway
80 mConnectThead = new Thread(TAG) {
84 //Log.i(TAG, "waiting for connect");
90 Log.i(TAG, "select thread timed out, but " +
94 Log.i(TAG, "select thread was interrupted (2), exiting");
100 Log.i(TAG, "connect notification!");
107 Log.i(TAG, "Incoming connection from headset " +
120 Log.i(TAG, "Incoming connection from handsfree " +
140 Log.e(TAG, "Could not set up listening socket, exiting");
163 Log.w(TAG, "Interrupte
[all...]
H A DBluetoothA2dp.java51 private static final String TAG = "BluetoothA2dp"; field in class:BluetoothA2dp
104 Log.w(TAG, "Bluetooth A2DP service not available!");
124 Log.e(TAG, "", e);
141 Log.e(TAG, "", e);
157 Log.e(TAG, "", e);
173 Log.e(TAG, "", e);
199 Log.e(TAG, "", e);
215 Log.e(TAG, "", e);
230 Log.e(TAG, "", e);
252 Log.e(TAG, "",
[all...]
H A DBluetoothDevice.java61 private static final String TAG = "BluetoothDevice"; field in class:BluetoothDevice
443 } catch (RemoteException e) {Log.e(TAG, "", e);}
462 } catch (RemoteException e) {Log.e(TAG, "", e);}
476 } catch (RemoteException e) {Log.e(TAG, "", e);}
493 } catch (RemoteException e) {Log.e(TAG, "", e);}
510 } catch (RemoteException e) {Log.e(TAG, "", e);}
525 } catch (RemoteException e) {Log.e(TAG, "", e);}
538 Log.e(TAG, "", e);
553 Log.e(TAG, "", e);
562 } catch (RemoteException e) {Log.e(TAG, "",
[all...]
/frameworks/base/core/java/com/google/android/mms/util/
H A DAbstractCache.java26 private static final String TAG = "AbstractCache"; field in class:AbstractCache
40 Log.v(TAG, "Trying to put " + key + " into cache.");
47 Log.v(TAG, "Failed! size limitation reached.");
58 Log.v(TAG, key + " cached, " + mCacheMap.size() + " items total.");
67 Log.v(TAG, "Trying to get " + key + " from cache.");
75 Log.v(TAG, key + " hit " + cacheEntry.hit + " times.");
85 Log.v(TAG, "Trying to purge " + key);
91 Log.v(TAG, mCacheMap.size() + " items cached.");
99 Log.v(TAG, "Purging cache, " + mCacheMap.size()
/frameworks/base/core/java/android/preference/
H A DPreferenceCategory.java29 private static final String TAG = "PreferenceCategory"; field in class:PreferenceCategory
47 "Cannot add a " + TAG + " directly to a " + TAG);
/frameworks/base/core/java/android/os/
H A DHandlerStateMachine.java90 private static final String TAG = "HandlerStateMachine"; field in class:HandlerStateMachine
113 if (mDbg) Log.d(TAG, "SmHandler.handleMessage E");
115 if (mDbg) Log.d(TAG, "SmHandler.handleMessage; new destation call enter");
121 if (mDbg) Log.d(TAG, "SmHandler.handleMessage; call processMessage");
125 Log.e(TAG, "handleMessage: no current state, did you call setInitialState");
129 if (mDbg) Log.d(TAG, "SmHandler.handleMessage; new destination call exit");
144 if (mDbg) Log.d(TAG, "SmHandler.handleMessage; queue deferred message what="
148 if (mDbg) Log.d(TAG, "SmHandler.handleMessage X");
174 if (mDbg) Log.d(TAG, "StateMachine.obtainMessage() EX target=" + msg.target);
185 Log.d(TAG, "StateMachin
[all...]
H A DServiceManager.java28 private static final String TAG = "ServiceManager"; field in class:ServiceManager
58 Log.e(TAG, "error in getService", e);
74 Log.e(TAG, "error in addService", e);
91 Log.e(TAG, "error in checkService", e);
103 Log.e(TAG, "error in listServices", e);
/frameworks/base/core/java/android/app/
H A DBackupAgent.java38 private static final String TAG = "BackupAgent"; field in class:BackupAgent
114 private static final String TAG = "BackupServiceBinder"; field in class:BackupAgent.BackupServiceBinder
120 if (DEBUG) Log.v(TAG, "doBackup() invoked");
125 Log.d(TAG, "onBackup (" + BackupAgent.this.getClass().getName() + ") threw", ex);
128 Log.d(TAG, "onBackup (" + BackupAgent.this.getClass().getName() + ") threw", ex);
136 if (DEBUG) Log.v(TAG, "doRestore() invoked");
141 Log.d(TAG, "onRestore (" + BackupAgent.this.getClass().getName() + ") threw", ex);
144 Log.d(TAG, "onRestore (" + BackupAgent.this.getClass().getName() + ") threw", ex);
/frameworks/base/services/java/com/android/server/
H A DSystemServer.java50 private static final String TAG = "SystemServer"; field in class:ServerThread
100 Log.i(TAG, "Entropy Service");
103 Log.i(TAG, "Power Manager");
107 Log.i(TAG, "Activity Manager");
110 Log.i(TAG, "Telephony Registry");
115 Log.i(TAG, "Package Manager");
125 Log.i(TAG, "Account Manager");
129 Log.e(TAG, "Failure starting Account Manager", e);
132 Log.i(TAG, "Content Manager");
136 Log.i(TAG, "Syste
464 private static final String TAG = "SystemServer"; field in class:SystemServer
[all...]
H A DMasterClearReceiver.java29 private static final String TAG = "MasterClear"; field in class:MasterClearReceiver
35 Log.w(TAG, "Ignoring master clear request -- not from trusted server.");
39 Log.w(TAG, "!!! FACTORY RESETTING DEVICE !!!");
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DCameraTest.java42 private String TAG = "CameraTest"; field in class:CameraTest
77 Log.v(TAG, "start looper");
83 Log.v(TAG, "start loopRun");
93 Log.v(TAG, "initializeMessageLooper: quit.");
107 Log.v(TAG, e.toString());
115 Log.v(TAG, "Preview callback start");
126 Log.v(TAG, "notify the preview callback");
130 Log.v(TAG, "Preview callback stop");
138 Log.v(TAG, "onShutter called");
152 Log.v(TAG, "RawPictureCallbac
[all...]
H A DMediaMetadataTest.java34 private static final String TAG = "MediaMetadataTest"; field in class:MediaMetadataTest
197 Log.v(TAG, "filePath = "+ meta_data_file[fileIndex][0]);
200 Log.v(TAG, "Skip test since windows media is not supported");
209 Log.v(TAG, "Failed: "+meta_data_file[fileIndex][0] + " " + e.toString());
216 Log.v(TAG, "CD_TRACK_NUMBER : " + value);
217 assertEquals(TAG, meta_data_file[fileIndex][meta.CD_TRACK.ordinal()], value);
220 Log.v(TAG, "Album : "+ value);
221 assertEquals(TAG, meta_data_file[fileIndex][meta.ALBUM.ordinal()], value);
224 Log.v(TAG, "Artist : "+ value);
225 assertEquals(TAG, meta_data_fil
[all...]
H A DCodecTest.java48 private static String TAG = "MediaPlayerApiTest"; field in class:CodecTest
76 Log.v(TAG, e.toString());
83 Log.v(TAG, "getDuration - " + filePath);
89 Log.v(TAG, e.toString());
92 Log.v(TAG, "Duration " + duration);
94 Log.v(TAG, "release");
99 Log.v(TAG, "GetCurrentPosition - " + filePath);
106 Log.v(TAG, "start playback");
115 Log.v(TAG, e.toString());
120 Log.v(TAG, "m
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DSamplingProfilerIntegration.java20 private static final String TAG = "SamplingProfilerIntegration"; field in class:SamplingProfilerIntegration
28 Log.i(TAG, "Profiler is enabled.");
31 Log.i(TAG, "Profiler is disabled.");
78 Log.w(TAG, "Creation of " + dir + " failed.");
127 Log.e(TAG, "Could not open " + path + ".");
144 Log.i(TAG, "Wrote snapshot for " + name
147 Log.e(TAG, "Error writing snapshot.", e);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaRecorderStressTest.java43 private String TAG = "MediaRecorderStressTest"; field in class:MediaRecorderStressTest
92 Log.v(TAG, "start looper");
98 Log.v(TAG, "start loopRun");
105 Log.v(TAG, "initializeMessageLooper: quit.");
111 Log.v(TAG, "start looper");
116 Log.v(TAG, "start loopRun");
123 Log.v(TAG, "initializeMessageLooper: quit.");
136 Log.v(TAG, e.toString());
149 Log.v(TAG, e.toString());
165 Log.v(TAG, "Star
[all...]
/frameworks/policies/base/phone/com/android/internal/policy/impl/
H A DKeyguardViewMediator.java91 private final static String TAG = "KeyguardViewMediator"; field in class:KeyguardViewMediator
275 if (DEBUG) Log.d(TAG, "onSystemReady");
290 if (DEBUG) Log.d(TAG, "onScreenTurnedOff(" + why + ")");
293 if (DEBUG) Log.d(TAG, "pending exit secure callback cancelled");
314 if (DEBUG) Log.d(TAG, "setting alarm to turn off keyguard, seq = "
331 if (DEBUG) Log.d(TAG, "onScreenTurnedOn, seq = " + mDelayedShowingSequence);
343 if (DEBUG) Log.d(TAG, "setKeyguardEnabled(" + enabled + ")");
350 if (DEBUG) Log.d(TAG, "in process of verifyUnlock request, ignoring");
357 if (DEBUG) Log.d(TAG, "remembering to reshow, hiding keyguard, "
363 if (DEBUG) Log.d(TAG, "previousl
[all...]
/frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
H A DTestAppWidgetProvider.java31 static final String TAG = "TestAppWidgetProvider"; field in class:TestAppWidgetProvider
38 Log.d(TAG, "intent=" + intent);
41 Log.d(TAG, "ENABLED");
44 Log.d(TAG, "DISABLED");
47 Log.d(TAG, "UPDATE");
/frameworks/base/tests/appwidgets/AppWidgetProviderTest/src/com/android/tests/appwidgetprovider/
H A DTestAppWidgetProvider.java31 static final String TAG = "TestAppWidgetProvider"; field in class:TestAppWidgetProvider
35 Log.d(TAG, "intent=" + intent);
38 Log.d(TAG, "ENABLED");
41 Log.d(TAG, "DISABLED");
44 Log.d(TAG, "UPDATE");
/frameworks/base/media/java/android/media/
H A DAudioManager.java42 private static String TAG = "AudioManager"; field in class:AudioManager
367 Log.e(TAG, "Dead object in adjustStreamVolume", e);
393 Log.e(TAG, "Dead object in adjustVolume", e);
419 Log.e(TAG, "Dead object in adjustVolume", e);
435 Log.e(TAG, "Dead object in getRingerMode", e);
452 Log.e(TAG, "Dead object in getStreamMaxVolume", e);
470 Log.e(TAG, "Dead object in getStreamVolume", e);
491 Log.e(TAG, "Dead object in setRingerMode", e);
510 Log.e(TAG, "Dead object in setStreamVolume", e);
536 Log.e(TAG, "Dea
[all...]
/frameworks/base/core/java/android/content/
H A DTempProviderSyncAdapter.java25 private static final String TAG = "Sync"; field in class:TempProviderSyncAdapter
220 Log.e(TAG, "Sync failed", e);
279 final String syncTracingEnabledValue = SystemProperties.get(TAG + "Tracing");
311 TimingLogger syncTimer = new TimingLogger(TAG + "Profiling", "sync");
338 Log.e(TAG, "runSyncLoop: Hit max loop count while getting server diffs "
363 if (Log.isLoggable(TAG, Log.VERBOSE)) {
364 Log.v(TAG, "runSyncLoop: running getServerDiffs using syncData "
371 if (Log.isLoggable(TAG, Log.VERBOSE)) {
372 Log.v(TAG, "runSyncLoop: result: " + mResult);
377 Log.d(TAG, "partialSyncUnavailabl
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DMediaPlayerStateUnitTestTemplate.java42 private static final String TAG = "MediaPlayerSeekToStateUnitTest"; field in class:MediaPlayerStateUnitTestTemplate
63 Log.v(TAG, "handleMessage: received MEDIA_PLAYER_ERROR message");
66 Log.v(TAG, "handleMessage: received unknown message");
87 Log.v(TAG, "runTestOnMethod: wait was interrupted.");
117 Log.v(TAG, "onError has been called.");
119 Log.v(TAG, "notify lock.");
131 Log.v(TAG, "onCompletion has been called.");
145 Log.v(TAG, "initializeMessageLooper: quit.");
156 Log.v(TAG, "call " + mMethodUnderTest + ": started in state " + state);
163 Log.v(TAG, "callMediaPlayerMethodUnderTestInStat
[all...]

Completed in 574 milliseconds

1234567891011>>