Searched refs:tag (Results 1 - 25 of 272) sorted by relevance

1234567891011

/frameworks/base/core/java/com/android/internal/os/
H A DAndroidPrintStream.java29 private final String tag; field in class:AndroidPrintStream
35 * @param tag to log
37 public AndroidPrintStream(int priority, String tag) { argument
38 if (tag == null) {
39 throw new NullPointerException("tag");
43 this.tag = tag;
47 Log.println(priority, tag, line);
H A DIDropBoxManagerService.aidl38 boolean isTagEnabled(String tag);
41 DropBoxManager.Entry getNextEntry(String tag, long millis);
/frameworks/base/telephony/java/android/telephony/
H A DRlog.java36 public static int v(String tag, String msg) { argument
37 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag, msg);
40 public static int v(String tag, String msg, Throwable tr) { argument
41 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag,
45 public static int d(String tag, String msg) { argument
46 return Log.println_native(Log.LOG_ID_RADIO, Log.DEBUG, tag, msg);
49 public static int d(String tag, String msg, Throwable tr) { argument
50 return Log.println_native(Log.LOG_ID_RADIO, Log.DEBUG, tag,
54 public static int i(String tag, String msg) { argument
55 return Log.println_native(Log.LOG_ID_RADIO, Log.INFO, tag, ms
58 i(String tag, String msg, Throwable tr) argument
63 w(String tag, String msg) argument
67 w(String tag, String msg, Throwable tr) argument
72 w(String tag, Throwable tr) argument
76 e(String tag, String msg) argument
80 e(String tag, String msg, Throwable tr) argument
85 println(int priority, String tag, String msg) argument
89 isLoggable(String tag, int level) argument
[all...]
/frameworks/base/core/java/android/util/
H A DSlog.java32 public static int v(String tag, String msg) { argument
33 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag, msg);
36 public static int v(String tag, String msg, Throwable tr) { argument
37 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag,
41 public static int d(String tag, String msg) { argument
42 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag, msg);
45 public static int d(String tag, String msg, Throwable tr) { argument
46 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag,
50 public static int i(String tag, String msg) { argument
51 return Log.println_native(Log.LOG_ID_SYSTEM, Log.INFO, tag, ms
54 i(String tag, String msg, Throwable tr) argument
59 w(String tag, String msg) argument
63 w(String tag, String msg, Throwable tr) argument
68 w(String tag, Throwable tr) argument
72 e(String tag, String msg) argument
76 e(String tag, String msg, Throwable tr) argument
81 wtf(String tag, String msg) argument
85 wtfStack(String tag, String msg) argument
89 wtf(String tag, Throwable tr) argument
93 wtf(String tag, String msg, Throwable tr) argument
97 println(int priority, String tag, String msg) argument
[all...]
H A DLogPrinter.java30 * and tag.
38 * @param tag A string tag to associate with each printed log statement.
40 public LogPrinter(int priority, String tag) { argument
42 mTag = tag;
50 public LogPrinter(int priority, String tag, int buffer) { argument
52 mTag = tag;
H A DLog.java99 void onTerribleFailure(String tag, TerribleFailure what); argument
103 public void onTerribleFailure(String tag, TerribleFailure what) {
104 RuntimeInit.wtf(tag, what);
113 * @param tag Used to identify the source of a log message. It usually identifies
117 public static int v(String tag, String msg) { argument
118 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg);
123 * @param tag Used to identify the source of a log message. It usually identifies
128 public static int v(String tag, String msg, Throwable tr) { argument
129 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg + '\n' + getStackTraceString(tr));
134 * @param tag Use
138 d(String tag, String msg) argument
149 d(String tag, String msg, Throwable tr) argument
159 i(String tag, String msg) argument
170 i(String tag, String msg, Throwable tr) argument
180 w(String tag, String msg) argument
191 w(String tag, String msg, Throwable tr) argument
213 isLoggable(String tag, int level) argument
221 w(String tag, Throwable tr) argument
231 e(String tag, String msg) argument
242 e(String tag, String msg, Throwable tr) argument
255 wtf(String tag, String msg) argument
264 wtfStack(String tag, String msg) argument
274 wtf(String tag, Throwable tr) argument
285 wtf(String tag, String msg, Throwable tr) argument
289 wtf(int logId, String tag, String msg, Throwable tr, boolean localStack) argument
347 println(int priority, String tag, String msg) argument
356 println_native(int bufID, int priority, String tag, String msg) argument
[all...]
H A DEventLogTags.java38 Description(int tag, String name) { argument
39 mTag = tag;
50 public Description get(int tag) { return null; } argument
/frameworks/base/core/jni/
H A Dandroid_util_Log.h26 bool android_util_Log_isVerboseLogEnabled(const char* tag);
/frameworks/base/core/java/android/nfc/tech/
H A DNfcB.java45 * Get an instance of {@link NfcB} for the given tag.
47 * This indicates the tag does not support NFC-B.
50 * @param tag an NFC-B compatible tag
53 public static NfcB get(Tag tag) { argument
54 if (!tag.hasTech(TagTechnology.NFC_B)) return null;
56 return new NfcB(tag);
63 public NfcB(Tag tag) throws RemoteException { argument
64 super(tag, TagTechnology.NFC_B);
65 Bundle extras = tag
[all...]
H A DNfcBarcode.java41 * Get an instance of {@link NfcBarcode} for the given tag.
47 * @param tag an NfcBarcode compatible tag
50 public static NfcBarcode get(Tag tag) { argument
51 if (!tag.hasTech(TagTechnology.NFC_BARCODE)) return null;
53 return new NfcBarcode(tag);
63 public NfcBarcode(Tag tag) throws RemoteException { argument
64 super(tag, TagTechnology.NFC_BARCODE);
65 Bundle extras = tag.getTechExtras(TagTechnology.NFC_BARCODE);
74 * Returns the NFC Barcode tag typ
[all...]
H A DNfcV.java46 * Get an instance of {@link NfcV} for the given tag.
48 * This indicates the tag does not support NFC-V.
51 * @param tag an NFC-V compatible tag
54 public static NfcV get(Tag tag) { argument
55 if (!tag.hasTech(TagTechnology.NFC_V)) return null;
57 return new NfcV(tag);
64 public NfcV(Tag tag) throws RemoteException { argument
65 super(tag, TagTechnology.NFC_V);
66 Bundle extras = tag
[all...]
/frameworks/base/services/java/com/android/server/firewall/
H A DFilterFactory.java27 protected FilterFactory(String tag) { argument
28 if (tag == null) {
31 mTag = tag;
/frameworks/support/v4/ics/android/support/v4/net/
H A DTrafficStatsCompatIcs.java40 public static void incrementOperationCount(int tag, int operationCount) { argument
41 TrafficStats.incrementOperationCount(tag, operationCount);
44 public static void setThreadStatsTag(int tag) { argument
45 TrafficStats.setThreadStatsTag(tag);
/frameworks/av/include/camera/
H A DCameraMetadata.h126 status_t update(uint32_t tag,
128 status_t update(uint32_t tag,
130 status_t update(uint32_t tag,
132 status_t update(uint32_t tag,
134 status_t update(uint32_t tag,
136 status_t update(uint32_t tag,
138 status_t update(uint32_t tag,
142 status_t update(uint32_t tag, Vector<T> data) { argument
143 return update(tag, data.array(), data.size());
147 * Check if a metadata entry exists for a given tag i
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifReader.java48 ExifTag tag = null;
57 tag = parser.getTag();
58 if (!tag.hasValue()) {
59 parser.registerForTagValue(tag);
61 exifData.getIfdData(tag.getIfd()).setTag(tag);
65 tag = parser.getTag();
66 if (tag.getDataType() == ExifTag.TYPE_UNDEFINED) {
67 parser.readFullTagValue(tag);
69 exifData.getIfdData(tag
[all...]
H A DIfdData.java75 * Gets the {@link ExifTag} with given tag id. Return null if there is no
76 * such tag.
85 protected ExifTag setTag(ExifTag tag) { argument
86 tag.setIfd(mIfdId);
87 return mExifTags.put(tag.getTagId(), tag);
95 * Removes the tag of the given ID
138 for (ExifTag tag : tags) {
139 if (ExifInterface.isOffsetTag(tag.getTagId())) {
142 ExifTag tag2 = mExifTags.get(tag
[all...]
/frameworks/base/core/java/android/content/
H A DUndoOwner.java35 UndoOwner(String tag) { argument
36 mTag = tag;
40 * Return the unique tag name identifying this owner. This is the tag
/frameworks/base/core/java/android/nfc/
H A DIAppCallback.aidl29 void onTagDiscovered(in Tag tag);
/frameworks/base/core/java/android/os/
H A DIUpdateLock.aidl25 void acquireUpdateLock(IBinder token, String tag);
H A DDropBoxManager.java73 * string containing the dropbox tag.
75 public static final String EXTRA_TAG = "tag";
98 public Entry(String tag, long millis) { argument
99 if (tag == null) throw new NullPointerException("tag == null");
101 mTag = tag;
109 public Entry(String tag, long millis, String text) { argument
110 if (tag == null) throw new NullPointerException("tag == null");
113 mTag = tag;
124 Entry(String tag, long millis, byte[] data, int flags) argument
141 Entry(String tag, long millis, ParcelFileDescriptor data, int flags) argument
158 Entry(String tag, long millis, File data, int flags) argument
271 addText(String tag, String data) argument
282 addData(String tag, byte[] data, int flags) argument
296 addFile(String tag, File file, int flags) argument
316 isTagEnabled(String tag) argument
329 getNextEntry(String tag, long msec) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DMacAuthenticatedInputStream.java27 * the end of the data that should be authenticated, the tag can be calculated.
41 public boolean isTagEqual(byte[] tag) { argument
44 if (tag == null || actualTag == null || tag.length != actualTag.length) {
54 for (int i = 0; i < tag.length; i++) {
55 value |= tag[i] ^ actualTag[i];
/frameworks/support/v4/java/android/support/v4/net/
H A DTrafficStatsCompat.java34 void incrementOperationCount(int tag, int operationCount); argument
35 void setThreadStatsTag(int tag); argument
67 public void incrementOperationCount(int tag, int operationCount) { argument
71 public void setThreadStatsTag(int tag) { argument
72 mThreadSocketTags.get().statsTag = tag;
101 public void incrementOperationCount(int tag, int operationCount) { argument
102 TrafficStatsCompatIcs.incrementOperationCount(tag, operationCount);
106 public void setThreadStatsTag(int tag) { argument
107 TrafficStatsCompatIcs.setThreadStatsTag(tag);
132 * Clear active tag use
166 incrementOperationCount(int tag, int operationCount) argument
181 setThreadStatsTag(int tag) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DBerTlv.java38 private BerTlv(int tag, List<ComprehensionTlv> ctlvs, boolean lengthValid) { argument
39 mTag = tag;
54 * Gets a tag id of the BER-TLV object.
56 * @return A tag integer.
81 int tag, length = 0;
85 /* tag */
86 tag = data[curIndex++] & 0xff;
87 if (tag == BER_PROACTIVE_COMMAND_TAG) {
105 "Expected first byte to be length or a length tag and < 0x81" +
110 if (ComprehensionTlvTag.COMMAND_DETAILS.value() == (tag
[all...]
/frameworks/av/camera/
H A DCameraMetadata.cpp168 status_t CameraMetadata::checkType(uint32_t tag, uint8_t expectedType) { argument
169 int tagType = get_camera_metadata_tag_type(tag);
171 ALOGE("Update metadata entry: Unknown tag %d", tag);
175 ALOGE("Mismatched tag type when updating entry %s (%d) of type %s; "
177 get_camera_metadata_tag_name(tag), tag,
185 status_t CameraMetadata::update(uint32_t tag, argument
192 if ( (res = checkType(tag, TYPE_INT32)) != OK) {
195 return updateImpl(tag, (cons
198 update(uint32_t tag, const uint8_t *data, size_t data_count) argument
211 update(uint32_t tag, const float *data, size_t data_count) argument
224 update(uint32_t tag, const int64_t *data, size_t data_count) argument
237 update(uint32_t tag, const double *data, size_t data_count) argument
250 update(uint32_t tag, const camera_metadata_rational_t *data, size_t data_count) argument
263 update(uint32_t tag, const String8 &string) argument
276 updateImpl(uint32_t tag, const void *data, size_t data_count) argument
327 find(uint32_t tag) argument
354 erase(uint32_t tag) argument
[all...]
/frameworks/base/core/java/android/service/notification/
H A DStatusBarNotification.java31 private final String tag; field in class:StatusBarNotification
43 public StatusBarNotification(String pkg, int id, String tag, int uid, int initialPid, int score, argument
45 this(pkg, null, id, tag, uid, initialPid, score, notification, user);
49 public StatusBarNotification(String pkg, String basePkg, int id, String tag, int uid, argument
51 this(pkg, basePkg, id, tag, uid, initialPid, score, notification, user,
55 public StatusBarNotification(String pkg, String basePkg, int id, String tag, int uid, argument
64 this.tag = tag;
80 this.tag = in.readString();
82 this.tag
[all...]

Completed in 547 milliseconds

1234567891011