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

12345678910

/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/telephony/java/android/telephony/
H A DRlog.java36 public static int v(String tag, String msg) { argument
37 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag, msg);
40 public static int v(String tag, String msg, Throwable tr) { argument
41 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag,
45 public static int d(String tag, String msg) { argument
46 return Log.println_native(Log.LOG_ID_RADIO, Log.DEBUG, tag, msg);
49 public static int d(String tag, String msg, Throwable tr) { argument
50 return Log.println_native(Log.LOG_ID_RADIO, Log.DEBUG, tag,
54 public static int i(String tag, String msg) { argument
55 return Log.println_native(Log.LOG_ID_RADIO, Log.INFO, tag, ms
58 i(String tag, String msg, Throwable tr) argument
63 w(String tag, String msg) argument
67 w(String tag, String msg, Throwable tr) argument
72 w(String tag, Throwable tr) argument
76 e(String tag, String msg) argument
80 e(String tag, String msg, Throwable tr) argument
85 println(int priority, String tag, String msg) argument
89 isLoggable(String tag, int level) argument
[all...]
/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/base/core/jni/
H A Dandroid_util_Log.h26 bool android_util_Log_isVerboseLogEnabled(const char* tag);
/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 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...]
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...]
/frameworks/av/camera/
H A DCameraMetadata.cpp156 status_t CameraMetadata::checkType(uint32_t tag, uint8_t expectedType) { argument
157 int tagType = get_camera_metadata_tag_type(tag);
159 ALOGE("Update metadata entry: Unknown tag %d", tag);
163 ALOGE("Mismatched tag type when updating entry %s (%d) of type %s; "
165 get_camera_metadata_tag_name(tag), tag,
173 status_t CameraMetadata::update(uint32_t tag, argument
180 if ( (res = checkType(tag, TYPE_INT32)) != OK) {
183 return updateImpl(tag, (cons
186 update(uint32_t tag, const uint8_t *data, size_t data_count) argument
199 update(uint32_t tag, const float *data, size_t data_count) argument
212 update(uint32_t tag, const int64_t *data, size_t data_count) argument
225 update(uint32_t tag, const double *data, size_t data_count) argument
238 update(uint32_t tag, const camera_metadata_rational_t *data, size_t data_count) argument
251 update(uint32_t tag, const String8 &string) argument
264 updateImpl(uint32_t tag, const void *data, size_t data_count) argument
315 find(uint32_t tag) argument
342 erase(uint32_t tag) argument
[all...]
/frameworks/base/services/java/com/android/server/firewall/
H A DFilterFactory.java27 protected FilterFactory(String tag) { argument
28 if (tag == null) {
31 mTag = tag;
/frameworks/support/v4/ics/android/support/v4/net/
H A DTrafficStatsCompatIcs.java40 public static void incrementOperationCount(int tag, int operationCount) { argument
41 TrafficStats.incrementOperationCount(tag, operationCount);
44 public static void setThreadStatsTag(int tag) { argument
45 TrafficStats.setThreadStatsTag(tag);
/frameworks/av/include/camera/
H A DCameraMetadata.h120 status_t update(uint32_t tag,
122 status_t update(uint32_t tag,
124 status_t update(uint32_t tag,
126 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,
136 status_t update(uint32_t tag, Vector<T> data) { argument
137 return update(tag, data.array(), data.size());
141 * Check if a metadata entry exists for a given tag i
[all...]
/frameworks/base/core/java/android/os/
H A DIUpdateLock.aidl25 void acquireUpdateLock(IBinder token, String tag);
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 DTokenWatcher.java40 * @param tag A debugging tag for this TokenWatcher
42 public TokenWatcher(Handler h, String tag) argument
45 mTag = tag != null ? tag : "TokenWatcher";
65 * @param tag A string used by the {@link #dump} method for debugging,
68 public void acquire(IBinder token, String tag) argument
75 Death d = new Death(token, tag);
140 a.add("[" + i + "] " + mTokens.get(b).tag + " - " + b);
183 String tag; field in class:TokenWatcher.Death
185 Death(IBinder token, String tag) argument
[all...]
/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/support/v4/java/android/support/v4/net/
H A DTrafficStatsCompat.java34 void incrementOperationCount(int tag, int operationCount); argument
35 void setThreadStatsTag(int tag); argument
67 public void incrementOperationCount(int tag, int operationCount) { argument
71 public void setThreadStatsTag(int tag) { argument
72 mThreadSocketTags.get().statsTag = tag;
101 public void incrementOperationCount(int tag, int operationCount) { argument
102 TrafficStatsCompatIcs.incrementOperationCount(tag, operationCount);
106 public void setThreadStatsTag(int tag) { argument
107 TrafficStatsCompatIcs.setThreadStatsTag(tag);
132 * Clear active tag use
166 incrementOperationCount(int tag, int operationCount) argument
181 setThreadStatsTag(int tag) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DBerTlv.java38 private BerTlv(int tag, List<ComprehensionTlv> ctlvs, boolean lengthValid) { argument
39 mTag = tag;
54 * Gets a tag id of the BER-TLV object.
56 * @return A tag integer.
81 int tag, length = 0;
85 /* tag */
86 tag = data[curIndex++] & 0xff;
87 if (tag == BER_PROACTIVE_COMMAND_TAG) {
105 "Expected first byte to be length or a length tag and < 0x81" +
110 if (ComprehensionTlvTag.COMMAND_DETAILS.value() == (tag
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DGestureRecorder.java79 public String tag, info; field in class:GestureRecorder.Gesture.TagRecord
80 public TagRecord(long when, String tag, String info) { argument
82 this.tag = tag;
86 return String.format("{\"type\":\"tag\", \"time\":%d, \"tag\":\"%s\", \"info\":\"%s\"}",
88 this.tag,
114 public void tag(long when, String tag, String info) { argument
115 mRecords.add(new TagRecord(when, tag, inf
171 tag(long when, String tag, String info) argument
182 tag(long when, String tag) argument
186 tag(String tag) argument
190 tag(String tag, String info) argument
[all...]
/frameworks/native/libs/utils/
H A DLog.cpp24 LogIfSlow::LogIfSlow(const char* tag, android_LogPriority priority, argument
26 mTag(tag), mPriority(priority), mTimeoutMillis(timeoutMillis), mMessage(message),

Completed in 572 milliseconds

12345678910