Searched defs:tag (Results 101 - 125 of 242) sorted by relevance

12345678910

/frameworks/base/core/java/android/net/http/
H A DAndroidHttpClient.java346 * Logging tag and level.
350 private final String tag; field in class:AndroidHttpClient.LoggingConfiguration
353 private LoggingConfiguration(String tag, int level) { argument
354 this.tag = tag;
362 return Log.isLoggable(tag, level);
369 Log.println(level, tag, message);
/frameworks/base/core/java/android/nfc/
H A DNfcActivityManager.java431 public void onTagDiscovered(Tag tag) throws RemoteException { argument
442 callback.onTagDiscovered(tag);
/frameworks/base/core/java/android/nfc/tech/
H A DMifareClassic.java67 * {@link NfcA} will also be enumerated on the tag, because all MIFARE Classic tags are also
96 /** A MIFARE Classic tag */
98 /** A MIFARE Plus tag */
100 /** A MIFARE Pro tag */
126 * Get an instance of {@link MifareClassic} for the given tag.
129 * This indicates the tag is not MIFARE Classic compatible, or this Android
132 * @param tag an MIFARE Classic compatible tag
135 public static MifareClassic get(Tag tag) { argument
136 if (!tag
145 MifareClassic(Tag tag) argument
[all...]
H A DNdef.java40 * on a tag.
42 * <p>There are currently four NFC Forum standardized tag types that can be
133 * Get an instance of {@link Ndef} for the given tag.
136 * This indicates the tag is not NDEF formatted, or that this tag
142 * @param tag an NDEF compatible tag
145 public static Ndef get(Tag tag) { argument
146 if (!tag.hasTech(TagTechnology.NDEF)) return null;
148 return new Ndef(tag);
158 Ndef(Tag tag) argument
[all...]
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java70 * string containing the dropbox tag.
72 public static final String EXTRA_TAG = "tag";
95 public Entry(String tag, long millis) { argument
96 if (tag == null) throw new NullPointerException("tag == null");
98 mTag = tag;
106 public Entry(String tag, long millis, String text) { argument
107 if (tag == null) throw new NullPointerException("tag == null");
110 mTag = tag;
121 Entry(String tag, long millis, byte[] data, int flags) argument
138 Entry(String tag, long millis, ParcelFileDescriptor data, int flags) argument
155 Entry(String tag, long millis, File data, int flags) argument
268 addText(String tag, String data) argument
279 addData(String tag, byte[] data, int flags) argument
293 addFile(String tag, File file, int flags) argument
313 isTagEnabled(String tag) argument
326 getNextEntry(String tag, long msec) argument
[all...]
H A DTrace.java86 private static native void nativeTraceCounter(long tag, String name, int value); argument
87 private static native void nativeTraceBegin(long tag, String name); argument
88 private static native void nativeTraceEnd(long tag); argument
89 private static native void nativeAsyncTraceBegin(long tag, String name, int cookie); argument
90 private static native void nativeAsyncTraceEnd(long tag, String name, int cookie); argument
114 * Caches a copy of the enabled-tag bits. The "master" copy is held by the native code,
134 * Returns true if a trace tag is enabled.
136 * @param traceTag The trace tag to check.
137 * @return True if the trace tag is valid.
152 * @param traceTag The trace tag
[all...]
/frameworks/base/core/java/android/util/
H A DEventLog.java40 * <p>Events use integer tag codes corresponding to /system/etc/event-log-tags.
100 /** @return the type tag code of the entry */
117 mBuffer.position(offset + DATA_OFFSET); // Just after the tag.
120 Log.wtf(TAG, "Illegal entry payload: tag=" + getTag(), e);
123 Log.wtf(TAG, "Truncated entry payload: tag=" + getTag(), e);
166 * @param tag The event type tag code
170 public static native int writeEvent(int tag, int value); argument
174 * @param tag The event type tag cod
178 writeEvent(int tag, long value) argument
186 writeEvent(int tag, String str) argument
194 writeEvent(int tag, Object... list) argument
210 getTagName(int tag) argument
[all...]
H A DLog.java99 void onTerribleFailure(String tag, TerribleFailure what, boolean system); argument
103 public void onTerribleFailure(String tag, TerribleFailure what, boolean system) {
104 RuntimeInit.wtf(tag, what, system);
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, boolean system) argument
298 wtfQuiet(int logId, String tag, String msg, boolean system) argument
353 println(int priority, String tag, String msg) argument
363 println_native(int bufID, int priority, String tag, String msg) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DRuntimeInit.java58 private static int Clog_e(String tag, String msg, Throwable tr) { argument
59 return Log.println_native(Log.LOG_ID_CRASH, Log.ERROR, tag,
338 * @param tag to record with the error
341 public static void wtf(String tag, Throwable t, boolean system) { argument
344 mApplicationObject, tag, system, new ApplicationErrorReport.CrashInfo(t))) {
/frameworks/base/core/jni/android/graphics/
H A DHarfBuzzNGFaceSkia.cpp138 hb_blob_t* harfbuzzSkiaReferenceTable(hb_face_t* face, hb_tag_t tag, void* userData) argument
142 const size_t tableSize = typeface->getTableSize(tag);
149 size_t actualSize = typeface->getTableData(tag, 0, tableSize, buffer);
/frameworks/base/core/jni/
H A Dandroid_net_TrafficStats.cpp130 uint64_t tag, rxBytes, rxPackets, txBytes, txPackets; local
136 &idx, iface, &tag, &cur_uid, &set, &rxBytes, &rxPackets,
138 if (uid == cur_uid && tag == 0L) {
H A Dandroid_util_EventLog.cpp26 // The size of the tag number comes out of the payload size.
47 * static native int writeEvent(int tag, int value)
51 jint tag, jint value)
53 return android_btWriteLog(tag, EVENT_TYPE_INT, &value, sizeof(value));
58 * static native int writeEvent(long tag, long value)
62 jint tag, jlong value)
64 return android_btWriteLog(tag, EVENT_TYPE_LONG, &value, sizeof(value));
69 * static native int writeEvent(int tag, String value)
73 jint tag, jstring value) {
89 return android_bWriteLog(tag, bu
49 android_util_EventLog_writeEvent_Integer(JNIEnv* env UNUSED, jobject clazz UNUSED, jint tag, jint value) argument
60 android_util_EventLog_writeEvent_Long(JNIEnv* env UNUSED, jobject clazz UNUSED, jint tag, jlong value) argument
71 android_util_EventLog_writeEvent_String(JNIEnv* env, jobject clazz UNUSED, jint tag, jstring value) argument
96 android_util_EventLog_writeEvent_Array(JNIEnv* env, jobject clazz, jint tag, jobjectArray value) argument
191 int32_t tag = * (int32_t *) log_msg.msg(); local
[all...]
H A Dcom_android_internal_net_NetworkStatsFactory.cpp44 jfieldID tag; member in struct:android::__anon882
56 int32_t tag; member in struct:android::stats_line
182 // Find end of tag field
191 ALOGE("bad tag: %s", pos);
196 s.tag = rawTag >> 32;
197 if (limitTag != -1 && s.tag != limitTag) {
198 //ALOGI("skipping due to tag: %s", buffer);
237 ScopedIntArrayRW tag(env, get_int_array(env, stats,
238 gNetworkStatsClassInfo.tag, size, grow));
239 if (tag
[all...]
/frameworks/base/core/tests/coretests/src/android/text/
H A DTextUtilsTest.java502 public int getSpanStart(Object tag) { argument
507 public int getSpanEnd(Object tag) { argument
508 return nonEmptySpans.contains(tag) ? 1 : 0;
512 public int getSpanFlags(Object tag) { argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGLEnvironment.java40 private GLEnvironment(NativeAllocatorTag tag) { argument
/frameworks/base/obex/javax/obex/
H A DApplicationParameter.java116 public void addAPPHeader(byte tag, byte len, byte[] value) { argument
123 mArray[mLength++] = tag;
H A DObexHelper.java830 * Retrieves the value from the byte array for the tag value specified. The
832 * @param tag the tag to retrieve from the byte array
833 * @param triplet the byte sequence containing the tag length value form
834 * @return the value of the specified tag
836 public static byte[] getTagValue(byte tag, byte[] triplet) { argument
838 int index = findTag(tag, triplet);
854 * Finds the index that starts the tag value pair in the byte array provide.
855 * @param tag the tag t
859 findTag(byte tag, byte[] value) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DNotificationPlayer.java264 * @param tag a string to use for debugging
266 public NotificationPlayer(String tag) { argument
267 if (tag != null) {
268 mTag = tag;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDetailItems.java244 public Object tag; field in class:QSDetailItems.Item
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DGestureRecorder.java79 public String tag, info; field in class:GestureRecorder.Gesture.TagRecord
80 public TagRecord(long when, String tag, String info) { argument
82 this.tag = tag;
86 return String.format("{\"type\":\"tag\", \"time\":%d, \"tag\":\"%s\", \"info\":\"%s\"}",
88 this.tag,
114 public void tag(long when, String tag, String info) { argument
115 mRecords.add(new TagRecord(when, tag, inf
171 tag(long when, String tag, String info) argument
182 tag(long when, String tag) argument
186 tag(String tag) argument
190 tag(String tag, String info) argument
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifData.java156 * Returns the tag with a given TID in the given IFD if the tag exists.
159 protected ExifTag getTag(short tag, int ifd) { argument
161 return (ifdData == null) ? null : ifdData.getTag(tag);
168 protected ExifTag addTag(ExifTag tag) { argument
169 if (tag != null) {
170 int ifd = tag.getIfd();
171 return addTag(tag, ifd);
180 protected ExifTag addTag(ExifTag tag, int ifdId) { argument
181 if (tag !
300 getAllTagsForTagId(short tag) argument
[all...]
H A DExifOutputStream.java156 // until SOF tag.
162 short tag = mBuffer.getShort();
163 if (tag == JpegHeader.EOI) {
285 for (ExifTag tag : tags) {
286 dataOutputStream.writeShort(tag.getTagId());
287 dataOutputStream.writeShort(tag.getDataType());
288 dataOutputStream.writeInt(tag.getComponentCount());
290 Log.v(TAG, "\n" + tag.toString());
292 if (tag.getDataSize() > 4) {
293 dataOutputStream.writeInt(tag
480 writeTagValue(ExifTag tag, OrderedDataOutputStream dataOutputStream) argument
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DBarController.java62 public BarController(String tag, int transientFlag, int unhideFlag, int translucentFlag, argument
64 mTag = "BarController." + tag;
/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java77 // per tag (or even globally) instead.
181 final String tag = entry.getTag();
187 if (!isTagEnabled(tag)) return;
238 Slog.w(TAG, "Dropping: " + tag + " (" + temp.length() + " > " + max + " bytes)");
245 long time = createEntry(temp, tag, flags);
249 dropboxIntent.putExtra(DropBoxManager.EXTRA_TAG, tag);
260 Slog.e(TAG, "Can't write: " + tag, e);
268 public boolean isTagEnabled(String tag) { argument
272 mContentResolver, Settings.Global.DROPBOX_TAG_PREFIX + tag));
278 public synchronized DropBoxManager.Entry getNextEntry(String tag, lon argument
468 public final String tag; field in class:DropBoxManagerService.EntryFile
497 EntryFile(File temp, File dir, String tag,long timestampMillis, int flags, int blockSize) argument
521 EntryFile(File dir, String tag, long timestampMillis) argument
653 createEntry(File temp, String tag, int flags) argument
[all...]
/frameworks/base/services/core/java/com/android/server/firewall/
H A DStringFilter.java128 protected ValueProvider(String tag) { argument
129 super(tag);

Completed in 941 milliseconds

12345678910