Searched defs:tag (Results 1 - 25 of 242) sorted by relevance

12345678910

/frameworks/av/include/camera/
H A DCameraMetadata.h126 status_t update(uint32_t tag,
128 status_t update(uint32_t tag,
130 status_t update(uint32_t tag,
132 status_t update(uint32_t tag,
134 status_t update(uint32_t tag,
136 status_t update(uint32_t tag,
138 status_t update(uint32_t tag,
142 status_t update(uint32_t tag, Vector<T> data) { argument
143 return update(tag, data.array(), data.size());
147 * Check if a metadata entry exists for a given tag i
[all...]
/frameworks/base/core/java/android/util/
H A DEventLogTags.java32 Description(int tag, String name) { argument
33 mTag = tag;
44 public Description get(int tag) { return null; } argument
H A DLogPrinter.java30 * and tag.
38 * @param tag A string tag to associate with each printed log statement.
40 public LogPrinter(int priority, String tag) { argument
42 mTag = tag;
50 public LogPrinter(int priority, String tag, int buffer) { argument
52 mTag = tag;
H A DSlog.java27 public static int v(String tag, String msg) { argument
28 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag, msg);
31 public static int v(String tag, String msg, Throwable tr) { argument
32 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag,
36 public static int d(String tag, String msg) { argument
37 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag, msg);
40 public static int d(String tag, String msg, Throwable tr) { argument
41 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag,
45 public static int i(String tag, String msg) { argument
46 return Log.println_native(Log.LOG_ID_SYSTEM, Log.INFO, tag, ms
49 i(String tag, String msg, Throwable tr) argument
54 w(String tag, String msg) argument
58 w(String tag, String msg, Throwable tr) argument
63 w(String tag, Throwable tr) argument
67 e(String tag, String msg) argument
71 e(String tag, String msg, Throwable tr) argument
81 wtf(String tag, String msg) argument
88 wtfQuiet(String tag, String msg) argument
97 wtfStack(String tag, String msg) argument
106 wtf(String tag, Throwable tr) argument
115 wtf(String tag, String msg, Throwable tr) argument
119 println(int priority, String tag, String msg) argument
[all...]
H A DTimingLogger.java51 * The Log tag to use for checking Log.isLoggable and for
70 * the specific tag. If the Log.isLoggable is not enabled to at
71 * least the Log.VERBOSE level for that tag at creation time then
73 * @param tag the log tag to use while logging the timings
76 public TimingLogger(String tag, String label) { argument
77 reset(tag, label);
82 * the specific tag. If the Log.isLoggable is not enabled to at
83 * least the Log.VERBOSE level for that tag at creation time then
85 * @param tag th
88 reset(String tag, String label) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DAndroidPrintStream.java29 private final String tag; field in class:AndroidPrintStream
35 * @param tag to log
37 public AndroidPrintStream(int priority, String tag) { argument
38 if (tag == null) {
39 throw new NullPointerException("tag");
43 this.tag = tag;
47 Log.println(priority, tag, line);
/frameworks/base/core/jni/android/graphics/
H A DNinePatchPeeker.cpp23 bool NinePatchPeeker::peek(const char tag[], const void* data, size_t length) { argument
24 if (!strcmp("npTc", tag) && length >= sizeof(Res_png_9patch)) {
50 } else if (!strcmp("npLb", tag) && length == sizeof(int32_t) * 4) {
53 } else if (!strcmp("npOl", tag) && length == 24) { // 4 int32_ts, 1 float, 1 int32_t sized byte
/frameworks/base/services/core/java/com/android/server/firewall/
H A DFilterFactory.java27 protected FilterFactory(String tag) { argument
28 if (tag == null) {
31 mTag = tag;
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DGridLayoutTest.java52 public String tag() { method in class:GridLayoutTest
H A DLinearLayoutTest.java46 public String tag() { method in class:LinearLayoutTest
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLog_Delegate.java43 static int println_native(int bufID, int priority, String tag, String msgs) { argument
44 String prefix = priorityChar(priority) + "/" + tag + ": ";
/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DTrace.java27 * Begins systrace tracing for a given tag. No-op on unsupported platform versions.
29 * @param tag systrace tag to use
33 public static void beginSection(String tag) { argument
35 android.os.Trace.beginSection(tag);
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DTrace.java27 * Begins systrace tracing for a given tag. No-op on unsupported platform versions.
29 * @param tag systrace tag to use
33 public static void beginSection(String tag) { argument
35 android.os.Trace.beginSection(tag);
/frameworks/base/core/java/android/content/
H A DUndoOwner.java35 UndoOwner(String tag) { argument
36 mTag = tag;
40 * Return the unique tag name identifying this owner. This is the tag
/frameworks/base/core/java/android/content/pm/
H A DMacAuthenticatedInputStream.java27 * the end of the data that should be authenticated, the tag can be calculated.
41 public boolean isTagEqual(byte[] tag) { argument
44 if (tag == null || actualTag == null || tag.length != actualTag.length) {
54 for (int i = 0; i < tag.length; i++) {
55 value |= tag[i] ^ actualTag[i];
/frameworks/base/core/java/android/nfc/tech/
H A DNdefFormatable.java50 * Get an instance of {@link NdefFormatable} for the given tag.
53 * This indicates the tag is not NDEF formatable by this Android device.
55 * @param tag an NDEF formatable tag
58 public static NdefFormatable get(Tag tag) { argument
59 if (!tag.hasTech(TagTechnology.NDEF_FORMATABLE)) return null;
61 return new NdefFormatable(tag);
71 public NdefFormatable(Tag tag) throws RemoteException { argument
72 super(tag, TagTechnology.NDEF_FORMATABLE);
76 * Format a tag a
[all...]
H A DNfcB.java45 * Get an instance of {@link NfcB} for the given tag.
47 * This indicates the tag does not support NFC-B.
50 * @param tag an NFC-B compatible tag
53 public static NfcB get(Tag tag) { argument
54 if (!tag.hasTech(TagTechnology.NFC_B)) return null;
56 return new NfcB(tag);
63 public NfcB(Tag tag) throws RemoteException { argument
64 super(tag, TagTechnology.NFC_B);
65 Bundle extras = tag
[all...]
H A DNfcBarcode.java41 * Get an instance of {@link NfcBarcode} for the given tag.
47 * @param tag an NfcBarcode compatible tag
50 public static NfcBarcode get(Tag tag) { argument
51 if (!tag.hasTech(TagTechnology.NFC_BARCODE)) return null;
53 return new NfcBarcode(tag);
63 public NfcBarcode(Tag tag) throws RemoteException { argument
64 super(tag, TagTechnology.NFC_BARCODE);
65 Bundle extras = tag.getTechExtras(TagTechnology.NFC_BARCODE);
74 * Returns the NFC Barcode tag typ
[all...]
H A DNfcV.java46 * Get an instance of {@link NfcV} for the given tag.
48 * This indicates the tag does not support NFC-V.
51 * @param tag an NFC-V compatible tag
54 public static NfcV get(Tag tag) { argument
55 if (!tag.hasTech(TagTechnology.NFC_V)) return null;
57 return new NfcV(tag);
64 public NfcV(Tag tag) throws RemoteException { argument
65 super(tag, TagTechnology.NFC_V);
66 Bundle extras = tag
[all...]
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java35 * the log tag. Only the log levels need to be converted appropriately. For
127 String tag = DalvikLogging.loggerNameToTag(record.getLoggerName());
128 if (!Log.isLoggable(tag, level)) {
134 Log.println(level, tag, message);
140 public void publish(Logger source, String tag, Level level, String message) { argument
143 if (!Log.isLoggable(tag, priority)) {
148 Log.println(priority, tag, message);
/frameworks/base/core/java/com/android/internal/util/
H A DLocalLog.java35 public LocalLog(String tag) { argument
36 mTag = tag;
/frameworks/base/telephony/java/android/telephony/
H A DRlog.java31 public static int v(String tag, String msg) { argument
32 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag, msg);
35 public static int v(String tag, String msg, Throwable tr) { argument
36 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag,
40 public static int d(String tag, String msg) { argument
41 return Log.println_native(Log.LOG_ID_RADIO, Log.DEBUG, tag, msg);
44 public static int d(String tag, String msg, Throwable tr) { argument
45 return Log.println_native(Log.LOG_ID_RADIO, Log.DEBUG, tag,
49 public static int i(String tag, String msg) { argument
50 return Log.println_native(Log.LOG_ID_RADIO, Log.INFO, tag, ms
53 i(String tag, String msg, Throwable tr) argument
58 w(String tag, String msg) argument
62 w(String tag, String msg, Throwable tr) argument
67 w(String tag, Throwable tr) argument
71 e(String tag, String msg) argument
75 e(String tag, String msg, Throwable tr) argument
80 println(int priority, String tag, String msg) argument
84 isLoggable(String tag, int level) argument
[all...]
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DPowerTest.java39 protected String tag() { method in class:PowerTest
H A DStatusBarTest.java48 protected String tag() { method in class:StatusBarTest
H A DToastTest.java48 protected String tag() { method in class:ToastTest

Completed in 4564 milliseconds

12345678910