Home
last modified time | relevance | path

Searched defs:tag (Results 1 – 25 of 327) sorted by relevance

12345678910>>...14

/frameworks/base/core/java/android/util/
DSlog.java27 public static int v(String tag, String msg) { in v()
31 public static int v(String tag, String msg, Throwable tr) { in v()
36 public static int d(String tag, String msg) { in d()
40 public static int d(String tag, String msg, Throwable tr) { in d()
45 public static int i(String tag, String msg) { in i()
49 public static int i(String tag, String msg, Throwable tr) { in i()
54 public static int w(String tag, String msg) { in w()
58 public static int w(String tag, String msg, Throwable tr) { in w()
63 public static int w(String tag, Throwable tr) { in w()
67 public static int e(String tag, String msg) { in e()
[all …]
DLog.java99 void onTerribleFailure(String tag, TerribleFailure what, boolean system); in onTerribleFailure()
117 public static int v(String tag, String msg) { in v()
128 public static int v(String tag, String msg, Throwable tr) { in v()
138 public static int d(String tag, String msg) { in d()
149 public static int d(String tag, String msg, Throwable tr) { in d()
159 public static int i(String tag, String msg) { in i()
170 public static int i(String tag, String msg, Throwable tr) { in i()
180 public static int w(String tag, String msg) { in w()
191 public static int w(String tag, String msg, Throwable tr) { in w()
213 public static native boolean isLoggable(String tag, int level); in isLoggable()
[all …]
DEventLog.java174 public static native int writeEvent(int tag, int value); in writeEvent()
182 public static native int writeEvent(int tag, long value); in writeEvent()
190 public static native int writeEvent(int tag, float value); in writeEvent()
198 public static native int writeEvent(int tag, String str); in writeEvent()
206 public static native int writeEvent(int tag, Object... list); in writeEvent()
222 public static String getTagName(int tag) { in getTagName()
248 Pattern tag = Pattern.compile(TAG_PATTERN); in readTagsFile() local
/frameworks/base/telephony/java/android/telephony/
DRlog.java31 public static int v(String tag, String msg) { in v()
35 public static int v(String tag, String msg, Throwable tr) { in v()
40 public static int d(String tag, String msg) { in d()
44 public static int d(String tag, String msg, Throwable tr) { in d()
49 public static int i(String tag, String msg) { in i()
53 public static int i(String tag, String msg, Throwable tr) { in i()
58 public static int w(String tag, String msg) { in w()
62 public static int w(String tag, String msg, Throwable tr) { in w()
67 public static int w(String tag, Throwable tr) { in w()
71 public static int e(String tag, String msg) { in e()
[all …]
/frameworks/base/core/java/android/security/keymaster/
DKeymasterArguments.java69 public void addEnum(int tag, int value) { in addEnum()
82 public void addEnums(int tag, int... values) { in addEnums()
97 public int getEnum(int tag, int defaultValue) { in getEnum()
113 public List<Integer> getEnums(int tag) { in getEnums()
126 private void addEnumTag(int tag, int value) { in addEnumTag()
140 public void addUnsignedInt(int tag, long value) { in addUnsignedInt()
158 public long getUnsignedInt(int tag, long defaultValue) { in getUnsignedInt()
176 public void addUnsignedLong(int tag, BigInteger value) { in addUnsignedLong()
189 public List<BigInteger> getUnsignedLongs(int tag) { in getUnsignedLongs()
202 private void addLongTag(int tag, BigInteger value) { in addLongTag()
[all …]
DKeyCharacteristics.java75 public Integer getEnum(int tag) { in getEnum()
90 public List<Integer> getEnums(int tag) { in getEnums()
103 public long getUnsignedInt(int tag, long defaultValue) { in getUnsignedInt()
116 public List<BigInteger> getUnsignedLongs(int tag) { in getUnsignedLongs()
130 public Date getDate(int tag) { in getDate()
143 public boolean getBoolean(int tag) { in getBoolean()
DKeymasterBooleanArgument.java29 public KeymasterBooleanArgument(int tag) { in KeymasterBooleanArgument()
39 public KeymasterBooleanArgument(int tag, Parcel in) { in KeymasterBooleanArgument()
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
DObexAppParameters.java99 public boolean exists(byte tag) { in exists()
103 public void add(byte tag, byte val) { in add()
108 public void add(byte tag, short val) { in add()
113 public void add(byte tag, int val) { in add()
118 public void add(byte tag, long val) { in add()
123 public void add(byte tag, String val) { in add()
128 public void add(byte tag, byte[] bval) { in add()
132 public byte getByte(byte tag) { in getByte()
142 public short getShort(byte tag) { in getShort()
152 public int getInt(byte tag) { in getInt()
[all …]
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/utils/
DObexAppParameters.java99 public boolean exists(byte tag) { in exists()
103 public void add(byte tag, byte val) { in add()
108 public void add(byte tag, short val) { in add()
113 public void add(byte tag, int val) { in add()
118 public void add(byte tag, long val) { in add()
123 public void add(byte tag, String val) { in add()
128 public void add(byte tag, byte[] bval) { in add()
132 public byte getByte(byte tag) { in getByte()
142 public short getShort(byte tag) { in getShort()
152 public int getInt(byte tag) { in getInt()
[all …]
/frameworks/multidex/library/test/src/android/util/
DLog.java67 public static int v(String tag, String msg) { in v()
78 public static int v(String tag, String msg, Throwable tr) { in v()
88 public static int d(String tag, String msg) { in d()
99 public static int d(String tag, String msg, Throwable tr) { in d()
109 public static int i(String tag, String msg) { in i()
120 public static int i(String tag, String msg, Throwable tr) { in i()
130 public static int w(String tag, String msg) { in w()
141 public static int w(String tag, String msg, Throwable tr) { in w()
151 public static int w(String tag, Throwable tr) { in w()
161 public static int e(String tag, String msg) { in e()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DGestureRecorder.java79 public String tag, info; field in GestureRecorder.Gesture.TagRecord
80 public TagRecord(long when, String tag, String info) { in TagRecord()
114 public void tag(long when, String tag, String info) { in tag() argument
171 public void tag(long when, String tag, String info) { in tag() method in GestureRecorder
182 public void tag(long when, String tag) { in tag() argument
186 public void tag(String tag) { in tag() argument
187 tag(SystemClock.uptimeMillis(), tag, null); in tag() local
190 public void tag(String tag, String info) { in tag() argument
191 tag(SystemClock.uptimeMillis(), tag, info); in tag() local
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/debug/
DLog.java44 public Tag(String tag) { in Tag()
58 public static void d(Tag tag, String msg) { in d()
64 public static void d(Tag tag, String msg, Throwable tr) { in d()
70 public static void e(Tag tag, String msg) { in e()
76 public static void e(Tag tag, String msg, Throwable tr) { in e()
82 public static void i(Tag tag, String msg) { in i()
88 public static void i(Tag tag, String msg, Throwable tr) { in i()
94 public static void v(Tag tag, String msg) { in v()
100 public static void v(Tag tag, String msg, Throwable tr) { in v()
106 public static void w(Tag tag, String msg) { in w()
[all …]
/frameworks/base/core/java/android/os/
DDropBoxManager.java95 public Entry(String tag, long millis) { in Entry()
106 public Entry(String tag, long millis, String text) { in Entry()
121 public Entry(String tag, long millis, byte[] data, int flags) { in Entry()
138 public Entry(String tag, long millis, ParcelFileDescriptor data, int flags) { in Entry()
155 public Entry(String tag, long millis, File data, int flags) throws IOException { in Entry()
269 public void addText(String tag, String data) { in addText()
280 public void addData(String tag, byte[] data, int flags) { in addData()
294 public void addFile(String tag, File file, int flags) throws IOException { in addFile()
314 public boolean isTagEnabled(String tag) { in isTagEnabled()
327 public Entry getNextEntry(String tag, long msec) { in getNextEntry()
DTokenWatcher.java42 public TokenWatcher(Handler h, String tag) in TokenWatcher()
68 public void acquire(IBinder token, String tag) in acquire()
183 String tag; field in TokenWatcher.Death
185 Death(IBinder token, String tag) in Death()
/frameworks/support/v4/java/android/support/v4/net/
DTrafficStatsCompat.java34 void incrementOperationCount(int tag, int operationCount); in incrementOperationCount()
35 void setThreadStatsTag(int tag); in setThreadStatsTag()
67 public void incrementOperationCount(int tag, int operationCount) { in incrementOperationCount()
71 public void setThreadStatsTag(int tag) { in setThreadStatsTag()
101 public void incrementOperationCount(int tag, int operationCount) { in incrementOperationCount()
106 public void setThreadStatsTag(int tag) { in setThreadStatsTag()
166 public static void incrementOperationCount(int tag, int operationCount) { in incrementOperationCount()
181 public static void setThreadStatsTag(int tag) { in setThreadStatsTag()
/frameworks/av/camera/tests/
DVendorTagDescriptorTests.cpp41 static bool ContainsTag(uint32_t* tagArray, size_t size, uint32_t tag) { in ContainsTag()
68 static const char* default_get_section_name(const vendor_tag_ops_t* vOps, uint32_t tag) { in default_get_section_name()
72 static const char* default_get_tag_name(const vendor_tag_ops_t* vOps, uint32_t tag) { in default_get_tag_name()
76 static int default_get_tag_type(const vendor_tag_ops_t* vOps, uint32_t tag) { in default_get_tag_type()
117 uint32_t tag; in TEST() local
160 uint32_t tag; in TEST() local
/frameworks/base/core/java/com/android/server/
DNetworkManagementSocketTagger.java53 public static void setThreadSocketStatsTag(int tag) { in setThreadSocketStatsTag()
66 public void tag(FileDescriptor fd) throws SocketException { in tag() method in NetworkManagementSocketTagger
76 private void tagSocketFd(FileDescriptor fd, int tag, int uid) { in tagSocketFd()
146 private static native int native_tagSocketFd(FileDescriptor fd, int tag, int uid); in native_tagSocketFd()
149 private static native int native_deleteTagData(int tag, int uid); in native_deleteTagData()
/frameworks/support/v4/java/android/support/v4/app/
DNotificationCompatSideChannelService.java61 public abstract void notify(String packageName, int id, String tag, Notification notification); in notify()
66 public abstract void cancel(String packageName, int id, String tag); in cancel()
75 public void notify(String packageName, int id, String tag, Notification notification) in notify()
87 public void cancel(String packageName, int id, String tag) throws RemoteException { in cancel()
DNotificationManagerCompat.java115 void cancelNotification(NotificationManager notificationManager, String tag, int id); in cancelNotification()
117 void postNotification(NotificationManager notificationManager, String tag, int id, in postNotification()
125 public void cancelNotification(NotificationManager notificationManager, String tag, in cancelNotification()
131 public void postNotification(NotificationManager notificationManager, String tag, int id, in postNotification()
144 public void cancelNotification(NotificationManager notificationManager, String tag, in cancelNotification()
150 public void postNotification(NotificationManager notificationManager, String tag, int id, in postNotification()
188 public void cancel(String tag, int id) { in cancel()
218 public void notify(String tag, int id, Notification notification) { in notify()
564 final String tag; field in NotificationManagerCompat.NotifyTask
567 public NotifyTask(String packageName, int id, String tag, Notification notif) { in NotifyTask()
[all …]
/frameworks/base/core/jni/
Dandroid_os_Trace.cpp50 jlong tag, jstring nameStr, jint value) { in android_os_Trace_nativeTraceCounter()
58 jlong tag, jstring nameStr) { in android_os_Trace_nativeTraceBegin()
68 jlong tag) { in android_os_Trace_nativeTraceEnd()
75 jlong tag, jstring nameStr, jint cookie) { in android_os_Trace_nativeAsyncTraceBegin()
85 jlong tag, jstring nameStr, jint cookie) { in android_os_Trace_nativeAsyncTraceEnd()
/frameworks/av/camera/
DVendorTagDescriptor.cpp85 uint32_t tag = tagArray[i]; in createDescriptorFromOps() local
118 uint32_t tag = tagArray[i]; in createDescriptorFromOps() local
162 uint32_t tag, sectionIndex; in createFromParcel() local
237 uint32_t tag = allTags[i]; in createFromParcel() local
303 uint32_t tag, sectionIndex; in writeToParcel() local
362 uint32_t tag = mTagToNameMap.keyAt(i); in dump() local
432 const char* vendor_tag_descriptor_get_section_name(const vendor_tag_ops_t* /*v*/, uint32_t tag) { in vendor_tag_descriptor_get_section_name()
441 const char* vendor_tag_descriptor_get_tag_name(const vendor_tag_ops_t* /*v*/, uint32_t tag) { in vendor_tag_descriptor_get_tag_name()
450 int vendor_tag_descriptor_get_tag_type(const vendor_tag_ops_t* /*v*/, uint32_t tag) { in vendor_tag_descriptor_get_tag_type()
DCameraMetadata.cpp171 status_t CameraMetadata::checkType(uint32_t tag, uint8_t expectedType) { in checkType()
188 status_t CameraMetadata::update(uint32_t tag, in update()
201 status_t CameraMetadata::update(uint32_t tag, in update()
214 status_t CameraMetadata::update(uint32_t tag, in update()
227 status_t CameraMetadata::update(uint32_t tag, in update()
240 status_t CameraMetadata::update(uint32_t tag, in update()
253 status_t CameraMetadata::update(uint32_t tag, in update()
266 status_t CameraMetadata::update(uint32_t tag, in update()
280 status_t CameraMetadata::updateImpl(uint32_t tag, const void *data, in updateImpl()
342 camera_metadata_entry_t CameraMetadata::find(uint32_t tag) { in find()
[all …]
/frameworks/base/core/java/com/android/internal/os/
DAndroidPrintStream.java29 private final String tag; field in AndroidPrintStream
37 public AndroidPrintStream(int priority, String tag) { in AndroidPrintStream()
DIDropBoxManagerService.aidl38 boolean isTagEnabled(String tag); in isTagEnabled()
41 DropBoxManager.Entry getNextEntry(String tag, long millis); in getNextEntry()
/frameworks/av/media/libstagefright/
DESDS.cpp71 uint8_t *tag, size_t *data_offset, size_t *data_size) const { in skipDescriptorHeader()
106 uint8_t tag; in parse() local
179 uint8_t tag; in parseESDescriptor() local
213 uint8_t tag; in parseDecoderConfigDescriptor() local

12345678910>>...14