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

1234567891011>>

/frameworks/base/core/jni/android/graphics/
H A DNinePatchPeeker.cpp23 bool NinePatchPeeker::readChunk(const char tag[], const void* data, size_t length) { argument
24 if (!strcmp("npTc", tag) && length >= sizeof(Res_png_9patch)) {
38 } else if (!strcmp("npLb", tag) && length == sizeof(int32_t) * 4) {
41 } else if (!strcmp("npOl", tag) && length == 24) { // 4 int32_ts, 1 float, 1 int32_t sized byte
/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterBlobArgument.java27 public KeymasterBlobArgument(int tag, byte[] blob) { argument
28 super(tag);
29 switch (KeymasterDefs.getTagType(tag)) {
34 throw new IllegalArgumentException("Bad blob tag " + tag);
39 public KeymasterBlobArgument(int tag, Parcel in) { argument
40 super(tag);
H A DKeymasterBooleanArgument.java29 public KeymasterBooleanArgument(int tag) { argument
30 super(tag);
31 switch (KeymasterDefs.getTagType(tag)) {
35 throw new IllegalArgumentException("Bad bool tag " + tag);
39 public KeymasterBooleanArgument(int tag, Parcel in) { argument
40 super(tag);
H A DKeymasterDateArgument.java28 public KeymasterDateArgument(int tag, Date date) { argument
29 super(tag);
30 switch (KeymasterDefs.getTagType(tag)) {
34 throw new IllegalArgumentException("Bad date tag " + tag);
39 public KeymasterDateArgument(int tag, Parcel in) { argument
40 super(tag);
H A DKeymasterIntArgument.java27 public KeymasterIntArgument(int tag, int value) { argument
28 super(tag);
29 switch (KeymasterDefs.getTagType(tag)) {
36 throw new IllegalArgumentException("Bad int tag " + tag);
41 public KeymasterIntArgument(int tag, Parcel in) { argument
42 super(tag);
H A DKeymasterLongArgument.java27 public KeymasterLongArgument(int tag, long value) { argument
28 super(tag);
29 switch (KeymasterDefs.getTagType(tag)) {
34 throw new IllegalArgumentException("Bad long tag " + tag);
39 public KeymasterLongArgument(int tag, Parcel in) { argument
40 super(tag);
/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
/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/packages/StatementService/src/com/android/statementservice/
H A DExceptionLoggingFutureTask.java32 public ExceptionLoggingFutureTask(Callable<V> callable, String tag) { argument
34 mTag = tag;
/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/services/core/java/com/android/server/timezone/
H A DPermissionHelper.java28 boolean checkDumpPermission(String tag, PrintWriter printWriter); argument
/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/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/av/camera/include/camera/
H A DCameraMetadata.h129 status_t update(uint32_t tag,
131 status_t update(uint32_t tag,
133 status_t update(uint32_t tag,
135 status_t update(uint32_t tag,
137 status_t update(uint32_t tag,
139 status_t update(uint32_t tag,
141 status_t update(uint32_t tag,
147 status_t update(uint32_t tag, Vector<T> data) { argument
148 return update(tag, data.array(), data.size());
152 * Check if a metadata entry exists for a given tag i
[all...]
/frameworks/av/camera/ndk/
H A DNdkCameraMetadata.cpp31 const ACameraMetadata* acm, uint32_t tag, ACameraMetadata_const_entry* entry) {
34 ALOGE("%s: invalid argument! metadata %p, tag 0x%x, entry %p",
35 __FUNCTION__, acm, tag, entry);
38 return acm->getConstEntry(tag, entry);
30 ACameraMetadata_getConstEntry( const ACameraMetadata* acm, uint32_t tag, ACameraMetadata_const_entry* entry) argument
/frameworks/av/include/camera/
H A DCameraMetadata.h129 status_t update(uint32_t tag,
131 status_t update(uint32_t tag,
133 status_t update(uint32_t tag,
135 status_t update(uint32_t tag,
137 status_t update(uint32_t tag,
139 status_t update(uint32_t tag,
141 status_t update(uint32_t tag,
147 status_t update(uint32_t tag, Vector<T> data) { argument
148 return update(tag, data.array(), data.size());
152 * Check if a metadata entry exists for a given tag i
[all...]
/frameworks/base/apct-tests/perftests/multiuser/src/android/multiuser/
H A DBenchmarkResultsReporter.java55 private void logSummary(String tag, String summary, ArrayList<Long> durations) { argument
61 Log.d(tag, sb.toString());
/frameworks/base/core/java/android/content/
H A DUndoOwner.java35 UndoOwner(String tag, UndoManager manager) { argument
36 if (tag == null) {
37 throw new NullPointerException("tag can't be null");
42 mTag = tag;
47 * 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...]

Completed in 667 milliseconds

1234567891011>>