Searched refs:tag (Results 76 - 100 of 451) sorted by relevance

1234567891011>>

/frameworks/base/packages/StatementService/src/com/android/statementservice/
H A DExceptionLoggingFutureTask.java32 public ExceptionLoggingFutureTask(Callable<V> callable, String tag) { argument
34 mTag = tag;
/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/tools/layoutlib/bridge/src/android/util/
H A DLog_Delegate.java43 static int println_native(int bufID, int priority, String tag, String msgs) { argument
44 String prefix = priorityChar(priority) + "/" + tag + ": ";
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifModifier.java41 TagOffset(ExifTag tag, int offset) { argument
42 mTag = tag;
147 private void writeTagValue(ExifTag tag, int offset) { argument
149 Log.v(TAG, "modifying tag to: \n" + tag.toString());
153 switch (tag.getDataType()) {
155 byte buf[] = tag.getStringByte();
156 if (buf.length == tag.getComponentCount()) {
166 for (int i = 0, n = tag.getComponentCount(); i < n; i++) {
167 mByteBuffer.putInt((int) tag
192 modifyTag(ExifTag tag) argument
[all...]
H A DExifData.java156 * Returns the tag with a given TID in the given IFD if the tag exists.
159 protected ExifTag getTag(short tag, int ifd) { argument
161 return (ifdData == null) ? null : ifdData.getTag(tag);
168 protected ExifTag addTag(ExifTag tag) { argument
169 if (tag != null) {
170 int ifd = tag.getIfd();
171 return addTag(tag, ifd);
180 protected ExifTag addTag(ExifTag tag, int ifdId) { argument
181 if (tag !
300 getAllTagsForTagId(short tag) argument
[all...]
/frameworks/base/core/java/android/net/
H A DINetworkStatsSession.aidl37 NetworkStatsHistory getHistoryForUid(in NetworkTemplate template, int uid, int set, int tag, int fields);
39 NetworkStatsHistory getHistoryIntervalForUid(in NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end);
H A DNetworkStats.java51 /** {@link #tag} value matching any tag. */
67 /** {@link #tag} value for total data across all tags. */
90 private int[] tag; field in class:NetworkStats
102 public int tag; field in class:NetworkStats.Entry
124 public Entry(String iface, int uid, int set, int tag, long rxBytes, long rxPackets, argument
126 this(iface, uid, set, tag, ROAMING_NO, rxBytes, rxPackets, txBytes, txPackets,
130 public Entry(String iface, int uid, int set, int tag, int roaming, long rxBytes, argument
135 this.tag = tag;
273 addValues(String iface, int uid, int set, int tag, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) argument
280 addValues(String iface, int uid, int set, int tag, int roaming, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) argument
365 combineValues(String iface, int uid, int tag, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) argument
372 combineValues(String iface, int uid, int set, int tag, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) argument
412 findIndex(String iface, int uid, int set, int tag, int roaming) argument
427 findIndexHinted(String iface, int uid, int set, int tag, int roaming, int hintIndex) argument
828 tagToString(int tag) argument
[all...]
/frameworks/base/core/java/android/util/
H A DTimingLogger.java51 * The Log tag to use for checking Log.isLoggable and for
70 * the specific tag. If the Log.isLoggable is not enabled to at
71 * least the Log.VERBOSE level for that tag at creation time then
73 * @param tag the log tag to use while logging the timings
76 public TimingLogger(String tag, String label) { argument
77 reset(tag, label);
82 * the specific tag. If the Log.isLoggable is not enabled to at
83 * least the Log.VERBOSE level for that tag at creation time then
85 * @param tag th
88 reset(String tag, String label) argument
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerInternal.java23 String tag, int id, Notification notification, int[] idReceived, int userId);
22 enqueueNotification(String pkg, String basePkg, int callingUid, int callingPid, String tag, int id, Notification notification, int[] idReceived, int userId) argument
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DDataBinderMapper.java35 public int getLayoutId(String tag) { return 0; } argument
/frameworks/support/v4/ics/android/support/v4/net/
H A DTrafficStatsCompatIcs.java42 public static void incrementOperationCount(int tag, int operationCount) { argument
43 TrafficStats.incrementOperationCount(tag, operationCount);
46 public static void setThreadStatsTag(int tag) { argument
47 TrafficStats.setThreadStatsTag(tag);
/frameworks/base/services/core/java/com/android/server/
H A DUpdateLockService.java46 LockWatcher(Handler h, String tag) { argument
47 super(h, tag);
88 public void acquireUpdateLock(IBinder token, String tag) throws RemoteException { argument
90 Slog.d(TAG, "acquire(" + token + ") by " + makeTag(tag));
94 mLocks.acquire(token, makeTag(tag));
107 private String makeTag(String tag) { argument
108 return "{tag=" + tag
H A DDropBoxManagerService.java79 // per tag (or even globally) instead.
133 public boolean isTagEnabled(String tag) {
134 return DropBoxManagerService.this.isTagEnabled(tag);
138 public DropBoxManager.Entry getNextEntry(String tag, long millis) {
139 return DropBoxManagerService.this.getNextEntry(tag, millis);
220 final String tag = entry.getTag();
226 if (!isTagEnabled(tag)) return;
277 Slog.w(TAG, "Dropping: " + tag + " (" + temp.length() + " > " + max + " bytes)");
284 long time = createEntry(temp, tag, flags);
288 dropboxIntent.putExtra(DropBoxManager.EXTRA_TAG, tag);
308 isTagEnabled(String tag) argument
318 getNextEntry(String tag, long millis) argument
508 public final String tag; field in class:DropBoxManagerService.EntryFile
537 EntryFile(File temp, File dir, String tag,long timestampMillis, int flags, int blockSize) argument
561 EntryFile(File dir, String tag, long timestampMillis) argument
693 createEntry(File temp, String tag, int flags) argument
[all...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DMockAlarmManager.java65 * Dispatch a pending alarm with the given tag
68 public boolean dispatch(String tag) { argument
71 if (Objects.equals(tag, alarm.getTag())) {
81 * @return if an alarm with the given tag is pending
83 public boolean isPending(String tag) { argument
86 if (Objects.equals(tag, alarm.getTag())) {
94 * @return trigger time of an pending alarm with the given tag
95 * -1 if no pending alram with the given tag
97 public long getTriggerTimeMillis(String tag) { argument
100 if (Objects.equals(tag, alar
113 PendingAlarm(int type, long triggerAtMillis, String tag, Runnable callback) argument
140 answer(int type, long triggerAtMillis, String tag, AlarmManager.OnAlarmListener listener, Handler handler) argument
[all...]
/frameworks/base/core/java/android/nfc/tech/
H A DNdefFormatable.java50 * Get an instance of {@link NdefFormatable} for the given tag.
53 * This indicates the tag is not NDEF formatable by this Android device.
55 * @param tag an NDEF formatable tag
58 public static NdefFormatable get(Tag tag) { argument
59 if (!tag.hasTech(TagTechnology.NDEF_FORMATABLE)) return null;
61 return new NdefFormatable(tag);
71 public NdefFormatable(Tag tag) throws RemoteException { argument
72 super(tag, TagTechnology.NDEF_FORMATABLE);
76 * Format a tag a
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DFontListParser.java47 Axis(int tag, float styleValue) { argument
48 this.tag = tag;
51 public final int tag; field in class:FontListParser.Axis
108 String tag = parser.getName();
109 if (tag.equals("family")) {
111 } else if (tag.equals("alias")) {
128 String tag = parser.getName();
129 if (tag.equals("font")) {
156 String tag
[all...]
/frameworks/av/camera/ndk/
H A DNdkCaptureRequest.cpp80 const ACaptureRequest* req, uint32_t tag, ACameraMetadata_const_entry* entry) {
83 ALOGE("%s: invalid argument! req 0x%p, tag 0x%x, entry 0x%p",
84 __FUNCTION__, req, tag, entry);
87 return req->settings->getConstEntry(tag, entry);
105 ACaptureRequest* req, uint32_t tag, uint32_t count, const NDK_TYPE* data) { \
108 ALOGE("%s: invalid argument! req %p, tag 0x%x, count %d, data 0x%p", \
109 __FUNCTION__, req, tag, count, data); \
112 return req->settings->update(tag, count, data); \
79 ACaptureRequest_getConstEntry( const ACaptureRequest* req, uint32_t tag, ACameraMetadata_const_entry* entry) argument
/frameworks/base/docs/html/
H A Djd_tag_helpers.js34 for (var tag in r.map) {
35 allRes[tag] = allRes[tag] || [];
36 allRes[tag] = allRes[tag].concat(r.map[tag].map(function(i){ return ALL_RESOURCES[i + offset]; }));
/frameworks/minikin/libs/minikin/
H A DHbFontCache.cpp31 static hb_blob_t* referenceTable(hb_face_t* /* face */, hb_tag_t tag, void* userData) { argument
35 const void* buffer = font->GetTable(tag, &size, &destroy);
41 (tag >>24)&0xff, (tag>>16)&0xff, (tag>>8)&0xff, tag&0xff, size);
/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DExif.java51 int tag = pack(jpeg, offset, 4, false);
135 int tag = pack(jpeg, offset, 4, false);
136 if (tag != 0x49492A00 && tag != 0x4D4D002A) {
140 final boolean littleEndian = (tag == 0x49492A00);
158 // Get the tag and check if it is orientation.
159 tag = pack(jpeg, offset, 2, littleEndian);
160 if (tag == 0x0112) {
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DExif.java46 int tag = pack(jpeg, offset, 4, false);
130 int tag = pack(jpeg, offset, 4, false);
131 if (tag != 0x49492A00 && tag != 0x4D4D002A) {
135 final boolean littleEndian = (tag == 0x49492A00);
153 // Get the tag and check if it is orientation.
154 tag = pack(jpeg, offset, 2, littleEndian);
155 if (tag == 0x0112) {
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DSerializer.h34 static const char *const tag; member in struct:android::AudioGainTraits
65 static const char *const tag; member in struct:android::AudioProfileTraits
87 static const char *const tag; member in struct:android::MixPortTraits
110 static const char *const tag; member in struct:android::DevicePortTraits
115 static const char tagName[]; /**< <device tag name>: any string without space. */
133 static const char *const tag; member in struct:android::RouteTraits
154 static const char *const tag; member in struct:android::ModuleTraits
181 static const char *const tag; member in struct:android::GlobalConfigTraits
193 static const char *const tag; member in struct:android::VolumeTraits
/frameworks/base/core/java/android/app/job/
H A DIJobScheduler.aidl27 int scheduleAsPackage(in JobInfo job, String packageName, int userId, String tag);
/frameworks/base/core/java/com/android/internal/util/
H A DLocalLog.java35 public LocalLog(String tag) { argument
36 mTag = tag;
/frameworks/base/libs/common_time/
H A Dutils.h54 void log(int prio, const char* tag, const char* fmt, ...);
78 void internalLog(int prio, const char* tag, const char* fmt, va_list va);

Completed in 786 milliseconds

1234567891011>>