HomeSort by relevance Sort by last modified time
    Searched refs:TAG (Results 1 - 25 of 1008) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_info.java 31 * Returns the tag byte for this CONSTANT type [this data is
34 public abstract byte tag (); method in class:CONSTANT_info
63 byte tag = bytes.readByte ();
65 switch (tag)
67 case CONSTANT_Utf8_info.TAG:
70 case CONSTANT_Integer_info.TAG:
73 case CONSTANT_Float_info.TAG:
76 case CONSTANT_Long_info.TAG:
79 case CONSTANT_Double_info.TAG:
83 case CONSTANT_Class_info.TAG
130 out.writeByte (tag ()); method
    [all...]
  /cts/tests/SignatureTest/src/android/tests/sigtest/
SignatureTestLog.java 22 private static final String TAG = "CTSSignatureTest";
25 Log.e(TAG, msg, e);
29 Log.d(TAG, msg);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
AuthenticationService.java 29 private static final String TAG = "AuthenticationService";
34 if (Log.isLoggable(TAG, Log.VERBOSE)) {
35 Log.v(TAG, "SampleSyncAdapter Authentication Service started.");
42 if (Log.isLoggable(TAG, Log.VERBOSE)) {
43 Log.v(TAG, "SampleSyncAdapter Authentication Service stopped.");
49 if (Log.isLoggable(TAG, Log.VERBOSE)) {
50 Log.v(TAG,
  /packages/apps/IM/src/com/android/im/app/adapter/
ChatListenerAdapter.java 31 private static final String TAG = ImApp.LOG_TAG;
34 if (Log.isLoggable(TAG, Log.DEBUG)) {
35 Log.d(TAG, "onContactJoined(" + ses + ", " + contact + ")");
40 if (Log.isLoggable(TAG, Log.DEBUG)) {
41 Log.d(TAG, "onContactLeft(" + ses + ", " + contact + ")");
46 if (Log.isLoggable(TAG, Log.DEBUG)) {
47 Log.d(TAG, "onIncomingMessage(" + ses + ", " + msg + ")");
53 if (Log.isLoggable(TAG, Log.DEBUG)) {
54 Log.d(TAG, "onSendMessageError(" + ses + ", " + msg + ", " + error + ")");
59 if (Log.isLoggable(TAG, Log.DEBUG))
    [all...]
ContactListListenerAdapter.java 31 private static final String TAG = ImApp.LOG_TAG;
41 if (Log.isLoggable(TAG, Log.DEBUG)) {
42 Log.d(TAG, "onContactListChanged(" + type + ", " + list + ", "
48 if (Log.isLoggable(TAG, Log.DEBUG)) {
49 Log.d(TAG, "onAllContactListsLoaded");
54 if (Log.isLoggable(TAG, Log.DEBUG)) {
55 Log.d(TAG, "onContactsPresenceUpdate(" + contacts.length + ")");
61 if (Log.isLoggable(TAG, Log.DEBUG)) {
62 Log.d(TAG, "onContactError(" + errorType + ", " + error + ", "
ChatSessionListenerAdapter.java 29 private static final String TAG = ImApp.LOG_TAG;
32 if (Log.isLoggable(TAG, Log.DEBUG)) {
33 Log.d(TAG, "notifyChatSessionCreated(" + session + ")");
38 if (Log.isLoggable(TAG, Log.DEBUG)) {
39 Log.d(TAG, "notifyChatSessionCreateError(" + name + ", " + error + ")");
ConnectionListenerAdapter.java 30 private static final String TAG = ImApp.LOG_TAG;
38 if (Log.isLoggable(TAG, Log.DEBUG)) {
39 Log.d(TAG, "onConnectionStateChange(" + state + ", " + error + ")");
44 if (Log.isLoggable(TAG, Log.DEBUG)) {
45 Log.d(TAG, "onUpdateSelfPresenceError(" + error + ")");
50 if (Log.isLoggable(TAG, Log.DEBUG)) {
51 Log.d(TAG, "onSelfPresenceUpdated()");
  /frameworks/base/core/java/android/bluetooth/
BluetoothHeadset.java 56 private static final String TAG = "BluetoothHeadset";
161 Log.e(TAG, "Could not bind to Bluetooth Headset Service");
197 } catch (RemoteException e) {Log.e(TAG, e.toString());}
199 Log.w(TAG, "Proxy not attached to service");
200 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
216 } catch (RemoteException e) {Log.e(TAG, e.toString());}
218 Log.w(TAG, "Proxy not attached to service");
219 if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
243 } catch (RemoteException e) {Log.e(TAG, e.toString());}
245 Log.w(TAG, "Proxy not attached to service")
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppRfcommListener.java 50 private static final String TAG = "BtOppRfcommListener";
89 mSocketAcceptThread = new Thread(TAG) {
94 if (V) Log.v(TAG, "Create TCP ServerSocket");
97 Log.e(TAG, "Error listing on port" + Constants.TCP_DEBUG_PORT);
104 if (V) Log.v(TAG, "Socket connected!");
113 Log.e(TAG, "Error accept connection " + e);
116 if (V) Log.v(TAG, "TCP listen thread finished");
129 Log.e(TAG, "Error create RfcommServerSocket " + e1);
135 if (V) Log.v(TAG, "wait 3 seconds");
138 Log.e(TAG, "socketAcceptThread thread was interrupted (3)")
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/picasa/
PicasaReceiver.java 26 private static final String TAG = "PicasaRecevier";
30 Log.e(TAG, "Accounts changed: " + intent);
  /packages/apps/IM/src/com/android/im/imps/
ImpsLog.java 28 public static final String TAG = "IMPS";
66 Log.e(TAG, e.getMessage(), e);
68 Log.e(TAG, e.getMessage(), e);
70 Log.i(TAG, out.toString());
76 Log.d(TAG, /* DateFormat.format("kk:mm:ss ", new Date()) + */ info);
81 Log.e(TAG, /* DateFormat.format("kk:mm:ss", new Date()).toString() */ "", t);
85 Log.e(TAG, /* DateFormat.format("kk:mm:ss ", new Date()) + */ info, t);
89 Log.e(TAG, /* DateFormat.format("kk:mm:ss ", new Date()) + */ info);
  /frameworks/base/core/java/android/accounts/
AbstractAccountAuthenticator.java 110 private static final String TAG = "AccountAuthenticator";
122 if (Log.isLoggable(TAG, Log.VERBOSE)) {
123 Log.v(TAG, "addAccount: accountType " + accountType
132 if (Log.isLoggable(TAG, Log.VERBOSE)) {
134 Log.v(TAG, "addAccount: result " + AccountManager.sanitizeResult(result));
140 if (Log.isLoggable(TAG, Log.VERBOSE)) {
141 Log.v(TAG, "addAccount", e);
145 if (Log.isLoggable(TAG, Log.VERBOSE)) {
146 Log.v(TAG, "addAccount", e);
155 if (Log.isLoggable(TAG, Log.VERBOSE))
    [all...]
AccountAuthenticatorResponse.java 29 private static final String TAG = "AccountAuthenticator";
46 if (Log.isLoggable(TAG, Log.VERBOSE)) {
48 Log.v(TAG, "AccountAuthenticatorResponse.onResult: "
59 if (Log.isLoggable(TAG, Log.VERBOSE)) {
60 Log.v(TAG, "AccountAuthenticatorResponse.onRequestContinued");
70 if (Log.isLoggable(TAG, Log.VERBOSE)) {
71 Log.v(TAG, "AccountAuthenticatorResponse.onError: " + errorCode + ", " + errorMessage);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaMetadataRetrieverTest.java 35 private static final String TAG = "MediaMetadataRetrieverTest";
40 Log.v(TAG, "testAlbumArt starts.");
48 Log.v(TAG, "File " + i + ": " + MediaNames.ALBUMART_TEST_FILES[i]);
52 Log.v(TAG, "windows media is not supported and thus we will skip the test for this file");
62 Log.e(TAG, "Fails to extract album art for " + MediaNames.ALBUMART_TEST_FILES[i]);
66 Log.e(TAG, "Fails to setDataSource for " + MediaNames.ALBUMART_TEST_FILES[i]);
72 Log.v(TAG, "testAlbumArt completes.");
83 Log.v(TAG, "Thumbnail processing starts");
87 Log.v(TAG, "File " + i + ": " + MediaNames.THUMBNAIL_CAPTURE_TEST_FILES[i]);
91 Log.v(TAG, "windows media is not supported and thus we will skip the test for this file")
    [all...]
  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 43 private static final String TAG = "PackageHelper";
54 Log.e(TAG, "Can't get mount service");
70 if (localLOGV) Log.i(TAG, "Size of container " + mbLen + " MB " + len + " bytes");
76 Log.e(TAG, "Failed to create secure container " + cid);
80 if (localLOGV) Log.i(TAG, "Created secure container " + cid +
84 Log.e(TAG, "MountService running?");
93 Log.i(TAG, "Failed to mount container " + cid + " rc : " + rc);
98 Log.e(TAG, "MountService running?");
107 Log.e(TAG, "Failed to unmount " + cid + " with rc " + rc);
112 Log.e(TAG, "MountService running?")
    [all...]
  /frameworks/base/services/java/com/android/server/
MasterClearReceiver.java 29 private static final String TAG = "MasterClear";
35 Slog.w(TAG, "Ignoring master clear request -- not from trusted server.");
41 Slog.w(TAG, "!!! FACTORY RESET !!!");
43 Log.wtf(TAG, "Still running after master clear?!");
45 Slog.e(TAG, "Can't perform master clear/factory reset", e);
SystemServer.java 53 private static final String TAG = "SystemServer";
106 Slog.i(TAG, "Entropy Service");
109 Slog.i(TAG, "Power Manager");
113 Slog.i(TAG, "Activity Manager");
116 Slog.i(TAG, "Telephony Registry");
121 Slog.i(TAG, "Package Manager");
131 Slog.i(TAG, "Account Manager");
135 Slog.e(TAG, "Failure starting Account Manager", e);
138 Slog.i(TAG, "Content Manager");
142 Slog.i(TAG, "System Content Providers")
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AdtConsoleSdkLog.java 27 private static final String TAG = "SDK Manager"; //$NON-NLS-1$
31 AdtPlugin.logAndPrintError(t, TAG, "Error: " + errorFormat, args);
33 AdtPlugin.printErrorToConsole(TAG, String.format(errorFormat, args));
41 AdtPlugin.printToConsole(TAG, s);
47 AdtPlugin.printToConsole(TAG, String.format("Warning: " + warningFormat, args));
  /development/apps/Development/src/com/android/development/
BadBehaviorActivity.java 39 private static final String TAG = "BadBehaviorActivity";
51 Log.i(TAG, "in broadcast receiver -- about to hang");
52 try { Thread.sleep(20000); } catch (InterruptedException e) { Log.wtf(TAG, e); }
53 Log.i(TAG, "broadcast receiver hang finished -- returning");
65 Log.i(TAG, "in service start -- about to hang");
66 try { Thread.sleep(30000); } catch (InterruptedException e) { Log.wtf(TAG, e); }
67 Log.i(TAG, "service hang finished -- stopping and returning");
82 Log.e(TAG, "Can't call IActivityManager.setActivityController", e);
86 Log.i(TAG, "in activity controller -- about to hang");
87 try { Thread.sleep(mDelay); } catch (InterruptedException e) { Log.wtf(TAG, e);
    [all...]
  /packages/providers/DrmProvider/src/com/android/providers/drm/
DrmPushReceiver.java 33 private static final String TAG = "DrmPushReceiver";
45 Log.e(TAG, "The rights data is invalid.");
54 Log.e(TAG, "Install drm rights failed.");
57 Log.e(TAG, "IOException occurs when install drm rights.");
61 Log.d(TAG, "Install drm rights successfully.");
64 Log.d(TAG, "This is not drm rights push mimetype.");
66 Log.d(TAG, "This is not wap push received action.");
  /frameworks/base/core/java/com/google/android/mms/util/
AbstractCache.java 26 private static final String TAG = "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/
PreferenceCategory.java 29 private static final String TAG = "PreferenceCategory";
47 "Cannot add a " + TAG + " directly to a " + TAG);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
CameraTest.java 43 private String TAG = "CameraTest";
79 Log.v(TAG, "start looper");
85 Log.v(TAG, "start loopRun");
92 Log.v(TAG, "initializeMessageLooper: quit.");
118 Log.v(TAG, "Preview callback start");
129 Log.v(TAG, "Preview callback stop");
137 Log.v(TAG, "onShutter called");
146 Log.v(TAG, "RawPictureCallback callback");
159 Log.v(TAG, "JpegPictureCallback rawDataLength = " + rawDataLength);
165 Log.v(TAG, "Jpeg Picture callback")
    [all...]
  /frameworks/base/core/java/android/app/admin/
DevicePolicyManager.java 43 private static String TAG = "DevicePolicyManager";
128 Log.w(TAG, "Failed talking with device policy service", e);
144 Log.w(TAG, "Failed talking with device policy service", e);
158 Log.w(TAG, "Failed talking with device policy service", e);
175 Log.w(TAG, "Failed talking with device policy service", e);
246 Log.w(TAG, "Failed talking with device policy service", e);
262 Log.w(TAG, "Failed talking with device policy service", e);
294 Log.w(TAG, "Failed talking with device policy service", e);
310 Log.w(TAG, "Failed talking with device policy service", e);
344 Log.w(TAG, "Failed talking with device policy service", e)
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 44 private String TAG = "MediaRecorderStressTest";
93 Log.v(TAG, "start looper");
99 Log.v(TAG, "start loopRun");
106 Log.v(TAG, "initializeMessageLooper: quit.");
112 Log.v(TAG, "start looper");
117 Log.v(TAG, "start loopRun");
124 Log.v(TAG, "initializeMessageLooper: quit.");
137 Log.v(TAG, e.toString());
150 Log.v(TAG, e.toString());
166 Log.v(TAG, "Start preview")
    [all...]

Completed in 646 milliseconds

1 2 3 4 5 6 7 8 91011>>