Searched defs:tags (Results 1 - 11 of 11) sorted by relevance

/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";
198 * @param tags to search for
202 public static native void readEvents(int[] tags, Collection<Event> output) argument
/frameworks/base/core/jni/
H A Dandroid_util_EventLog.cpp148 * static native void readEvents(int[] tags, Collection<Event> output)
153 jintArray tags,
156 if (tags == NULL || out == NULL) {
169 jsize tagLength = env->GetArrayLength(tags);
170 jint *tagValues = env->GetIntArrayElements(tags, NULL);
222 env->ReleaseIntArrayElements(tags, tagValues, 0);
152 android_util_EventLog_readEvents(JNIEnv* env, jobject clazz UNUSED, jintArray tags, jobject out) argument
H A Dandroid_media_AudioRecord.cpp211 const char* tags = env->GetStringUTFChars(jtags, NULL); local
212 // copying array size -1, char array for tags was calloc'd, no need to NULL-terminate it
213 strncpy(paa->tags, tags, AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1);
214 env->ReleaseStringUTFChars(jtags, tags);
217 ALOGV("AudioRecord_setup for source=%d tags=%s flags=%08x", paa->source, paa->tags, paa->flags);
H A Dandroid_media_AudioTrack.cpp268 const char* tags = env->GetStringUTFChars(jtags, NULL); local
269 // copying array size -1, char array for tags was calloc'd, no need to NULL-terminate it
270 strncpy(paa->tags, tags, AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1);
271 env->ReleaseStringUTFChars(jtags, tags);
277 ALOGV("AudioTrack_setup for usage=%d content=%d flags=0x%#x tags=%s",
278 paa->usage, paa->content_type, paa->flags, paa->tags);
H A Dandroid_os_Debug.cpp616 static const char* const tags[] = { local
653 while (tags[i]) {
654 if (strncmp(p, tags[i], tagsLen[i]) == 0) {
/frameworks/base/media/jni/soundpool/
H A Dandroid_media_SoundPool_SoundPoolImpl.cpp199 const char* tags = env->GetStringUTFChars(jtags, NULL); local
200 // copying array size -1, char array for tags was calloc'd, no need to NULL-terminate it
201 strncpy(paa->tags, tags, AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1);
202 env->ReleaseStringUTFChars(jtags, 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/native/cmds/atrace/
H A Datrace.cpp45 const char* k_traceTagsProperty = "debug.atrace.tags.enableflags";
57 // The userland tracing tags that the category enables.
58 uint64_t tags; member in struct:TracingCategory
265 // writable and if enabling the category will enable one or more tracing tags
269 bool ok = category.tags != 0;
294 bool ok = category.tags != 0;
431 // Set the trace tags that userland tracing uses, and poke the running
433 static bool setTagsProperty(uint64_t tags) argument
436 snprintf(buf, 64, "%#" PRIx64, tags);
438 fprintf(stderr, "error setting trace tags syste
567 uint64_t tags = 0; local
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp196 // marshalling tag indicating flattened utf16 tags
212 // | kAudioAttributesMarshallTagFlattenTags | // ignore tags if not found
214 // | flattened tags in UTF16 |
229 // the tags are UTF16, convert to UTF8
230 String16 tags = parcel.readString16(); local
231 ssize_t realTagSize = utf16_to_utf8_length(tags.string(), tags.size());
233 strcpy(attributes->tags, "");
236 // copying array size -1, array for tags was calloc'd, no need to NULL-terminate it
239 utf16_to_utf8(tags
[all...]
/frameworks/base/core/java/android/os/
H A DStrictMode.java146 // How many Span tags (e.g. animations) to report.
1620 info.tags = null;
2082 * List of tags from active Span instances during this
2085 public String[] tags; field in class:StrictMode.ViolationInfo
2143 this.tags = new String[spanActiveCount];
2147 this.tags[index] = iter.mName;
2165 if (tags != null) {
2166 for (String tag : tags) {
2200 tags = in.readStringArray();
2216 dest.writeStringArray(tags);
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
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...]

Completed in 224 milliseconds