Searched defs:tag (Results 126 - 150 of 242) sorted by relevance

12345678910

/frameworks/base/services/core/java/com/android/server/job/controllers/
H A DJobStatus.java48 final String tag; field in class:JobStatus
80 this.tag = "*job*/" + this.name;
154 return tag;
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerEntry.java81 private TrackerEntry(String tag, EntryType type) { argument
83 mTag = tag;
107 static TrackerEntry createEntry(String tag, String msg) { argument
108 TrackerEntry entry = new TrackerEntry(tag, EntryType.LOG_TYPE);
210 String tag = cursor.getString(cursor.getColumnIndex(TAG));
212 TrackerEntry entry = new TrackerEntry(tag, EntryType.valueOf(sType));
215 Location location = new Location(tag);
/frameworks/compile/libbcc/bcinfo/Wrap/
H A Dbitcode_wrapperer.cpp233 BCHeaderField::FixedSubfield tag; member in struct:IntFieldHelper
/frameworks/compile/mclinker/lib/Target/
H A DELFAttribute.cpp208 // The tag of sub-subsection is encoded in ULEB128.
210 uint64_t tag = leb128::decode<uint64_t>(subsubsection_data, tag_size); local
226 switch (tag) {
228 ELFAttributeData::TagType tag; local
238 if (!ELFAttributeData::ReadTag(tag, attr_buf, attr_size))
245 m_AttrData.getOrCreateAttributeValue(tag);
266 !m_AttrData.merge(m_Parent.config(), pInput, tag, in_attr)) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCommandParamsFactory.java248 * Search for a COMPREHENSION-TLV object with the given tag from a list
250 * @param tag A tag to search for
253 * @return A ComprehensionTlv object that has the tag value of {@code tag}.
254 * If no object is found with the tag, null is returned.
256 private ComprehensionTlv searchForTag(ComprehensionTlvTag tag, argument
259 return searchForNextTag(tag, iter);
263 * Search for the next COMPREHENSION-TLV object with the given tag from a
268 * @param tag
274 searchForNextTag(ComprehensionTlvTag tag, Iterator<ComprehensionTlv> iter) argument
[all...]
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentTabHost.java54 private final String tag; field in class:FragmentTabHost.TabInfo
60 tag = _tag;
74 public View createTabContent(String tag) { argument
220 String tag = tabSpec.getTag();
222 TabInfo info = new TabInfo(tag, clss, args);
228 info.fragment = mFragmentManager.findFragmentByTag(tag);
251 tab.fragment = mFragmentManager.findFragmentByTag(tab.tag);
253 if (tab.tag.equals(currentTab)) {
317 if (tab.tag.equals(tabId)) {
322 throw new IllegalStateException("No tab known for tag "
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DDialogFragment.java125 * fragment to it with the given tag, and committing it. This does
130 * @param tag The tag for this fragment, as per
133 public void show(FragmentManager manager, String tag) { argument
137 ft.add(this, tag);
145 * @param tag The tag for this fragment, as per
150 public int show(FragmentTransaction transaction, String tag) { argument
153 transaction.add(this, tag);
H A DFragmentTabHost.java62 private final String tag; field in class:FragmentTabHost.TabInfo
68 tag = _tag;
82 public View createTabContent(String tag) { argument
228 String tag = tabSpec.getTag();
230 TabInfo info = new TabInfo(tag, clss, args);
236 info.fragment = mFragmentManager.findFragmentByTag(tag);
259 tab.fragment = mFragmentManager.findFragmentByTag(tab.tag);
261 if (tab.tag.equals(currentTab)) {
325 if (tab.tag.equals(tabId)) {
330 throw new IllegalStateException("No tab known for tag "
[all...]
H A DFragmentTransaction.java42 public abstract FragmentTransaction add(Fragment fragment, String tag); argument
45 * Calls {@link #add(int, Fragment, String)} with a null tag.
58 * @param tag Optional tag name for the fragment, to later retrieve the
65 @Nullable String tag);
68 * Calls {@link #replace(int, Fragment, String)} with a null tag.
82 * @param tag Optional tag name for the fragment, to later retrieve the
89 @Nullable String tag);
64 add(@dRes int containerViewId, Fragment fragment, @Nullable String tag) argument
88 replace(@dRes int containerViewId, Fragment fragment, @Nullable String tag) argument
H A DNotificationManagerCompat.java115 void cancelNotification(NotificationManager notificationManager, String tag, int id); argument
117 void postNotification(NotificationManager notificationManager, String tag, int id, argument
125 public void cancelNotification(NotificationManager notificationManager, String tag, argument
131 public void postNotification(NotificationManager notificationManager, String tag, int id, argument
144 public void cancelNotification(NotificationManager notificationManager, String tag, argument
146 NotificationManagerCompatEclair.cancelNotification(notificationManager, tag, id);
150 public void postNotification(NotificationManager notificationManager, String tag, int id, argument
152 NotificationManagerCompatEclair.postNotification(notificationManager, tag, id,
185 * @param tag the string identifier of the notification.
188 public void cancel(String tag, in argument
218 notify(String tag, int id, Notification notification) argument
564 final String tag; field in class:NotificationManagerCompat.NotifyTask
567 NotifyTask(String packageName, int id, String tag, Notification notif) argument
592 final String tag; field in class:NotificationManagerCompat.CancelTask
602 CancelTask(String packageName, int id, String tag) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
H A DSupportActionModeWrapper.java55 public void setTag(Object tag) { argument
56 mWrappedObject.setTag(tag);
/frameworks/av/camera/
H A DCameraMetadata.cpp171 status_t CameraMetadata::checkType(uint32_t tag, uint8_t expectedType) { argument
172 int tagType = get_camera_metadata_tag_type(tag);
174 ALOGE("Update metadata entry: Unknown tag %d", tag);
178 ALOGE("Mismatched tag type when updating entry %s (%d) of type %s; "
180 get_camera_metadata_tag_name(tag), tag,
188 status_t CameraMetadata::update(uint32_t tag, argument
195 if ( (res = checkType(tag, TYPE_INT32)) != OK) {
198 return updateImpl(tag, (cons
201 update(uint32_t tag, const uint8_t *data, size_t data_count) argument
214 update(uint32_t tag, const float *data, size_t data_count) argument
227 update(uint32_t tag, const int64_t *data, size_t data_count) argument
240 update(uint32_t tag, const double *data, size_t data_count) argument
253 update(uint32_t tag, const camera_metadata_rational_t *data, size_t data_count) argument
266 update(uint32_t tag, const String8 &string) argument
280 updateImpl(uint32_t tag, const void *data, size_t data_count) argument
331 find(uint32_t tag) argument
358 erase(uint32_t tag) argument
[all...]
/frameworks/av/media/img_utils/src/
H A DTiffIfd.cpp37 ALOGW("%s: Failed to add entry for tag 0x%x to IFD %u, too many entries in IFD!",
43 ALOGW("%s: Failed to add entry for tag 0x%x to ifd %u.", __FUNCTION__, entry->getTag(),
50 sp<TiffEntry> TiffIfd::getEntry(uint16_t tag) const {
51 ssize_t index = mEntries.indexOfTag(tag);
53 ALOGW("%s: No entry for tag 0x%x in ifd %u.", __FUNCTION__, tag, mIfdId);
59 void TiffIfd::removeEntry(uint16_t tag) { argument
60 ssize_t index = mEntries.indexOfTag(tag);
117 // Write tag entries
132 // Write values for each tag entr
[all...]
H A DTiffWriter.cpp154 const TagDefinition_t* TiffWriter::lookupDefinition(uint16_t tag) const {
157 ssize_t index = mTagMaps[i].indexOfKey(tag);
165 ALOGE("%s: No definition exists for tag with id %x.", __FUNCTION__, tag);
170 sp<TiffEntry> TiffWriter::getEntry(uint16_t tag, uint32_t ifd) const { argument
176 return mNamedIfds[index]->getEntry(tag);
179 void TiffWriter::removeEntry(uint16_t tag, uint32_t ifd) { argument
182 mNamedIfds[index]->removeEntry(tag);
187 uint16_t tag = entry->getTag(); local
189 const TagDefinition_t* definition = lookupDefinition(tag);
[all...]
/frameworks/base/core/java/android/net/
H A DTrafficStats.java72 * Default tag value for {@link DownloadManager} traffic.
79 * Default tag value for {@link MediaPlayer} traffic.
86 * Default tag value for {@link BackupManager} traffic.
114 * Set active tag to use when accounting {@link Socket} traffic originating
115 * from the current thread. Only one active tag per thread is supported.
126 public static void setThreadStatsTag(int tag) { argument
127 NetworkManagementSocketTagger.setThreadSocketStatsTag(tag);
131 * System API for backup-related support components to tag network traffic
141 * Get the active tag used when accounting {@link Socket} traffic originating
142 * from the current thread. Only one active tag pe
263 incrementOperationCount(int tag, int operationCount) argument
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DXmlUtils.java219 * @param name Name attribute to include with this list's tag, or null for
238 * @param name Name attribute to include with this list's tag, or null for
271 * with readThisMapXml(). This method presumes that the start tag and
272 * name attribute have already been written and does not write an end tag.
304 * @param name Name attribute to include with this list's tag, or null for
362 * @param name Name attribute to include with this array's tag, or null for
406 * @param name Name attribute to include with this array's tag, or null for
446 * @param name Name attribute to include with this array's tag, or null for
485 * @param name Name attribute to include with this array's tag, or null for
524 * @param name Name attribute to include with this array's tag, o
1654 readThisUnknownObjectXml(XmlPullParser in, String tag) argument
[all...]
/frameworks/base/media/java/android/media/
H A DAudioAttributes.java431 * Add a custom tag stored as a string
432 * @param tag
435 public Builder addTag(String tag) { argument
436 mTags.add(tag);
H A DExifInterface.java31 // The Exif tag names
84 // Constants used for the Orientation Exif tag.
128 * Returns the value of the specified tag or {@code null} if there
129 * is no such tag in the JPEG file.
131 * @param tag the name of the tag.
133 public String getAttribute(String tag) { argument
134 return mAttributes.get(tag);
138 * Returns the integer value of the specified tag. If there is no such tag
145 getAttributeInt(String tag, int defaultValue) argument
163 getAttributeDouble(String tag, double defaultValue) argument
184 setAttribute(String tag, String value) argument
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DBlockingGLTextureView.java297 public static void logEglErrorAsWarning(String tag, String function, int error) { argument
298 Log.w(tag, formatEglError(function, error));
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsCollection.java61 * {@link NetworkIdentitySet}, UID, set, and tag. Knows how to persist itself.
139 NetworkTemplate template, int uid, int set, int tag, int fields) {
140 return getHistory(template, uid, set, tag, fields, Long.MIN_VALUE, Long.MAX_VALUE);
148 NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end) {
154 if (key.uid == uid && setMatches && key.tag == tag
186 entry.tag = key.tag;
205 public void recordData(NetworkIdentitySet ident, int uid, int set, int tag, long start, argument
207 final NetworkStatsHistory history = findOrCreateHistory(ident, uid, set, tag);
138 getHistory( NetworkTemplate template, int uid, int set, int tag, int fields) argument
147 getHistory( NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end) argument
239 findOrCreateHistory( NetworkIdentitySet ident, int uid, int set, int tag) argument
556 public final int tag; field in class:NetworkStatsCollection.Key
560 Key(NetworkIdentitySet ident, int uid, int set, int tag) argument
[all...]
/frameworks/base/services/core/java/com/android/server/power/
H A DNotifier.java141 public void onWakeLockAcquired(int flags, String tag, String packageName, argument
144 Slog.d(TAG, "onWakeLockAcquired: flags=" + flags + ", tag=\"" + tag
155 mBatteryStats.noteStartWakelockFromSource(workSource, ownerPid, tag, historyTag,
158 mBatteryStats.noteStartWakelock(ownerUid, ownerPid, tag, historyTag,
172 public void onWakeLockChanging(int flags, String tag, String packageName, argument
183 Slog.d(TAG, "onWakeLockChanging: flags=" + newFlags + ", tag=\"" + newTag
189 mBatteryStats.noteChangeWakelockFromSource(workSource, ownerPid, tag, historyTag,
196 onWakeLockReleased(flags, tag, packageName, ownerUid, ownerPid, workSource, historyTag);
205 public void onWakeLockReleased(int flags, String tag, Strin argument
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMELFAttributeData.cpp48 // An unknown tag encounterred.
345 // There's nothing to do for this tag. It doesn't have an actual value.
379 // value in this tag are definitely incompatible.)
448 // 1. For tag N where N >= 128, tag N has the same properties as
449 // tag N % 128.
986 TagType tag = static_cast<TagType>(i); local
987 const ELFAttributeValue &value = m_Attrs[tag];
990 result += leb128::size(static_cast<uint32_t>(tag));
999 TagType tag local
1043 TagType tag = static_cast<TagType>(i); local
1053 TagType tag = static_cast<TagType>(i); local
1065 TagType tag = unknown_attr_it->first; local
[all...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipHelper.java94 private FromHeader createFromHeader(SipProfile profile, String tag) argument
96 return mHeaderFactory.createFromHeader(profile.getSipAddress(), tag);
103 private ToHeader createToHeader(SipProfile profile, String tag) argument
105 return mHeaderFactory.createToHeader(profile.getSipAddress(), tag);
196 String tag) throws SipException {
199 ? createRequest(Request.OPTIONS, caller, tag)
200 : createRequest(Request.OPTIONS, caller, callee, tag);
211 public ClientTransaction sendRegister(SipProfile userProfile, String tag, argument
214 Request request = createRequest(Request.REGISTER, userProfile, tag);
234 String tag) throw
195 sendOptions(SipProfile caller, SipProfile callee, String tag) argument
233 createRequest(String requestType, SipProfile userProfile, String tag) argument
269 createRequest(String requestType, SipProfile caller, SipProfile callee, String tag) argument
287 sendInvite(SipProfile caller, SipProfile callee, String sessionDescription, String tag, ReferredByHeader referredBy, String replaces) argument
349 sendRinging(RequestEvent event, String tag) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCarrierPrivilegeRules.java147 private String tag; field in class:UiccCarrierPrivilegeRules.TLV
157 public TLV(String tag) { argument
158 this.tag = tag;
162 int offset = tag.length();
177 Rlog.d(LOG_TAG, "Parse TLV: " + tag);
178 if (!data.startsWith(tag)) {
181 int index = tag.length();
199 Rlog.d(LOG_TAG, "Got TLV: " + tag + "," + length + "," + value);
/frameworks/support/v4/api21/android/support/v4/media/session/
H A DMediaSessionCompatApi21.java38 public static Object createSession(Context context, String tag) { argument
39 return new MediaSession(context, tag);

Completed in 578 milliseconds

12345678910