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

1234567891011>>

/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/ex/camera2/portability/src/com/android/ex/camera2/portability/debug/
H A DLog.java21 * All Camera logging using this class will use this tag prefix.
26 * adb shell setprop log.tag.CAM2PORT_ VERBOSE
27 * adb shell setprop log.tag.CAM2PORT_ ""
33 * This class restricts the length of the log tag to be less than the
34 * framework limit and also prepends the common tag prefix defined by
44 public Tag(String tag) { argument
45 final int lenDiff = tag.length() - MAX_TAG_LEN;
47 w(TAG, "Tag " + tag + " is " + lenDiff + " chars longer than limit.");
49 mValue = CAMERA_LOGTAG_PREFIX + (lenDiff > 0 ? tag.substring(0, MAX_TAG_LEN) : tag);
58 d(Tag tag, String msg) argument
64 d(Tag tag, String msg, Throwable tr) argument
70 e(Tag tag, String msg) argument
76 e(Tag tag, String msg, Throwable tr) argument
82 i(Tag tag, String msg) argument
88 i(Tag tag, String msg, Throwable tr) argument
94 v(Tag tag, String msg) argument
100 v(Tag tag, String msg, Throwable tr) argument
106 w(Tag tag, String msg) argument
112 w(Tag tag, String msg, Throwable tr) argument
118 isLoggable(Tag tag, int level) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DRlog.java31 public static int v(String tag, String msg) { argument
32 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag, msg);
35 public static int v(String tag, String msg, Throwable tr) { argument
36 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag,
40 public static int d(String tag, String msg) { argument
41 return Log.println_native(Log.LOG_ID_RADIO, Log.DEBUG, tag, msg);
44 public static int d(String tag, String msg, Throwable tr) { argument
45 return Log.println_native(Log.LOG_ID_RADIO, Log.DEBUG, tag,
49 public static int i(String tag, String msg) { argument
50 return Log.println_native(Log.LOG_ID_RADIO, Log.INFO, tag, ms
53 i(String tag, String msg, Throwable tr) argument
58 w(String tag, String msg) argument
62 w(String tag, String msg, Throwable tr) argument
67 w(String tag, Throwable tr) argument
71 e(String tag, String msg) argument
75 e(String tag, String msg, Throwable tr) argument
80 println(int priority, String tag, String msg) argument
84 isLoggable(String tag, int level) argument
[all...]
/frameworks/multidex/library/test/src/android/util/
H A DLog.java63 * @param tag Used to identify the source of a log message. It usually identifies
67 public static int v(String tag, String msg) { argument
68 return println(LOG_ID_MAIN, VERBOSE, tag, msg);
73 * @param tag Used to identify the source of a log message. It usually identifies
78 public static int v(String tag, String msg, Throwable tr) { argument
79 return println(LOG_ID_MAIN, VERBOSE, tag, msg + '\n' + getStackTraceString(tr));
84 * @param tag Used to identify the source of a log message. It usually identifies
88 public static int d(String tag, String msg) { argument
89 return println(LOG_ID_MAIN, DEBUG, tag, msg);
94 * @param tag Use
99 d(String tag, String msg, Throwable tr) argument
109 i(String tag, String msg) argument
120 i(String tag, String msg, Throwable tr) argument
130 w(String tag, String msg) argument
141 w(String tag, String msg, Throwable tr) argument
151 w(String tag, Throwable tr) argument
161 e(String tag, String msg) argument
172 e(String tag, String msg, Throwable tr) argument
210 println(int priority, String tag, String msg) argument
221 println(int bufID, int priority, String tag, String msg) argument
[all...]
/frameworks/base/core/java/android/util/
H A DSlog.java27 public static int v(String tag, String msg) { argument
28 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag, msg);
31 public static int v(String tag, String msg, Throwable tr) { argument
32 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag,
36 public static int d(String tag, String msg) { argument
37 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag, msg);
40 public static int d(String tag, String msg, Throwable tr) { argument
41 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag,
45 public static int i(String tag, String msg) { argument
46 return Log.println_native(Log.LOG_ID_SYSTEM, Log.INFO, tag, ms
49 i(String tag, String msg, Throwable tr) argument
54 w(String tag, String msg) argument
58 w(String tag, String msg, Throwable tr) argument
63 w(String tag, Throwable tr) argument
67 e(String tag, String msg) argument
71 e(String tag, String msg, Throwable tr) argument
81 wtf(String tag, String msg) argument
90 wtfStack(String tag, String msg) argument
99 wtf(String tag, Throwable tr) argument
108 wtf(String tag, String msg, Throwable tr) argument
112 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 DLog.java99 void onTerribleFailure(String tag, TerribleFailure what, boolean system); argument
103 public void onTerribleFailure(String tag, TerribleFailure what, boolean system) {
104 RuntimeInit.wtf(tag, what, system);
113 * @param tag Used to identify the source of a log message. It usually identifies
117 public static int v(String tag, String msg) { argument
118 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg);
123 * @param tag Used to identify the source of a log message. It usually identifies
128 public static int v(String tag, String msg, Throwable tr) { argument
129 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg + '\n' + getStackTraceString(tr));
134 * @param tag Use
138 d(String tag, String msg) argument
149 d(String tag, String msg, Throwable tr) argument
159 i(String tag, String msg) argument
170 i(String tag, String msg, Throwable tr) argument
180 w(String tag, String msg) argument
191 w(String tag, String msg, Throwable tr) argument
213 isLoggable(String tag, int level) argument
221 w(String tag, Throwable tr) argument
231 e(String tag, String msg) argument
242 e(String tag, String msg, Throwable tr) argument
255 wtf(String tag, String msg) argument
264 wtfStack(String tag, String msg) argument
274 wtf(String tag, Throwable tr) argument
285 wtf(String tag, String msg, Throwable tr) argument
289 wtf(int logId, String tag, String msg, Throwable tr, boolean localStack, boolean system) argument
348 println(int priority, String tag, String msg) argument
358 println_native(int bufID, int priority, String tag, String msg) argument
[all...]
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/jni/
H A Dandroid_util_Log.h26 bool android_util_Log_isVerboseLogEnabled(const char* tag);
/frameworks/support/v4/eclair/android/support/v4/app/
H A DNotificationManagerCompatEclair.java23 static void cancelNotification(NotificationManager notificationManager, String tag, argument
25 notificationManager.cancel(tag, id);
28 public static void postNotification(NotificationManager notificationManager, String tag, int id, argument
30 notificationManager.notify(tag, id, notification);
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
H A DObexAppParameters.java43 byte tag = raw[i++];
53 this.add(tag, val);
99 public boolean exists(byte tag) { argument
100 return mParams.containsKey(tag);
103 public void add(byte tag, byte val) { argument
105 mParams.put(tag, bval);
108 public void add(byte tag, short val) { argument
110 mParams.put(tag, bval);
113 public void add(byte tag, int val) { argument
115 mParams.put(tag, bva
118 add(byte tag, long val) argument
123 add(byte tag, String val) argument
128 add(byte tag, byte[] bval) argument
132 getByte(byte tag) argument
142 getShort(byte tag) argument
152 getInt(byte tag) argument
162 getString(byte tag) argument
172 getByteArray(byte tag) argument
[all...]
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/utils/
H A DObexAppParameters.java43 byte tag = raw[i++];
53 this.add(tag, val);
99 public boolean exists(byte tag) { argument
100 return mParams.containsKey(tag);
103 public void add(byte tag, byte val) { argument
105 mParams.put(tag, bval);
108 public void add(byte tag, short val) { argument
110 mParams.put(tag, bval);
113 public void add(byte tag, int val) { argument
115 mParams.put(tag, bva
118 add(byte tag, long val) argument
123 add(byte tag, String val) argument
128 add(byte tag, byte[] bval) argument
132 getByte(byte tag) argument
142 getShort(byte tag) argument
152 getInt(byte tag) argument
162 getString(byte tag) argument
172 getByteArray(byte tag) argument
[all...]
/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...]
/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/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/support/v4/java/android/support/v4/app/
H A DINotificationSideChannel.aidl31 void notify(String packageName, int id, String tag, in Notification notification);
36 void cancel(String packageName, int id, String tag);
/frameworks/av/camera/
H A DVendorTagDescriptor.cpp39 static const char* vendor_tag_descriptor_get_section_name(const vendor_tag_ops_t* v, uint32_t tag);
40 static const char* vendor_tag_descriptor_get_tag_name(const vendor_tag_ops_t* v, uint32_t tag);
41 static int vendor_tag_descriptor_get_tag_type(const vendor_tag_ops_t* v, uint32_t tag);
68 ALOGE("%s: tag count %d from vendor ops is invalid.", __FUNCTION__, tagCount);
85 uint32_t tag = tagArray[i]; local
86 if (tag < CAMERA_METADATA_VENDOR_TAG_BOUNDARY) {
87 ALOGE("%s: vendor tag %d not in vendor tag section.", __FUNCTION__, tag);
90 const char *tagName = vOps->get_tag_name(vOps, tag);
118 uint32_t tag = tagArray[i]; local
[all...]
/frameworks/av/include/camera/
H A DCameraMetadata.h126 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,
134 status_t update(uint32_t tag,
136 status_t update(uint32_t tag,
138 status_t update(uint32_t tag,
142 status_t update(uint32_t tag, Vector<T> data) { argument
143 return update(tag, data.array(), data.size());
147 * Check if a metadata entry exists for a given tag i
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifReader.java48 ExifTag tag = null;
57 tag = parser.getTag();
58 if (!tag.hasValue()) {
59 parser.registerForTagValue(tag);
61 exifData.getIfdData(tag.getIfd()).setTag(tag);
65 tag = parser.getTag();
66 if (tag.getDataType() == ExifTag.TYPE_UNDEFINED) {
67 parser.readFullTagValue(tag);
69 exifData.getIfdData(tag
[all...]
/frameworks/base/core/java/android/content/
H A DUndoOwner.java35 UndoOwner(String tag) { argument
36 mTag = tag;
40 * Return the unique tag name identifying this owner. This is the tag
/frameworks/base/core/java/android/nfc/
H A DIAppCallback.aidl29 void onTagDiscovered(in Tag tag);
/frameworks/base/core/java/android/os/
H A DIUpdateLock.aidl25 void acquireUpdateLock(IBinder token, String tag);

Completed in 2129 milliseconds

1234567891011>>