Searched refs:tag (Results 26 - 50 of 451) sorted by relevance

1234567891011>>

/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...]
H A DExifParser.java46 * ExifTag tag = parser.getTag();
47 * if (!tag.hasValue()) {
48 * parser.registerForTagValue(tag);
50 * processTag(tag);
54 * tag = parser.getTag();
55 * if (tag.getDataType() != ExifTag.TYPE_UNDEFINED) {
56 * processTag(tag);
64 * void processTag(ExifTag tag) {
65 * // process the tag as you like.
78 * When the parser reaches a new tag
512 registerForTagValue(ExifTag tag) argument
585 checkOffsetOrImageTag(ExifTag tag) argument
645 readFullTagValue(ExifTag tag) argument
901 ExifTag tag; field in class:ExifParser.ExifTagEvent
904 ExifTagEvent(ExifTag tag, boolean isRequireByUser) argument
[all...]
/frameworks/base/core/java/android/os/
H A DIUpdateLock.aidl25 void acquireUpdateLock(IBinder token, String tag);
H A DDropBoxManager.java75 * string containing the dropbox tag.
77 public static final String EXTRA_TAG = "tag";
100 public Entry(String tag, long millis) { argument
101 if (tag == null) throw new NullPointerException("tag == null");
103 mTag = tag;
111 public Entry(String tag, long millis, String text) { argument
112 if (tag == null) throw new NullPointerException("tag == null");
115 mTag = tag;
126 Entry(String tag, long millis, byte[] data, int flags) argument
143 Entry(String tag, long millis, ParcelFileDescriptor data, int flags) argument
160 Entry(String tag, long millis, File data, int flags) argument
280 addText(String tag, String data) argument
300 addData(String tag, byte[] data, int flags) argument
323 addFile(String tag, File file, int flags) argument
343 isTagEnabled(String tag) argument
360 getNextEntry(String tag, long msec) argument
[all...]
H A DTokenWatcher.java40 * @param tag A debugging tag for this TokenWatcher
42 public TokenWatcher(Handler h, String tag) argument
45 mTag = tag != null ? tag : "TokenWatcher";
65 * @param tag A string used by the {@link #dump} method for debugging,
68 public void acquire(IBinder token, String tag) argument
75 Death d = new Death(token, tag);
140 a.add("[" + i + "] " + mTokens.get(b).tag + " - " + b);
183 String tag; field in class:TokenWatcher.Death
185 Death(IBinder token, String tag) argument
[all...]
/frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
H A DAsn1ID.java7 public Asn1ID(int tag, Asn1Class asn1Class) { argument
8 mTag = tag;
H A DAsn1Decoder.java82 public static Asn1Tag mapTag(int tag) { argument
83 return sTagMap.get(tag);
105 int tag = decodeTag(data);
111 new Asn1Constructed(tag, asn1Class, length, payload, tagPosition);
119 parent.addChild(new Asn1Octets(tag, asn1Class, length, data));
121 parent.addChild(buildScalar(tag, asn1Class, length, data));
137 private static Asn1Object buildScalar(int tag, Asn1Class asn1Class, int length, ByteBuffer data) argument
139 switch (tag) {
141 return new Asn1Boolean(tag, asn1Class, length, data);
144 return new Asn1Integer(tag, asn1Clas
[all...]
H A DAsn1Octets.java10 public Asn1Octets(int tag, Asn1Class asn1Class, int length, ByteBuffer data) { argument
11 super(tag, asn1Class, false, length);
17 public Asn1Octets(int tag, Asn1Class asn1Class, int length, ByteBuffer data, int bitResidual) { argument
18 super(tag, asn1Class, false, length);
/frameworks/av/camera/ndk/impl/
H A DACameraMetadata.h49 camera_status_t getConstEntry(uint32_t tag, ACameraMetadata_const_entry* entry) const;
51 camera_status_t update(uint32_t tag, uint32_t count, const uint8_t* data);
52 camera_status_t update(uint32_t tag, uint32_t count, const int32_t* data);
53 camera_status_t update(uint32_t tag, uint32_t count, const float* data);
54 camera_status_t update(uint32_t tag, uint32_t count, const double* data);
55 camera_status_t update(uint32_t tag, uint32_t count, const int64_t* data);
56 camera_status_t update(uint32_t tag, uint32_t count, const ACameraMetadata_rational* data);
62 static inline bool isVendorTag(const uint32_t tag);
63 static bool isCaptureRequestTag(const uint32_t tag);
70 camera_status_t updateImpl(uint32_t tag, uint32_ 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/base/core/jni/
H A Dandroid_util_Log.cpp18 #define LOG_NAMESPACE "log.tag."
46 static jboolean isLoggable(const char* tag, jint level) { argument
47 return __android_log_is_loggable(level, tag, ANDROID_LOG_INFO);
50 static jboolean android_util_Log_isLoggable(JNIEnv* env, jobject clazz, jstring tag, jint level) argument
52 if (tag == NULL) {
56 const char* chars = env->GetStringUTFChars(tag, NULL);
64 snprintf(buf2, sizeof(buf2), "Log tag \"%s\" exceeds limit of %zu characters\n",
72 env->ReleaseStringUTFChars(tag, chars);
76 bool android_util_Log_isVerboseLogEnabled(const char* tag) { argument
77 return isLoggable(tag, level
87 const char* tag = NULL; local
[all...]
/frameworks/av/include/camera/ndk/
H A DNdkCaptureRequest.h147 * @param tag the tag value of the camera metadata entry to be get.
155 * entry of input tag value.</li></ul>
158 const ACaptureRequest* request, uint32_t tag, ACameraMetadata_const_entry* entry);
165 * @param tags the tag values of the metadata entries. Length of tags is returned in numEntries
184 * <p>Set count to 0 and data to NULL to remove a tag from the capture request.</p>
187 * @param tag the tag value of the camera metadata entry to be set.
194 * zero while data is NULL, the data type of the tag is not unsigned 8 bits, or
195 * the tag i
[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/base/core/java/android/content/
H A DUndoOwner.java35 UndoOwner(String tag, UndoManager manager) { argument
36 if (tag == null) {
37 throw new NullPointerException("tag can't be null");
42 mTag = tag;
47 * Return the unique tag name identifying this owner. This is the tag
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DFalsingLog.java70 public static void v(String tag, String s) { argument
75 Log.v(TAG, tag + "\t" + s);
77 log("V", tag, s);
80 public static void i(String tag, String s) { argument
82 Log.i(TAG, tag + "\t" + s);
84 log("I", tag, s);
87 public static void w(String tag, String s) { argument
89 Log.w(TAG, tag + "\t" + s);
91 log("W", tag, s);
94 public static void e(String tag, Strin argument
101 log(String level, String tag, String s) argument
136 wtf(String tag, String s) argument
[all...]
/frameworks/base/core/java/android/util/
H A DLogWriter.java30 * and tag.
38 * @param tag A string tag to associate with each printed log statement.
40 public LogWriter(int priority, String tag) { argument
42 mTag = tag;
50 public LogWriter(int priority, String tag, int buffer) { argument
52 mTag = tag;
/frameworks/base/core/jni/android/graphics/
H A DNinePatchPeeker.cpp24 bool NinePatchPeeker::readChunk(const char tag[], const void* data, size_t length) { argument
25 if (!strcmp("npTc", tag) && length >= sizeof(Res_png_9patch)) {
39 } else if (!strcmp("npLb", tag) && length == sizeof(int32_t) * 4) {
42 } else if (!strcmp("npOl", tag) && length == 24) { // 4 int32_ts, 1 float, 1 int32_t sized byte
/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/core/java/android/nfc/
H A DIAppCallback.aidl29 void onTagDiscovered(in Tag tag);
/frameworks/base/core/java/android/nfc/tech/
H A DMifareUltralight.java36 * The primary operations on an Ultralight tag are {@link #readPages} and
55 * In either case, {@link NfcA} will also be enumerated on the tag,
64 /** A MIFARE Ultralight compatible tag of unknown type */
66 /** A MIFARE Ultralight tag */
68 /** A MIFARE Ultralight C tag */
83 * Get an instance of {@link MifareUltralight} for the given tag.
85 * {@link Tag#getTechList} - this indicates the tag is not MIFARE
90 * @param tag an MIFARE Ultralight compatible tag
93 public static MifareUltralight get(Tag tag) { argument
103 MifareUltralight(Tag tag) argument
[all...]
H A DIsoDep.java52 * Get an instance of {@link IsoDep} for the given tag.
55 * This indicates the tag does not support ISO-DEP.
57 * @param tag an ISO-DEP compatible tag
60 public static IsoDep get(Tag tag) { argument
61 if (!tag.hasTech(TagTechnology.ISO_DEP)) return null;
63 return new IsoDep(tag);
70 public IsoDep(Tag tag) argument
72 super(tag, TagTechnology.ISO_DEP);
73 Bundle extras = tag
[all...]
/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DTrace.java27 * Begins systrace tracing for a given tag. No-op on unsupported platform versions.
29 * @param tag systrace tag to use
33 public static void beginSection(String tag) { argument
35 android.os.Trace.beginSection(tag);
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DTrace.java27 * Begins systrace tracing for a given tag. No-op on unsupported platform versions.
29 * @param tag systrace tag to use
33 public static void beginSection(String tag) { argument
35 android.os.Trace.beginSection(tag);

Completed in 515 milliseconds

1234567891011>>