Searched refs:tag (Results 1 - 25 of 188) sorted by relevance

12345678

/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);
H A DIDropBoxManagerService.aidl38 boolean isTagEnabled(String tag);
41 DropBoxManager.Entry getNextEntry(String tag, long millis);
/frameworks/base/core/java/android/util/
H A DLog.java98 void onTerribleFailure(String tag, TerribleFailure what); argument
102 public void onTerribleFailure(String tag, TerribleFailure what) {
103 RuntimeInit.wtf(tag, what);
112 * @param tag Used to identify the source of a log message. It usually identifies
116 public static int v(String tag, String msg) { argument
117 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg);
122 * @param tag Used to identify the source of a log message. It usually identifies
127 public static int v(String tag, String msg, Throwable tr) { argument
128 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg + '\n' + getStackTraceString(tr));
133 * @param tag Use
137 d(String tag, String msg) argument
148 d(String tag, String msg, Throwable tr) argument
158 i(String tag, String msg) argument
169 i(String tag, String msg, Throwable tr) argument
179 w(String tag, String msg) argument
190 w(String tag, String msg, Throwable tr) argument
212 isLoggable(String tag, int level) argument
220 w(String tag, Throwable tr) argument
230 e(String tag, String msg) argument
241 e(String tag, String msg, Throwable tr) argument
254 wtf(String tag, String msg) argument
264 wtf(String tag, Throwable tr) argument
275 wtf(String tag, String msg, Throwable tr) argument
331 println(int priority, String tag, String msg) argument
340 println_native(int bufID, int priority, String tag, String msg) argument
[all...]
H A DSlog.java32 public static int v(String tag, String msg) { argument
33 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag, msg);
36 public static int v(String tag, String msg, Throwable tr) { argument
37 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag,
41 public static int d(String tag, String msg) { argument
42 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag, msg);
45 public static int d(String tag, String msg, Throwable tr) { argument
46 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag,
50 public static int i(String tag, String msg) { argument
51 return Log.println_native(Log.LOG_ID_SYSTEM, Log.INFO, tag, ms
54 i(String tag, String msg, Throwable tr) argument
59 w(String tag, String msg) argument
63 w(String tag, String msg, Throwable tr) argument
68 w(String tag, Throwable tr) argument
72 e(String tag, String msg) argument
76 e(String tag, String msg, Throwable tr) argument
81 println(int priority, String tag, String msg) argument
[all...]
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 DEventLogTags.java38 Description(int tag, String name) { argument
39 mTag = tag;
50 public Description get(int tag) { return null; } argument
H A DLogWriter.java30 * and tag.
38 * @param tag A string tag to associate with each printed log statement.
40 public LogWriter(int priority, String tag) { argument
42 mTag = tag;
50 public LogWriter(int priority, String tag, int buffer) { argument
52 mTag = tag;
/frameworks/compile/libbcc/helper/
H A DDebugHelper.c11 int __android_log_print(int prio, const char *tag, const char *fmt, ...) { argument
19 return __android_log_write(prio, tag, buf);
22 int __android_log_write(int prio, const char *tag, const char *msg) { argument
23 if (!tag) {
24 tag = "";
27 return fprintf(stderr, "[%s] %s", tag, msg);
/frameworks/base/core/java/android/nfc/tech/
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 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...]
H A DMifareUltralight.java36 * The primary operations on an Ultralight tag are {@link #readPages} and
55 * In either case, {@link NfcA} will also be enumerated on the tag,
64 /** A MIFARE Ultralight compatible tag of unknown type */
66 /** A MIFARE Ultralight tag */
68 /** A MIFARE Ultralight C tag */
83 * Get an instance of {@link MifareUltralight} for the given tag.
85 * {@link Tag#getTechList} - this indicates the tag is not MIFARE
90 * @param tag an MIFARE Ultralight compatible tag
93 public static MifareUltralight get(Tag tag) { argument
103 MifareUltralight(Tag tag) argument
[all...]
H A DIsoDep.java52 * Get an instance of {@link IsoDep} for the given tag.
55 * This indicates the tag does not support ISO-DEP.
57 * @param tag an ISO-DEP compatible tag
60 public static IsoDep get(Tag tag) { argument
61 if (!tag.hasTech(TagTechnology.ISO_DEP)) return null;
63 return new IsoDep(tag);
70 public IsoDep(Tag tag) argument
72 super(tag, TagTechnology.ISO_DEP);
73 Bundle extras = tag
[all...]
H A DNfcA.java49 * Get an instance of {@link NfcA} for the given tag.
51 * This indicates the tag does not support NFC-A.
54 * @param tag an NFC-A compatible tag
57 public static NfcA get(Tag tag) { argument
58 if (!tag.hasTech(TagTechnology.NFC_A)) return null;
60 return new NfcA(tag);
67 public NfcA(Tag tag) throws RemoteException { argument
68 super(tag, TagTechnology.NFC_A);
69 Bundle extras = tag
[all...]
H A DNfcF.java49 * Get an instance of {@link NfcF} for the given tag.
51 * This indicates the tag does not support NFC-F.
54 * @param tag an NFC-F compatible tag
57 public static NfcF get(Tag tag) { argument
58 if (!tag.hasTech(TagTechnology.NFC_F)) return null;
60 return new NfcF(tag);
67 public NfcF(Tag tag) throws RemoteException { argument
68 super(tag, TagTechnology.NFC_F);
69 Bundle extras = tag
[all...]
/frameworks/base/include/ui/
H A DGraphicLog.h28 static void logImpl(int32_t tag, int32_t buffer);
29 static void logImpl(int32_t tag, int32_t identity, int32_t buffer);
53 inline void log(int32_t tag, int32_t buffer) { argument
55 logImpl(tag, buffer);
57 inline void log(int32_t tag, int32_t identity, int32_t buffer) { argument
59 logImpl(tag, identity, buffer);
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Ds_ch_info.h77 Int tag; /* element tag */ member in struct:__anon552
H A Dset_mc_info.h87 const Int tag, /* always pass-in last element's value */
/frameworks/base/telephony/java/com/android/internal/telephony/cat/
H A DBerTlv.java37 private BerTlv(int tag, List<ComprehensionTlv> ctlvs) { argument
38 mTag = tag;
52 * Gets a tag id of the BER-TLV object.
54 * @return A tag integer.
70 int tag, length = 0;
73 /* tag */
74 tag = data[curIndex++] & 0xff;
75 if (tag == BER_PROACTIVE_COMMAND_TAG) {
92 if (ComprehensionTlvTag.COMMAND_DETAILS.value() == (tag & ~0x80)) {
93 tag
[all...]
H A DComprehensionTlv.java43 * @param tag The tag for this object
49 protected ComprehensionTlv(int tag, boolean cr, int length, byte[] data, argument
51 mTag = tag;
119 /* tag */
120 int tag;
132 case 0x7f: // tag is in three-byte format
133 tag = ((data[curIndex] & 0xff) << 8)
135 cr = (tag & 0x8000) != 0;
136 tag
[all...]
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java73 * string containing the dropbox tag.
75 public static final String EXTRA_TAG = "tag";
98 public Entry(String tag, long millis) { argument
99 if (tag == null) throw new NullPointerException("tag == null");
101 mTag = tag;
109 public Entry(String tag, long millis, String text) { argument
110 if (tag == null) throw new NullPointerException("tag == null");
113 mTag = tag;
124 Entry(String tag, long millis, byte[] data, int flags) argument
141 Entry(String tag, long millis, ParcelFileDescriptor data, int flags) argument
158 Entry(String tag, long millis, File data, int flags) argument
271 addText(String tag, String data) argument
282 addData(String tag, byte[] data, int flags) argument
296 addFile(String tag, File file, int flags) argument
316 isTagEnabled(String tag) argument
329 getNextEntry(String tag, long msec) argument
[all...]
H A DLatencyTimer.java60 * @param tag string used for printing out the result. This should be unique at each point of
64 public void sample(String tag, long delta) { argument
65 long[] array = getArray(tag);
76 Log.i(TAG, tag + " average = " + totalDelta / mSampleSize);
80 private long[] getArray(String tag) { argument
81 long[] data = store.get(tag);
84 data = store.get(tag);
87 store.put(tag, data);
H A DTokenWatcher.java38 * @param tag A debugging tag for this TokenWatcher
40 public TokenWatcher(Handler h, String tag) argument
43 mTag = tag != null ? tag : "TokenWatcher";
63 * @param tag A string used by the {@link #dump} method for debugging,
66 public void acquire(IBinder token, String tag) argument
73 Death d = new Death(token, tag);
123 Log.i(mTag, "[" + i + "] " + mTokens.get(b).tag + " - " + b);
165 String tag; field in class:TokenWatcher.Death
167 Death(IBinder token, String tag) argument
[all...]
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarNotification.java45 public String tag; field in class:StatusBarNotification
54 public StatusBarNotification(String pkg, int id, String tag, argument
61 this.tag = tag;
77 this.tag = in.readString();
79 this.tag = null;
90 if (this.tag != null) {
92 out.writeString(this.tag);
121 return new StatusBarNotification(this.pkg, this.id, this.tag,
126 return "StatusBarNotification(package=" + pkg + " id=" + id + " tag
[all...]
/frameworks/base/core/java/com/android/server/
H A DNetworkManagementSocketTagger.java59 public static void setThreadSocketStatsTag(int tag) { argument
60 threadSocketTags.get().statsTag = tag;
72 public void tag(FileDescriptor fd) throws SocketException { method in class:NetworkManagementSocketTagger
82 private void tagSocketFd(FileDescriptor fd, int tag, int uid) { argument
84 if (tag == -1 && uid == -1) return;
86 errno = native_tagSocketFd(fd, tag, uid);
89 + tag + ", " +
133 * Convert {@code /proc/} tag format to {@link Integer}. Assumes incoming
141 private static native int native_tagSocketFd(FileDescriptor fd, int tag, int uid); argument
144 private static native int native_deleteTagData(int tag, in argument
[all...]
/frameworks/base/core/java/android/text/
H A DSpanned.java158 public int getSpanStart(Object tag); argument
164 public int getSpanEnd(Object tag); argument
171 public int getSpanFlags(Object tag); argument

Completed in 305 milliseconds

12345678