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

/frameworks/base/tools/obbtool/
H A DAndroid.mk16 LOCAL_CFLAGS := -Wall -Werror -Wno-mismatched-tags
39 LOCAL_CFLAGS := -Wall -Werror -Wno-mismatched-tags
/frameworks/base/core/java/android/os/
H A DTrace.java38 // These tags must be kept in sync with system/core/include/cutils/trace.h.
96 // native callback reads the tags from the system property, and this callback
128 long tags = nativeGetEnabledTags();
129 sEnabledTags = tags;
130 return tags;
142 long tags = sEnabledTags;
143 if (tags == TRACE_TAG_NOT_READY) {
144 tags = cacheEnabledTags();
146 return (tags & traceTag) != 0;
173 // Setting whether app tracing is allowed may change the tags, s
[all...]
H A DStrictMode.java156 // How many Span tags (e.g. animations) to report.
1814 info.tags = null;
2298 * List of tags from active Span instances during this
2301 public String[] tags; field in class:StrictMode.ViolationInfo
2364 this.tags = new String[spanActiveCount];
2368 this.tags[index] = iter.mName;
2386 if (tags != null) {
2387 for (String tag : tags) {
2422 tags = in.readStringArray();
2439 dest.writeStringArray(tags);
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioPolicyMix.cpp117 if (strncmp(attributes.tags, "addr=", strlen("addr=")) == 0 &&
118 strncmp(attributes.tags + strlen("addr="),
127 strncmp(attributes.tags, "addr=", strlen("addr=")) == 0 &&
128 strncmp(attributes.tags + strlen("addr="),
172 if (strncmp(attr.tags, "addr=", strlen("addr=")) != 0) {
175 String8 address(attr.tags + strlen("addr="));
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DIfdData.java23 * This class stores all the tags in an IFD.
102 * Gets the tags count in the IFD.
123 * Returns true if all tags in this two IFDs are equal. Note that tags of
137 ExifTag[] tags = data.getAllTags();
138 for (ExifTag tag : tags) {
H A DExifData.java194 * Removes the thumbnail and its related tags. IFD1 will be removed.
259 ExifTag[] tags = d.getAllTags();
260 if (tags != null) {
261 for (ExifTag t : tags) {
282 ExifTag[] tags = d.getAllTags();
283 if (tags == null) {
286 ArrayList<ExifTag> ret = new ArrayList<ExifTag>(tags.length);
287 for (ExifTag t : tags) {
H A DExifOutputStream.java283 ExifTag[] tags = ifd.getAllTags();
284 dataOutputStream.writeShort((short) tags.length);
285 for (ExifTag tag : tags) {
302 for (ExifTag tag : tags) {
311 ExifTag[] tags = ifd.getAllTags();
312 for (ExifTag tag : tags) {
393 // Get rid of tags for uncompressed if they exist.
420 // Get rid of tags for compressed if they exist.
425 // Get rid of offset and length tags if there is no thumbnail.
H A DExifInterface.java254 // IFD GPS tags
317 // IFD Interoperability tags
718 * Reads the exif tags from a byte array, clearing this ExifInterface
719 * object's existing exif tags.
729 * Reads the exif tags from an InputStream, clearing this ExifInterface
730 * object's existing exif tags.
749 * Reads the exif tags from a file, clearing this ExifInterface object's
750 * existing exif tags.
772 * Sets the exif tags, clearing this ExifInterface object's existing exif
773 * tags
777 setExif(Collection<ExifTag> tags) argument
1010 rewriteExif(String filename, Collection<ExifTag> tags) argument
1068 rewriteExif(ByteBuffer buf, Collection<ExifTag> tags) argument
1093 forceRewriteExif(String filename, Collection<ExifTag> tags) argument
1593 setTags(Collection<ExifTag> tags) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_util_EventLog.cpp168 * static native void readEvents(int[] tags, Collection<Event> output)
173 jintArray tags,
176 if (tags == NULL || out == NULL) {
189 jsize tagLength = env->GetArrayLength(tags);
190 jint *tagValues = env->GetIntArrayElements(tags, NULL);
246 env->ReleaseIntArrayElements(tags, tagValues, 0);
172 android_util_EventLog_readEvents(JNIEnv* env, jobject clazz UNUSED, jintArray tags, jobject out) argument
H A Dandroid_media_AudioRecord.cpp252 const char* tags = env->GetStringUTFChars(jtags, NULL); local
253 // copying array size -1, char array for tags was calloc'd, no need to NULL-terminate it
254 strncpy(paa->tags, tags, AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1);
255 env->ReleaseStringUTFChars(jtags, tags);
258 ALOGV("AudioRecord_setup for source=%d tags=%s flags=%08x", paa->source, paa->tags, paa->flags);
H A Dandroid_media_AudioTrack.cpp284 const char* tags = env->GetStringUTFChars(jtags, NULL); local
285 // copying array size -1, char array for tags was calloc'd, no need to NULL-terminate it
286 strncpy(paa->tags, tags, AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1);
287 env->ReleaseStringUTFChars(jtags, tags);
293 ALOGV("AudioTrack_setup for usage=%d content=%d flags=0x%#x tags=%s",
294 paa->usage, paa->content_type, paa->flags, paa->tags);
H A Dandroid_os_Debug.cpp637 static const char* const tags[] = { local
674 while (tags[i]) {
675 if (strncmp(p, tags[i], tagsLen[i]) == 0) {
/frameworks/native/cmds/atrace/
H A Datrace.cpp47 const char* k_traceTagsProperty = "debug.atrace.tags.enableflags";
59 // The userland tracing tags that the category enables.
60 uint64_t tags; member in struct:TracingCategory
281 // writable and if enabling the category will enable one or more tracing tags
285 bool ok = category.tags != 0;
310 bool ok = category.tags != 0;
447 // Set the trace tags that userland tracing uses, and poke the running
449 static bool setTagsProperty(uint64_t tags) argument
452 snprintf(buf, 64, "%#" PRIx64, tags);
454 fprintf(stderr, "error setting trace tags syste
583 uint64_t tags = 0; local
[all...]
/frameworks/base/media/jni/soundpool/
H A Dandroid_media_SoundPool.cpp185 const char* tags = env->GetStringUTFChars(jtags, NULL); local
186 // copying array size -1, char array for tags was calloc'd, no need to NULL-terminate it
187 strncpy(paa->tags, tags, AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1);
188 env->ReleaseStringUTFChars(jtags, tags);
H A DSoundPool.cpp49 ALOGV("SoundPool constructor: maxChannels=%d, attr.usage=%d, attr.flags=0x%x, attr.tags=%s",
50 maxChannels, pAttributes->usage, pAttributes->flags, pAttributes->tags);
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/
H A DLoaderDicom.java141 public TagSet read(File file, int[] tags) throws Exception { argument
145 for (int n : tags) {
272 int[] tags = new int[]{
314 TagSet data = d.read(file, tags);
337 final int[] tags = new int[]{
409 TagSet data = d.read(file, tags);
497 final int[] tags = new int[]{
549 TagSet data = d.read(file, tags);
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DLegacyMetadataMapper.java1415 int[] tags = new int[keys.length];
1418 tags[i] = keys[i].getNativeKey().getTag();
1421 return tags;
1425 int[] tags = new int[keys.length];
1428 tags[i] = keys[i].getNativeKey().getTag();
1431 return tags;
1435 int[] tags = new int[keys.length];
1438 tags[i] = keys[i].getNativeKey().getTag();
1441 return tags;
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DSafeSaxTest.java297 video.tags = body;
507 video.tags = takeText();
537 public String tags; field in class:SafeSaxTest.YouTubeVideo
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp197 // marshalling tag indicating flattened utf16 tags
213 // | kAudioAttributesMarshallTagFlattenTags | // ignore tags if not found
215 // | flattened tags in UTF16 |
230 // the tags are UTF16, convert to UTF8
231 String16 tags = parcel.readString16(); local
232 ssize_t realTagSize = utf16_to_utf8_length(tags.string(), tags.size());
234 strcpy(attributes->tags, "");
237 // copying array size -1, array for tags was calloc'd, no need to NULL-terminate it
240 utf16_to_utf8(tags
[all...]
/frameworks/base/core/java/android/util/
H A DEventLog.java40 * <p>Events use integer tag codes corresponding to /system/etc/event-log-tags.
42 * event-log-tags file defines the payload contents for each type code.
49 private static final String TAGS_FILE = "/system/etc/event-log-tags";
210 * @param tags to search for
214 public static native void readEvents(int[] tags, Collection<Event> output) argument
/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java742 // Space is "fairly" shared between tags -- they are all squeezed
756 TreeSet<FileList> tags = new TreeSet<FileList>(mFilesByTag.values());
757 for (FileList tag : tags) {
767 for (FileList tag : tags) {
/frameworks/av/media/libmedia/
H A DAudioTrack.cpp175 strcpy(mAttributes.tags, "");
353 ALOGV("Building AudioTrack with attributes: usage=%d content=%d flags=0x%x tags=[%s]",
354 mAttributes.usage, mAttributes.content_type, mAttributes.flags, mAttributes.tags);
H A DAudioRecord.cpp190 ALOGV("Building AudioRecord with attributes: source=%d flags=0x%x tags=[%s]",
191 mAttributes.source, mAttributes.flags, mAttributes.tags);
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp659 ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]",
661 attr->tags);
690 attributes.usage, attributes.content_type, attributes.tags, attributes.flags,
1325 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
1332 address = String8(attr->tags + strlen("addr="));
1869 // - 1 look for a mix matching the address passed in attribtutes tags if any
1878 // - 1 look for a mix matching the address passed in attribtutes tags if any
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java12166 if (info.tags != null) {
12167 for (String tag : info.tags) {

Completed in 1087 milliseconds