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

/frameworks/base/core/java/android/os/
H A DTrace.java37 // These tags must be kept in sync with system/core/include/cutils/trace.h.
90 // native callback reads the tags from the system property, and this callback
122 long tags = nativeGetEnabledTags();
123 sEnabledTags = tags;
124 return tags;
136 long tags = sEnabledTags;
137 if (tags == TRACE_TAG_NOT_READY) {
138 tags = cacheEnabledTags();
140 return (tags & traceTag) != 0;
167 // Setting whether app tracing is allowed may change the tags, s
[all...]
H A DStrictMode.java144 // How many Span tags (e.g. animations) to report.
1614 info.tags = null;
2046 * List of tags from active Span instances during this
2049 public String[] tags; field in class:StrictMode.ViolationInfo
2107 this.tags = new String[spanActiveCount];
2111 this.tags[index] = iter.mName;
2129 if (tags != null) {
2130 for (String tag : tags) {
2164 tags = in.readStringArray();
2179 dest.writeStringArray(tags);
[all...]
/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.cpp143 * static native void readEvents(int[] tags, Collection<Event> output)
148 jintArray tags,
150 if (tags == NULL || out == NULL) {
161 jsize tagLength = env->GetArrayLength(tags);
162 jint *tagValues = env->GetIntArrayElements(tags, NULL);
224 env->ReleaseIntArrayElements(tags, tagValues, 0);
147 android_util_EventLog_readEvents(JNIEnv* env, jobject clazz, jintArray tags, jobject out) argument
H A Dandroid_os_Debug.cpp591 static const char* const tags[] = { local
618 while (tags[i]) {
619 if (strncmp(p, tags[i], tagsLen[i]) == 0) {
/frameworks/native/cmds/atrace/
H A Datrace.cpp44 const char* k_traceTagsProperty = "debug.atrace.tags.enableflags";
56 // The userland tracing tags that the category enables.
57 uint64_t tags; member in struct:TracingCategory
245 // writable and if enabling the category will enable one or more tracing tags
249 bool ok = category.tags != 0;
274 bool ok = category.tags != 0;
366 // Set the trace tags that userland tracing uses, and poke the running
368 static bool setTagsProperty(uint64_t tags) argument
371 snprintf(buf, 64, "%#llx", tags);
373 fprintf(stderr, "error setting trace tags syste
502 uint64_t tags = 0; local
[all...]
/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/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";
188 * @param tags to search for
192 public static native void readEvents(int[] tags, Collection<Event> output) argument
/frameworks/base/services/java/com/android/server/
H A DDropBoxManagerService.java737 // Space is "fairly" shared between tags -- they are all squeezed
751 TreeSet<FileList> tags = new TreeSet<FileList>(mFilesByTag.values());
752 for (FileList tag : tags) {
762 for (FileList tag : tags) {
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java9740 if (info.tags != null) {
9741 for (String tag : info.tags) {

Completed in 395 milliseconds