HomeSort by relevance Sort by last modified time
    Searched refs:TAG (Results 151 - 175 of 9193) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/core/tests/BTtraffic/src/com/android/google/experimental/bttraffic/
BTtraffic.java 28 public static final String TAG = "bttraffic";
42 Log.d(TAG, "Unable to close resource.\n");
57 Log.d(TAG, "unknown action: + " + intent.getAction());
64 Log.d(TAG, "worker thread already active");
69 Log.d(TAG, "startWorker: addr=" + remoteAddr);
78 Log.d(TAG, "Monitor service started");
80 Log.d(TAG, "Worker thread started");
82 Log.d(TAG, "Failed to start service", e);
89 Log.d(TAG, "Start monitor on server");
103 Log.d(TAG, "No need to start SvcMonitor on client")
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/util/
AbstractCache.java 25 private static final String TAG = "AbstractCache";
39 Log.v(TAG, "Trying to put " + key + " into cache.");
46 Log.v(TAG, "Failed! size limitation reached.");
57 Log.v(TAG, key + " cached, " + mCacheMap.size() + " items total.");
66 Log.v(TAG, "Trying to get " + key + " from cache.");
74 Log.v(TAG, key + " hit " + cacheEntry.hit + " times.");
84 Log.v(TAG, "Trying to purge " + key);
90 Log.v(TAG, mCacheMap.size() + " items cached.");
98 Log.v(TAG, "Purging cache, " + mCacheMap.size()
  /packages/apps/Messaging/src/com/android/messaging/mmslib/
SqliteWrapper.java 31 private static final String TAG = LogUtil.BUGLE_TAG;
42 LogUtil.e(TAG, "SqliteWrapper: catch an exception when query", e);
45 LogUtil.e(TAG, "SqliteWrapper: catch an exception when query", e);
55 LogUtil.e(TAG, "SqliteWrapper: catch an exception when update", e);
58 LogUtil.e(TAG, "SqliteWrapper: catch an exception when update", e);
68 LogUtil.e(TAG, "SqliteWrapper: catch an exception when delete", e);
71 LogUtil.e(TAG, "SqliteWrapper: catch an exception when delete", e);
81 LogUtil.e(TAG, "SqliteWrapper: catch an exception when insert", e);
84 LogUtil.e(TAG, "SqliteWrapper: catch an exception when insert", e);
  /packages/apps/Messaging/src/com/android/messaging/mmslib/util/
AbstractCache.java 24 private static final String TAG = "AbstractCache";
37 Log.v(TAG, "Trying to put " + key + " into cache.");
44 Log.v(TAG, "Failed! size limitation reached.");
55 Log.v(TAG, key + " cached, " + mCacheMap.size() + " items total.");
64 Log.v(TAG, "Trying to get " + key + " from cache.");
72 Log.v(TAG, key + " hit " + cacheEntry.hit + " times.");
82 Log.v(TAG, "Trying to purge " + key);
88 Log.v(TAG, mCacheMap.size() + " items cached.");
96 Log.v(TAG, "Purging cache, " + mCacheMap.size()
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
AppStandbyUtils.java 25 private static final String TAG = "CtsAppStandbyUtils";
48 Log.d(TAG, "Setting AppStandby " + (enabled ? "enabled" : "disabled") + " at runtime.");
63 Log.d(TAG, "AppStandby is " + (boolResult ? "enabled" : "disabled") + " at runtime.");
  /cts/tests/app/app/src/android/app/stubs/
LocalForegroundService.java 34 private static final String TAG = "LocalForegroundService";
36 private static final String NOTIFICATION_CHANNEL_ID = "cts/" + TAG;
50 Log.d(TAG, "service created: " + this + " in " + android.os.Process.myPid());
63 Log.d(TAG, "service start cmd " + command + ", intent " + intent);
68 Log.d(TAG, "Starting foreground using notification " + mNotificationId);
77 Log.d(TAG, "Stopping foreground removing notification");
81 Log.d(TAG, "Stopping foreground without removing notification");
85 Log.d(TAG, "Stopping foreground removing notification using flags");
89 Log.d(TAG, "Detaching foreground service notification");
93 Log.d(TAG, "Starting without calling startForeground()")
    [all...]
  /cts/tests/tests/assist/testapp/src/android/assist/testapp/
FocusChangeActivity.java 25 private static final String TAG = "FocusChangeActivity";
32 Log.i(TAG, "gained focus");
35 Log.i(TAG, "lost focus");
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncService.java 36 private static final String TAG = "SyncService";
47 Log.i(TAG, "Service created");
61 Log.i(TAG, "Service destroyed");
  /developers/build/prebuilts/gradle/MessagingService/Application/src/main/java/com/example/android/messagingservice/
MessageReadReceiver.java 26 private static final String TAG = MessageReadReceiver.class.getSimpleName();
32 Log.d(TAG, "onReceive");
35 Log.d(TAG, "Conversation " + conversationId + " was read");
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/
DigitalWatchFaceConfigListenerService.java 40 private static final String TAG = "DigitalListenerService";
47 if (Log.isLoggable(TAG, Log.DEBUG)) {
48 Log.d(TAG, "onMessageReceived: " + messageEvent);
58 if (Log.isLoggable(TAG, Log.DEBUG)) {
59 Log.d(TAG, "Received watch face config message: " + configKeysToOverwrite);
71 Log.e(TAG, "Failed to connect to GoogleApiClient.");
81 if (Log.isLoggable(TAG, Log.DEBUG)) {
82 Log.d(TAG, "onConnected: " + connectionHint);
88 if (Log.isLoggable(TAG, Log.DEBUG)) {
89 Log.d(TAG, "onConnectionSuspended: " + cause)
    [all...]
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncService.java 36 private static final String TAG = "SyncService";
47 Log.i(TAG, "Service created");
61 Log.i(TAG, "Service destroyed");
  /developers/samples/android/notification/MessagingService/Application/src/main/java/com/example/android/messagingservice/
MessageReadReceiver.java 26 private static final String TAG = MessageReadReceiver.class.getSimpleName();
32 Log.d(TAG, "onReceive");
35 Log.d(TAG, "Conversation " + conversationId + " was read");
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/
DigitalWatchFaceConfigListenerService.java 40 private static final String TAG = "DigitalListenerService";
47 if (Log.isLoggable(TAG, Log.DEBUG)) {
48 Log.d(TAG, "onMessageReceived: " + messageEvent);
58 if (Log.isLoggable(TAG, Log.DEBUG)) {
59 Log.d(TAG, "Received watch face config message: " + configKeysToOverwrite);
71 Log.e(TAG, "Failed to connect to GoogleApiClient.");
81 if (Log.isLoggable(TAG, Log.DEBUG)) {
82 Log.d(TAG, "onConnected: " + connectionHint);
88 if (Log.isLoggable(TAG, Log.DEBUG)) {
89 Log.d(TAG, "onConnectionSuspended: " + cause)
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
SyncService.java 36 private static final String TAG = "SyncService";
47 Log.i(TAG, "Service created");
61 Log.i(TAG, "Service destroyed");
  /development/samples/browseable/MessagingService/src/com.example.android.messagingservice/
MessageReadReceiver.java 26 private static final String TAG = MessageReadReceiver.class.getSimpleName();
32 Log.d(TAG, "onReceive");
35 Log.d(TAG, "Conversation " + conversationId + " was read");
  /frameworks/base/core/java/android/bluetooth/
BluetoothHealthCallback.java 28 private static final String TAG = "BluetoothHealthCallback";
45 Log.d(TAG, "onHealthAppConfigurationStatusChange: " + config + "Status: " + status);
66 Log.d(TAG, "onHealthChannelStateChange: " + config + "Device: " + device
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationAdjustmentExtractor.java 25 private static final String TAG = "AdjustmentExtractor";
30 if (DBG) Slog.d(TAG, "Initializing " + getClass().getSimpleName() + ".");
35 if (DBG) Slog.d(TAG, "skipping empty notification");
  /frameworks/base/services/core/java/com/android/server/oemlock/
VendorLock.java 36 private static final String TAG = "OemLock";
45 Slog.i(TAG, "OemLock HAL not present on device");
62 Slog.i(TAG, "Updated carrier allows OEM lock state to: " + allowed);
70 Slog.e(TAG, "Unknown return value indicates code is out of sync with HAL");
76 Slog.e(TAG, "Failed to set carrier state with HAL", e);
92 Slog.e(TAG, "Failed to get carrier state from HAL");
102 Slog.e(TAG, "Unknown return value indicates code is out of sync with HAL");
114 Slog.i(TAG, "Updated device allows OEM lock state to: " + allowedByDevice);
118 Slog.e(TAG, "Unknown return value indicates code is out of sync with HAL");
124 Slog.e(TAG, "Failed to set device state with HAL", e)
    [all...]
  /frameworks/base/tests/CameraPrewarmTest/src/com/google/android/test/cameraprewarm/
CameraActivity.java 27 public final static String TAG = "PrewarmTest";
33 Log.i(TAG, "Activity created");
34 Log.i(TAG, "Source: "
  /frameworks/base/wifi/java/android/net/wifi/aware/
PublishDiscoverySession.java 32 private static final String TAG = "PublishDiscoverySession";
56 Log.w(TAG, "updatePublish: called on terminated session");
61 Log.w(TAG, "updatePublish: called post GC on WifiAwareManager");
SubscribeDiscoverySession.java 33 private static final String TAG = "SubscribeDiscSession";
61 Log.w(TAG, "updateSubscribe: called on terminated session");
66 Log.w(TAG, "updateSubscribe: called post GC on WifiAwareManager");
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
TransportManager.java 30 private static final String TAG = TransportManager.class.getSimpleName();
44 Rlog.d(TAG, s);
48 Rlog.e(TAG, s);
  /frameworks/rs/tests/java_api/RSTest_CompatLib/src/com/android/rs/testcompat/
RSSupportLibTestsListActivity.java 25 private static final String TAG = RSSupportLibTestsListActivity.class.getSimpleName();
33 test.logStart(TAG, "RenderScript Support Library Testing");
38 test.logEnd(TAG);
  /frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/
RSTestListActivity.java 28 private static final String TAG = RSTestListActivity.class.getSimpleName();
36 test.logStart(TAG, "RenderScript Testing");
41 test.logEnd(TAG);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastBackupAgent.java 33 private static final String TAG = "CBBackupAgent";
41 Log.d(TAG, "onCreate");
47 Log.d(TAG, "Restore finished.");

Completed in 773 milliseconds

1 2 3 4 5 67 8 91011>>