Home
last modified time | relevance | path

Searched refs:tag (Results 1 – 25 of 422) sorted by relevance

12345678910>>...17

/packages/apps/Camera2/src/com/android/camera/debug/
DLog.java50 public Tag(String tag) { in Tag() argument
51 final int lenDiff = tag.length() - MAX_TAG_LEN; in Tag()
53 w(TAG, "Tag " + tag + " is " + lenDiff + " chars longer than limit."); in Tag()
55 mValue = CAMERA_LOGTAG_PREFIX + (lenDiff > 0 ? tag.substring(0, MAX_TAG_LEN) : tag); in Tag()
64 public static void d(Tag tag, String msg) { in d() argument
65 if (isLoggable(tag, android.util.Log.DEBUG)) { in d()
66 android.util.Log.d(tag.toString(), msg); in d()
70 public static void d(Tag tag, Object instance, String msg) { in d() argument
71 if (isLoggable(tag, android.util.Log.DEBUG)) { in d()
72 android.util.Log.d(tag.toString(), LogUtil.addTags(instance, msg)); in d()
[all …]
/packages/services/Telephony/src/com/android/phone/vvm/
DVvmLog.java35 public static void log(String tag, String log) { in log() argument
36 sLocalLog.log(tag + ": " + log); in log()
46 public static int e(String tag, String log) { in e() argument
47 log(tag, log); in e()
48 return Log.e(tag, log); in e()
51 public static int e(String tag, String log, Throwable e) { in e() argument
52 log(tag, log + " " + e); in e()
53 return Log.e(tag, log, e); in e()
56 public static int w(String tag, String log) { in w() argument
57 log(tag, log); in w()
[all …]
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/exif/
DExifParser.java127 private ExifTag tag; field in ExifParser
256 tag = readTag(); in next()
257 if (tag == null) { in next()
261 checkOffsetOrImageTag(tag); in next()
325 tag = tagEvent.tag; in next()
326 if (tag.getDataType() != ExifTag.TYPE_UNDEFINED) { in next()
327 readFullTagValue(tag); in next()
328 checkOffsetOrImageTag(tag); in next()
352 tag = readTag(); in skipRemainingTagsInCurrentIfd()
354 if (tag == null) { in skipRemainingTagsInCurrentIfd()
[all …]
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/utils/
DLogUtils.java68 protected static boolean isDebugLoggingEnabled(String tag) { in isDebugLoggingEnabled() argument
75 return Log.isLoggable(tag, Log.DEBUG) || Log.isLoggable(TAG, Log.DEBUG); in isDebugLoggingEnabled()
90 public static String contentUriToString(String tag, Uri uri) { in contentUriToString() argument
91 if (isDebugLoggingEnabled(tag)) { in contentUriToString()
125 public static String sanitizeName(final String tag, final String name) { in sanitizeName() argument
130 if (isDebugLoggingEnabled(tag)) { in sanitizeName()
140 public static boolean isLoggable(String tag, int level) { in isLoggable() argument
144 return Log.isLoggable(tag, level) || Log.isLoggable(TAG, level); in isLoggable()
156 public static void v(String tag, String format, Object... args) { in v() argument
157 if (isLoggable(tag, VERBOSE)) { in v()
[all …]
/packages/apps/Dialer/java/com/android/voicemail/impl/
DVvmLog.java35 public static void log(String tag, String log) { in log() argument
36 PersistentLogger.logText(tag, log); in log()
46 public static void e(String tag, String log) { in e() argument
47 log(tag, log); in e()
48 LogUtil.e(tag, log); in e()
51 public static void e(String tag, String log, Throwable e) { in e() argument
52 log(tag, log + " " + e); in e()
53 LogUtil.e(tag, log, e); in e()
56 public static void w(String tag, String log) { in w() argument
57 log(tag, log); in w()
[all …]
/packages/apps/UniversalMediaPlayer/java/com/android/pump/util/
DClog.java54 public static @NonNull String tag(@NonNull Class<?> clazz) { in tag() method in Clog
55 String tag = clazz.getSimpleName(); in tag() local
56 return tag.substring(0, Math.min(tag.length(), MAX_TAG_LENGTH)); in tag()
59 public static int v(@NonNull String tag, @NonNull String msg) { in v() argument
60 return println(VERBOSE, tag, msg); in v()
63 public static int v(@NonNull String tag, @NonNull String msg, @NonNull Throwable tr) { in v() argument
64 return println(VERBOSE, tag, msg + '\n' + getStackTraceString(tr)); in v()
67 public static int d(@NonNull String tag, @NonNull String msg) { in d() argument
68 return println(DEBUG, tag, msg); in d()
71 public static int d(@NonNull String tag, @NonNull String msg, @NonNull Throwable tr) { in d() argument
[all …]
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
DExifParser.java343 mTag = tagEvent.tag; in next()
512 protected void registerForTagValue(ExifTag tag) { in registerForTagValue() argument
513 if (tag.getOffset() >= mTiffStream.getReadByteCount()) { in registerForTagValue()
514 mCorrespondingEvent.put(tag.getOffset(), new ExifTagEvent(tag, true)); in registerForTagValue()
548 ExifTag tag = new ExifTag(tagId, dataFormat, (int) numOfComp, mIfdType, in readTag() local
550 int dataSize = tag.getDataSize(); in readTag()
563 tag.setValue(buf); in readTag()
565 tag.setOffset((int) offset); in readTag()
568 boolean defCount = tag.hasDefinedCount(); in readTag()
570 tag.setHasDefinedCount(false); in readTag()
[all …]
/packages/apps/Messaging/src/com/android/messaging/util/exif/
DExifParser.java344 mTag = tagEvent.tag; in next()
514 protected void registerForTagValue(ExifTag tag) { in registerForTagValue() argument
515 if (tag.getOffset() >= mTiffStream.getReadByteCount()) { in registerForTagValue()
516 mCorrespondingEvent.put(tag.getOffset(), new ExifTagEvent(tag, true)); in registerForTagValue()
550 ExifTag tag = new ExifTag(tagId, dataFormat, (int) numOfComp, mIfdType, in readTag() local
552 int dataSize = tag.getDataSize(); in readTag()
567 tag.setValue(buf); in readTag()
569 tag.setOffset((int) offset); in readTag()
572 boolean defCount = tag.hasDefinedCount(); in readTag()
574 tag.setHasDefinedCount(false); in readTag()
[all …]
/packages/apps/Camera2/src/com/android/camera/exif/
DExifParser.java343 mTag = tagEvent.tag; in next()
512 protected void registerForTagValue(ExifTag tag) { in registerForTagValue() argument
513 if (tag.getOffset() >= mTiffStream.getReadByteCount()) { in registerForTagValue()
514 mCorrespondingEvent.put(tag.getOffset(), new ExifTagEvent(tag, true)); in registerForTagValue()
548 ExifTag tag = new ExifTag(tagId, dataFormat, (int) numOfComp, mIfdType, in readTag() local
550 int dataSize = tag.getDataSize(); in readTag()
563 tag.setValue(buf); in readTag()
565 tag.setOffset((int) offset); in readTag()
568 boolean defCount = tag.hasDefinedCount(); in readTag()
570 tag.setHasDefinedCount(false); in readTag()
[all …]
/packages/apps/Messaging/src/com/android/messaging/util/
DLogUtil.java76 public static void v(final String tag, final String msg) { in v() argument
77 println(android.util.Log.VERBOSE, tag, msg); in v()
87 public static void v(final String tag, final String msg, final Throwable tr) { in v() argument
88 println(android.util.Log.VERBOSE, tag, msg + '\n' in v()
98 public static void d(final String tag, final String msg) { in d() argument
99 println(android.util.Log.DEBUG, tag, msg); in d()
109 public static void d(final String tag, final String msg, final Throwable tr) { in d() argument
110 println(android.util.Log.DEBUG, tag, msg + '\n' in d()
120 public static void i(final String tag, final String msg) { in i() argument
121 println(android.util.Log.INFO, tag, msg); in i()
[all …]
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
DDoxyfile.in20 # This tag specifies the encoding used for all characters in the config file
22 # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
29 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
43 # Using the PROJECT_BRIEF tag one can provide an optional one line description
49 # With the PROJECT_LOGO tag one can specify an logo or icon that is included in
56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
81 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/util/
DLog.java20 public static int v(String tag, String msg) { in v() argument
21 return android.util.Log.v(tag, msg); in v()
23 public static int v(String tag, String msg, Throwable tr) { in v() argument
24 return android.util.Log.v(tag, msg, tr); in v()
26 public static int d(String tag, String msg) { in d() argument
27 return android.util.Log.d(tag, msg); in d()
29 public static int d(String tag, String msg, Throwable tr) { in d() argument
30 return android.util.Log.d(tag, msg, tr); in d()
32 public static int i(String tag, String msg) { in i() argument
33 return android.util.Log.i(tag, msg); in i()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DLog.java20 public static int v(String tag, String msg) { in v() argument
21 return android.util.Log.v(tag, msg); in v()
23 public static int v(String tag, String msg, Throwable tr) { in v() argument
24 return android.util.Log.v(tag, msg, tr); in v()
26 public static int d(String tag, String msg) { in d() argument
27 return android.util.Log.d(tag, msg); in d()
29 public static int d(String tag, String msg, Throwable tr) { in d() argument
30 return android.util.Log.d(tag, msg, tr); in d()
32 public static int i(String tag, String msg) { in i() argument
33 return android.util.Log.i(tag, msg); in i()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DLog.java21 public static int v(String tag, String msg) { in v() argument
22 return android.util.Log.v(tag, msg); in v()
24 public static int v(String tag, String msg, Throwable tr) { in v() argument
25 return android.util.Log.v(tag, msg, tr); in v()
27 public static int d(String tag, String msg) { in d() argument
28 return android.util.Log.d(tag, msg); in d()
30 public static int d(String tag, String msg, Throwable tr) { in d() argument
31 return android.util.Log.d(tag, msg, tr); in d()
33 public static int i(String tag, String msg) { in i() argument
34 return android.util.Log.i(tag, msg); in i()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DLog.java20 public static int v(String tag, String msg) { in v() argument
21 return android.util.Log.v(tag, msg); in v()
23 public static int v(String tag, String msg, Throwable tr) { in v() argument
24 return android.util.Log.v(tag, msg, tr); in v()
26 public static int d(String tag, String msg) { in d() argument
27 return android.util.Log.d(tag, msg); in d()
29 public static int d(String tag, String msg, Throwable tr) { in d() argument
30 return android.util.Log.d(tag, msg, tr); in d()
32 public static int i(String tag, String msg) { in i() argument
33 return android.util.Log.i(tag, msg); in i()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
DObexAppParameters.java43 byte tag = raw[i++]; in ObexAppParameters()
53 this.add(tag, val); in ObexAppParameters()
99 public boolean exists(byte tag) { in exists() argument
100 return mParams.containsKey(tag); in exists()
103 public void add(byte tag, byte val) { in add() argument
105 mParams.put(tag, bval); in add()
108 public void add(byte tag, short val) { in add() argument
110 mParams.put(tag, bval); in add()
113 public void add(byte tag, int val) { in add() argument
115 mParams.put(tag, bval); in add()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
DObexAppParameters.java43 byte tag = raw[i++]; in ObexAppParameters()
53 this.add(tag, val); in ObexAppParameters()
99 public boolean exists(byte tag) { in exists() argument
100 return mParams.containsKey(tag); in exists()
103 public void add(byte tag, byte val) { in add() argument
105 mParams.put(tag, bval); in add()
108 public void add(byte tag, short val) { in add() argument
110 mParams.put(tag, bval); in add()
113 public void add(byte tag, int val) { in add() argument
115 mParams.put(tag, bval); in add()
[all …]
/packages/apps/Car/Radio/src/com/android/car/radio/util/
DLog.java36 public static boolean isLoggable(@Nullable String tag, int level) { in isLoggable() argument
37 return android.util.Log.isLoggable(tag, level); in isLoggable()
41 public static int v(@Nullable String tag, @NonNull String format, @Nullable Object...args) { in v() argument
42 if (!isLoggable(tag, VERBOSE)) return 0; in v()
45 return android.util.Log.v(tag, String.format(format, args)); in v()
47 return android.util.Log.v(tag, format); in v()
52 public static int d(@Nullable String tag, @NonNull String format, @Nullable Object...args) { in d() argument
53 if (!isLoggable(tag, DEBUG)) return 0; in d()
56 return android.util.Log.d(tag, String.format(format, args)); in d()
58 return android.util.Log.d(tag, format); in d()
[all …]
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/util/
DSafeLog.java32 public static void logv(@NonNull String tag, @NonNull String message) { in logv() argument
33 if (Log.isLoggable(tag, Log.VERBOSE)) { in logv()
34 Log.v(tag, message); in logv()
39 public static void logi(@NonNull String tag, @NonNull String message) { in logi() argument
40 if (Log.isLoggable(tag, Log.INFO)) { in logi()
41 Log.i(tag, message); in logi()
46 public static void logd(@NonNull String tag, @NonNull String message) { in logd() argument
47 if (Log.isLoggable(tag, Log.DEBUG)) { in logd()
48 Log.d(tag, message); in logd()
53 public static void logw(@NonNull String tag, @NonNull String message) { in logw() argument
[all …]
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/log/
DL.java37 public static void v(String tag, @NonNull String msg, Object... args) { in v() argument
38 if (Log.isLoggable(tag, Log.VERBOSE) || TYPE_LIST.contains(Build.TYPE)) { in v()
39 Log.v(tag, String.format(msg, args)); in v()
48 public static void d(String tag, @NonNull String msg, Object... args) { in d() argument
49 if (Log.isLoggable(tag, Log.DEBUG) || TYPE_LIST.contains(Build.TYPE)) { in d()
50 Log.d(tag, String.format(msg, args)); in d()
59 public static void i(String tag, @NonNull String msg, Object... args) { in i() argument
60 if (Log.isLoggable(tag, Log.INFO) || TYPE_LIST.contains(Build.TYPE)) { in i()
61 Log.i(tag, String.format(msg, args)); in i()
70 public static void w(String tag, @NonNull String msg, Object... args) { in w() argument
[all …]
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/
DDumpableLog.kt39 fun v(tag: String, message: String, exception: Throwable? = null) { in v()
40 Log.v(tag, message, exception) in v()
41 addLogToDump("v", tag, message, exception) in v()
47 fun d(tag: String, message: String, exception: Throwable? = null) { in d()
48 Log.d(tag, message, exception) in d()
49 addLogToDump("d", tag, message, exception) in d()
55 fun i(tag: String, message: String, exception: Throwable? = null) { in i()
56 Log.i(tag, message, exception) in i()
57 addLogToDump("i", tag, message, exception) in i()
63 fun w(tag: String, message: String, exception: Throwable? = null) { in w()
[all …]
/packages/apps/Car/Dialer/src/com/android/car/dialer/log/
DL.java33 public static void v(String tag, @NonNull String msg, Object... args) { in v() argument
34 if (Log.isLoggable(tag, Log.VERBOSE)) { in v()
35 Log.v(tag, String.format(msg, args)); in v()
44 public static void d(String tag, @NonNull String msg, Object... args) { in d() argument
45 if (Log.isLoggable(tag, Log.DEBUG)) { in d()
46 Log.d(tag, String.format(msg, args)); in d()
55 public static void i(String tag, @NonNull String msg, Object... args) { in i() argument
56 if (Log.isLoggable(tag, Log.INFO)) { in i()
57 Log.i(tag, String.format(msg, args)); in i()
66 public static void w(String tag, @NonNull String msg, Object... args) { in w() argument
[all …]
/packages/providers/MediaProvider/
Dlogging.sh7 adb shell setprop log.tag.MediaProvider VERBOSE
8 adb shell setprop log.tag.ModernMediaScanner VERBOSE
9 adb shell setprop log.tag.TranscodeHelper VERBOSE
10 adb shell setprop log.tag.FuseDaemon DEBUG
11 adb shell setprop log.tag.libfuse DEBUG
13 adb shell setprop log.tag.MediaProvider INFO
14 adb shell setprop log.tag.ModernMediaScanner INFO
15 adb shell setprop log.tag.FuseDaemon INFO
16 adb shell setprop log.tag.libfuse INFO
21 adb shell setprop log.tag.SQLiteQueryBuilder VERBOSE
[all …]
/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile17 # This tag specifies the encoding used for all characters in the config file
19 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
65 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
72 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
79 # This tag implements a quasi-intelligent brief description abbreviator
[all …]
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile17 # This tag specifies the encoding used for all characters in the config file
19 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
65 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
72 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
79 # This tag implements a quasi-intelligent brief description abbreviator
[all …]

12345678910>>...17