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

12345

/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 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 DLog.java96 * @param tag Used to identify the source of a log message. It usually identifies
100 public static int v(String tag, String msg) { argument
101 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg);
106 * @param tag Used to identify the source of a log message. It usually identifies
111 public static int v(String tag, String msg, Throwable tr) { argument
112 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg + '\n' + getStackTraceString(tr));
117 * @param tag Used to identify the source of a log message. It usually identifies
121 public static int d(String tag, String msg) { argument
122 return println_native(LOG_ID_MAIN, DEBUG, tag, msg);
127 * @param tag Use
132 d(String tag, String msg, Throwable tr) argument
142 i(String tag, String msg) argument
153 i(String tag, String msg, Throwable tr) argument
163 w(String tag, String msg) argument
174 w(String tag, String msg, Throwable tr) argument
196 isLoggable(String tag, int level) argument
204 w(String tag, Throwable tr) argument
214 e(String tag, String msg) argument
225 e(String tag, String msg, Throwable tr) argument
238 wtf(String tag, String msg) argument
248 wtf(String tag, Throwable tr) argument
259 wtf(String tag, String msg, Throwable tr) argument
288 println(int priority, String tag, String msg) argument
297 println_native(int bufID, 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.java37 Description(int tag, String name) { argument
38 mTag = tag;
49 public Description get(int tag) { return null; } argument
H A DTimingLogger.java47 * The Log tag to use for checking Log.isLoggable and for
66 * the specific tag. If the Log.isLoggable is not enabled to at
67 * least the Log.VERBOSE level for that tag at creation time then
69 * @param tag the log tag to use while logging the timings
72 public TimingLogger(String tag, String label) { argument
73 reset(tag, label);
78 * the specific tag. If the Log.isLoggable is not enabled to at
79 * least the Log.VERBOSE level for that tag at creation time then
81 * @param tag th
84 reset(String tag, String label) argument
[all...]
/frameworks/base/media/libdrm/mobile2/src/util/xml/
H A DXMLElementImpl.cpp20 XMLElementImpl::XMLElementImpl(const DOMString *tag) argument
22 if (tag)
24 mTagName = *tag;
87 const NodeImpl* XMLElementImpl::findSoloChildNode(const char* tag) const
89 if (NULL == tag)
98 token.assign(tag);
110 const string* XMLElementImpl::getSoloText(const char* tag) const
112 const NodeImpl *textNode = this->findSoloChildNode(tag);
127 const XMLElementImpl* XMLElementImpl::getSoloElement(const char* tag) const
129 const NodeImpl *node = findSoloChildNode(tag);
[all...]
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Ds_ch_info.h77 Int tag; /* element tag */ member in struct:__anon279
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/android/os/
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...]
H A DDropBoxManager.java70 public Entry(String tag, long millis) { argument
71 this(tag, millis, (Object) null, IS_EMPTY);
75 public Entry(String tag, long millis, String text) { argument
76 this(tag, millis, (Object) text.getBytes(), IS_TEXT);
83 public Entry(String tag, long millis, byte[] data, int flags) { argument
84 this(tag, millis, (Object) data, flags);
91 public Entry(String tag, long millis, ParcelFileDescriptor data, int flags) { argument
92 this(tag, millis, (Object) data, flags);
99 public Entry(String tag, long millis, File data, int flags) throws IOException { argument
100 this(tag, milli
105 Entry(String tag, long millis, Object value, int flags) argument
216 addText(String tag, String data) argument
227 addData(String tag, byte[] data, int flags) argument
241 addFile(String tag, File file, int flags) argument
261 isTagEnabled(String tag) argument
274 getNextEntry(String tag, long msec) argument
[all...]
H A DIPowerManager.aidl23 void acquireWakeLock(int flags, IBinder lock, String tag);
30 void setPokeLock(int pokey, IBinder lock, String tag);
/frameworks/base/media/libdrm/mobile2/include/util/xml/
H A DXMLElementImpl.h32 * @param tag The name of the tag.
34 XMLElementImpl(const DOMString *tag);
46 * Get the tag name of the element.
47 * return tag name.
79 * Find the first child node in element by its tag name.
81 * @param tag the specific tag name to be searched.
84 const NodeImpl* findSoloChildNode(const char* tag) const;
88 * @param tag th
[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...]
/frameworks/base/media/libstagefright/
H A DESDS.cpp67 uint8_t *tag, size_t *data_offset, size_t *data_size) const {
72 *tag = mData[offset++];
100 uint8_t tag; local
104 skipDescriptorHeader(0, mSize, &tag, &data_offset, &data_size);
110 if (tag != kTag_ESDescriptor) {
155 uint8_t tag; local
158 offset, size, &tag, &sub_offset, &sub_size);
164 if (tag != kTag_DecoderConfigDescriptor) {
189 uint8_t tag; local
192 offset, size, &tag,
65 skipDescriptorHeader( size_t offset, size_t size, uint8_t *tag, size_t *data_offset, size_t *data_size) const argument
[all...]
/frameworks/base/core/java/android/app/
H A DINotificationManager.aidl35 void enqueueNotificationWithTag(String pkg, String tag, int id, in Notification notification, inout int[] idReceived);
36 void cancelNotificationWithTag(String pkg, String tag, int id);
H A DKeyguardManager.java45 KeyguardLock(String tag) { argument
46 mTag = tag;
109 * @param tag A tag that informally identifies who you are (for debugging who
115 public KeyguardLock newKeyguardLock(String tag) { argument
116 return new KeyguardLock(tag);
/frameworks/base/core/jni/
H A Dandroid_util_Log.cpp18 #define LOG_NAMESPACE "log.tag."
58 static jboolean android_util_Log_isLoggable(JNIEnv* env, jobject clazz, jstring tag, jint level) argument
67 if (tag == NULL) {
73 const char* chars = env->GetStringUTFChars(tag, NULL);
78 snprintf(buf2, sizeof(buf2), "Log tag \"%s\" exceeds limit of %d characters\n",
82 env->ReleaseStringUTFChars(tag, chars);
91 env->ReleaseStringUTFChars(tag, chars);
101 * public static native int println_native(int buffer, int priority, String tag, String msg)
106 const char* tag = NULL; local
130 tag
[all...]

Completed in 274 milliseconds

12345