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

123456

/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.java97 void onTerribleFailure(String tag, TerribleFailure what); argument
101 public void onTerribleFailure(String tag, TerribleFailure what) {
102 RuntimeInit.wtf(tag, what);
111 * @param tag Used to identify the source of a log message. It usually identifies
115 public static int v(String tag, String msg) { argument
116 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg);
121 * @param tag Used to identify the source of a log message. It usually identifies
126 public static int v(String tag, String msg, Throwable tr) { argument
127 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg + '\n' + getStackTraceString(tr));
132 * @param tag Use
136 d(String tag, String msg) argument
147 d(String tag, String msg, Throwable tr) argument
157 i(String tag, String msg) argument
168 i(String tag, String msg, Throwable tr) argument
178 w(String tag, String msg) argument
189 w(String tag, String msg, Throwable tr) argument
211 isLoggable(String tag, int level) argument
219 w(String tag, Throwable tr) argument
229 e(String tag, String msg) argument
240 e(String tag, String msg, Throwable tr) argument
253 wtf(String tag, String msg) argument
263 wtf(String tag, Throwable tr) argument
274 wtf(String tag, String msg, Throwable tr) argument
319 println(int priority, String tag, String msg) argument
328 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
/frameworks/base/core/java/android/nfc/tech/
H A DNfcA.java45 * Get an instance of {@link NfcA} for the given tag.
47 * This indicates the tag does not support NFC-A.
50 * @param tag an NFC-A compatible tag
53 public static NfcA get(Tag tag) { argument
54 if (!tag.hasTech(TagTechnology.NFC_A)) return null;
56 return new NfcA(tag);
63 public NfcA(Tag tag) throws RemoteException { argument
64 super(tag, TagTechnology.NFC_A);
65 Bundle extras = tag
[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 DNfcF.java45 * Get an instance of {@link NfcF} for the given tag.
47 * This indicates the tag does not support NFC-F.
50 * @param tag an NFC-F compatible tag
53 public static NfcF get(Tag tag) { argument
54 if (!tag.hasTech(TagTechnology.NFC_F)) return null;
56 return new NfcF(tag);
63 public NfcF(Tag tag) throws RemoteException { argument
64 super(tag, TagTechnology.NFC_F);
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.java33 * The primary operations on an Ultralight tag are {@link #readPages} and
52 * In either case, {@link NfcA} will also be enumerated on the tag,
59 /** A MIFARE Ultralight compatible tag of unknown type */
61 /** A MIFARE Ultralight tag */
63 /** A MIFARE Ultralight C tag */
75 * Get an instance of {@link MifareUltralight} for the given tag.
77 * {@link Tag#getTechList} - this indicates the tag is not MIFARE
82 * @param tag an MIFARE Ultralight compatible tag
85 public static MifareUltralight get(Tag tag) { argument
95 MifareUltralight(Tag tag) argument
[all...]
H A DIsoDep.java51 * Get an instance of {@link IsoDep} for the given tag.
54 * This indicates the tag does not support ISO-DEP.
56 * @param tag an ISO-DEP compatible tag
59 public static IsoDep get(Tag tag) { argument
60 if (!tag.hasTech(TagTechnology.ISO_DEP)) return null;
62 return new IsoDep(tag);
69 public IsoDep(Tag tag) argument
71 super(tag, TagTechnology.ISO_DEP);
72 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:__anon463
H A Dset_mc_info.h87 const Int tag, /* always pass-in last element's value */
H A Dset_mc_info.cpp48 tag = variable that stores the element instance tag of the
79 pMC_Info->ch_info.tag contents updated with the value of decoded
80 channel element tag
103 structure MC_Info stores the number of channels, channel element tag.
163 pCh_Info->tag = tag;
174 pCh_Info->tag = tag;
256 const Int tag, /* alway
252 set_mc_info( MC_Info *pMC_Info, const tMP4AudioObjectType audioObjectType, const Int sampling_rate_idx, const Int tag, const Int is_cpe, FrameInfo *pWinSeqInfo[], Int sfbwidth128[] ) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
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.java42 * @param tag The tag for this object
48 protected ComprehensionTlv(int tag, boolean cr, int length, byte[] data, argument
50 mTag = tag;
112 /* tag */
113 int tag;
122 case 0x7f: // tag is in three-byte format
123 tag = ((data[curIndex] & 0xff) << 8)
125 cr = (tag & 0x8000) != 0;
126 tag
[all...]
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarNotification.java40 public String tag; field in class:StatusBarNotification
48 public StatusBarNotification(String pkg, int id, String tag, argument
55 this.tag = tag;
69 this.tag = in.readString();
71 this.tag = null;
81 if (this.tag != null) {
83 out.writeString(this.tag);
111 return new StatusBarNotification(this.pkg, this.id, this.tag,
116 return "StatusBarNotification(package=" + pkg + " id=" + id + " tag
[all...]
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java74 public Entry(String tag, long millis) { argument
75 if (tag == null) throw new NullPointerException("tag == null");
77 mTag = tag;
85 public Entry(String tag, long millis, String text) { argument
86 if (tag == null) throw new NullPointerException("tag == null");
89 mTag = tag;
100 public Entry(String tag, long millis, byte[] data, int flags) { argument
101 if (tag
117 Entry(String tag, long millis, ParcelFileDescriptor data, int flags) argument
134 Entry(String tag, long millis, File data, int flags) argument
242 addText(String tag, String data) argument
253 addData(String tag, byte[] data, int flags) argument
267 addFile(String tag, File file, int flags) argument
287 isTagEnabled(String tag) argument
300 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/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
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java34 * the log tag. Only the log levels need to be converted appropriately. For
126 String tag = DalvikLogging.loggerNameToTag(record.getLoggerName());
127 if (!Log.isLoggable(tag, level)) {
133 Log.println(level, tag, message);
139 public void publish(Logger source, String tag, Level level, String message) { argument
142 if (!Log.isLoggable(tag, priority)) {
147 Log.println(priority, tag, message);
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerDataHelper.java90 public void writeEntry(String tag, String logMsg) { argument
91 writeEntry(TrackerEntry.createEntry(tag, logMsg));
103 * Query tracker data, filtering by given tag
105 * @param tag
108 public Cursor query(String tag, int limit) { argument
109 String selection = (tag == null ? null : TrackerEntry.TAG + "=?");
110 String[] selectionArgs = (tag == null ? null : new String[] {tag});
133 * Query tracker data, filtering by given tag. mo limit to number of rows
136 * @param tag
139 query(String tag) argument
[all...]

Completed in 295 milliseconds

123456