Home
last modified time | relevance | path

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

1234567891011

/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/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/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 …]
DExifOutputStream.java162 short tag = mBuffer.getShort(); in write() local
163 if (tag == JpegHeader.EOI) { in write()
285 for (ExifTag tag : tags) { in writeIfd()
286 dataOutputStream.writeShort(tag.getTagId()); in writeIfd()
287 dataOutputStream.writeShort(tag.getDataType()); in writeIfd()
288 dataOutputStream.writeInt(tag.getComponentCount()); in writeIfd()
290 Log.v(TAG, "\n" + tag.toString()); in writeIfd()
292 if (tag.getDataSize() > 4) { in writeIfd()
293 dataOutputStream.writeInt(tag.getOffset()); in writeIfd()
295 ExifOutputStream.writeTagValue(tag, dataOutputStream); in writeIfd()
[all …]
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/exif/
DExifParser.java325 mTag = tagEvent.tag; in next()
468 void registerForTagValue(ExifTag tag) { in registerForTagValue() argument
469 if (tag.getOffset() >= mTiffStream.getReadByteCount()) { in registerForTagValue()
470 mCorrespondingEvent.put(tag.getOffset(), new ExifTagEvent(tag, true)); in registerForTagValue()
503 ExifTag tag = in readTag() local
510 int dataSize = tag.getDataSize(); in readTag()
522 tag.setValue(buf); in readTag()
524 tag.setOffset((int) offset); in readTag()
527 boolean defCount = tag.hasDefinedCount(); in readTag()
529 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()
565 tag.setValue(buf); in readTag()
567 tag.setOffset((int) offset); in readTag()
570 boolean defCount = tag.hasDefinedCount(); in readTag()
572 tag.setHasDefinedCount(false); in readTag()
[all …]
DExifOutputStream.java163 short tag = mBuffer.getShort(); in write() local
164 if (tag == JpegHeader.EOI) { in write()
289 for (ExifTag tag : tags) { in writeIfd()
290 dataOutputStream.writeShort(tag.getTagId()); in writeIfd()
291 dataOutputStream.writeShort(tag.getDataType()); in writeIfd()
292 dataOutputStream.writeInt(tag.getComponentCount()); in writeIfd()
294 Log.v(TAG, "\n" + tag.toString()); in writeIfd()
296 if (tag.getDataSize() > 4) { in writeIfd()
297 dataOutputStream.writeInt(tag.getOffset()); in writeIfd()
299 ExifOutputStream.writeTagValue(tag, dataOutputStream); in writeIfd()
[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 …]
DExifOutputStream.java162 short tag = mBuffer.getShort(); in write() local
163 if (tag == JpegHeader.EOI) { in write()
285 for (ExifTag tag : tags) { in writeIfd()
286 dataOutputStream.writeShort(tag.getTagId()); in writeIfd()
287 dataOutputStream.writeShort(tag.getDataType()); in writeIfd()
288 dataOutputStream.writeInt(tag.getComponentCount()); in writeIfd()
290 Log.v(TAG, "\n" + tag.toString()); in writeIfd()
292 if (tag.getDataSize() > 4) { in writeIfd()
293 dataOutputStream.writeInt(tag.getOffset()); in writeIfd()
295 ExifOutputStream.writeTagValue(tag, dataOutputStream); in writeIfd()
[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/UnifiedEmail/src/com/android/mail/utils/
DLogUtils.java95 protected static boolean isDebugLoggingEnabled(String tag) { in isDebugLoggingEnabled() argument
102 return Log.isLoggable(tag, Log.DEBUG) || Log.isLoggable(TAG, Log.DEBUG); in isDebugLoggingEnabled()
117 public static String contentUriToString(String tag, Uri uri) { in contentUriToString() argument
118 if (isDebugLoggingEnabled(tag)) { in contentUriToString()
154 public static String sanitizeName(final String tag, final String name) { in sanitizeName() argument
159 if (isDebugLoggingEnabled(tag)) { in sanitizeName()
169 public static boolean isLoggable(String tag, int level) { in isLoggable() argument
173 return Log.isLoggable(tag, level) || Log.isLoggable(TAG, level); in isLoggable()
186 public static int v(String tag, String format, Object... args) { in v() argument
187 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/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/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/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 …]
/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/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/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/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/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/services/NetworkRecommendation/src/com/android/networkrecommendation/util/
DBlog.java40 public static void i(String tag, String format, Object... args) { in i() argument
41 Log.i(tag, buildMessage(format, args)); in i()
44 public static void i(String tag, Throwable tr, String format, Object... args) { in i() argument
45 Log.i(tag, buildMessage(format, args), tr); in i()
48 public static void v(String tag, String format, Object... args) { in v() argument
51 Log.v(tag, buildMessage(format, args)); in v()
54 public static void v(String tag, Throwable tr, String format, Object... args) { in v() argument
57 Log.v(tag, buildMessage(format, args), tr); in v()
60 public static void d(String tag, String format, Object... args) { in d() argument
61 if (Log.isLoggable(tag, Log.DEBUG)) { in d()
[all …]
/packages/apps/Nfc/src/com/android/nfc/
DNfcService.java269 public void onRemoteEndpointDiscovered(TagEndpoint tag) { in onRemoteEndpointDiscovered() argument
270 sendMessage(NfcService.MSG_NDEF_TAG, tag); in onRemoteEndpointDiscovered()
910 TagEndpoint tag = (TagEndpoint) findAndRemoveObject(nativeHandle); in ignore() local
911 if (tag != null) { in ignore()
913 int uidLength = tag.getUid().length; in ignore()
918 System.arraycopy(tag.getUid(), 0, mDebounceTagUid, 0, uidLength); in ignore()
924 tag.disconnect(); in ignore()
1011 public void dispatch(Tag tag) throws RemoteException { in dispatch() argument
1013 mNfcDispatcher.dispatchTag(tag); in dispatch()
1129 TagEndpoint tag = null; in connect() local
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/perf/
DTimer.java98 public void start(String tag) { in start() argument
100 ArrayList<PerformancePoint> values = mPoints.get(tag); in start()
103 mPoints.put(tag, values); in start()
115 public void pause(String tag) { in pause() argument
117 ArrayList<PerformancePoint> values = mPoints.get(tag); in pause()
125 public void count(String tag) { in count() argument
127 Integer counts = mCounts.get(tag); in count()
131 mCounts.put(tag, counts + 1); in count()
150 String tag = entry.getKey(); in dumpResults() local
167 dumpTimings(tag, 1, cpuDurationNanos, wallDurationMillis); in dumpResults()
[all …]

1234567891011