Searched defs:tag (Results 1 - 25 of 171) sorted by path

1234567

/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/av/camera/tests/
H A DProCameraTests.cpp498 uint32_t tag = static_cast<uint32_t>(ANDROID_REQUEST_OUTPUT_STREAMS); local
499 request.update(tag, streamIds, count);
525 uint32_t tag = static_cast<uint32_t>(ANDROID_SCALER_AVAILABLE_FORMATS); local
526 EXPECT_TRUE(staticInfo.exists(tag));
527 camera_metadata_entry_t entry = staticInfo.find(tag);
713 uint32_t tag = static_cast<uint32_t>(ANDROID_REQUEST_OUTPUT_STREAMS); local
714 int find = find_camera_metadata_entry(request, tag, &entry);
716 if (add_camera_metadata_entry(request, tag, &allStreams,
723 ASSERT_OK(add_camera_metadata_entry(request, tag, &allStreams,
782 uint32_t tag local
854 uint32_t tag = static_cast<uint32_t>(ANDROID_REQUEST_OUTPUT_STREAMS); local
929 uint32_t tag = static_cast<uint32_t>(ANDROID_REQUEST_OUTPUT_STREAMS); local
[all...]
/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/av/include/media/
H A DMediaProfiles.h351 int tag; member in struct:android::MediaProfiles::NameToTagMap
421 // Customized element tag handler for parsing the xml configuration file.
/frameworks/av/media/libmedia/
H A DMediaProfiles.cpp153 int tag = -1; local
156 tag = map[i].tag;
160 return tag;
/frameworks/av/media/libstagefright/
H A DESDS.cpp71 uint8_t *tag, size_t *data_offset, size_t *data_size) const {
76 *tag = mData[offset++];
94 ALOGV("tag=0x%02x data_size=%d", *tag, *data_size);
106 uint8_t tag; local
110 skipDescriptorHeader(0, mSize, &tag, &data_offset, &data_size);
116 if (tag != kTag_ESDescriptor) {
173 uint8_t tag; local
176 offset, size, &tag, &sub_offset, &sub_size);
182 if (tag !
69 skipDescriptorHeader( size_t offset, size_t size, uint8_t *tag, size_t *data_offset, size_t *data_size) const argument
207 uint8_t tag; local
[all...]
H A DMPEG4Extractor.cpp651 uint8_t tag; local
653 if (mDataSource->readAt(data_offset, &tag, 1) < 1) {
658 if (0x0B/*IPMP_DESCRIPTOR_ID_TAG*/ == tag) {
2036 // were are interested in the specific tag, make sure to clear out
H A DStagefrightMediaScanner.cpp170 const char *tag; member in struct:android::KeyMap
195 status = client.addStringTag(kKeyMap[i].tag, value);
/frameworks/av/services/camera/libcameraservice/
H A DCamera3Device.cpp148 SET_ERR_L("Unable to set tag ops: %s (%d)",
1433 uint32_t tag = trigger.metadataTag; local
1434 ssize_t index = mTriggerMap.indexOfKey(tag);
1449 * in the request settings per trigger tag, and can't send more than 1
1455 mTriggerMap.add(tag, trigger);
1813 uint32_t tag = trigger.metadataTag; local
1814 camera_metadata_entry entry = metadata.find(tag);
1825 mTriggerReplacedMap.add(tag, oldTrigger);
1830 mTriggerRemovedMap.add(tag, trigger);
1838 res = metadata.update(tag,
1886 uint32_t tag = trigger.metadataTag; local
[all...]
/frameworks/av/services/camera/libcameraservice/camera2/
H A DParameters.cpp999 camera_metadata_ro_entry_t Parameters::staticInfo(uint32_t tag, argument
1001 camera_metadata_ro_entry_t entry = info->find(tag);
1004 const char* tagSection = get_camera_metadata_section_name(tag);
1006 const char* tagName = get_camera_metadata_tag_name(tag);
1010 tagSection, tagName, tag);
1014 const char* tagSection = get_camera_metadata_section_name(tag);
1016 const char* tagName = get_camera_metadata_tag_name(tag);
1020 tagSection, tagName, tag, minCount, maxCount, entry.count);
H A DParameters.h217 camera_metadata_ro_entry_t staticInfo(uint32_t tag,
353 camera_metadata_ro_entry_t staticInfo(uint32_t tag, argument
355 return mParameters.staticInfo(tag, minCount, maxCount);
/frameworks/base/core/java/android/app/
H A DActivityManager.java1281 public String tag; field in class:ActivityManager.ProcessErrorStateInfo
1315 dest.writeString(tag);
1326 tag = source.readString();
H A DActivityManagerNative.java1219 String tag = data.readString();
1221 boolean res = handleApplicationWtf(app, tag, ci);
3415 public boolean handleApplicationWtf(IBinder app, String tag, argument
3422 data.writeString(tag);
H A DActivityThread.java5060 public void addData(String tag, byte[] data, int flags) { argument
5061 dropBox.addData(tag, data, flags);
5065 public void addText(String tag, String data) { argument
5066 dropBox.addText(tag, data);
H A DBackStackRecord.java378 public FragmentTransaction add(Fragment fragment, String tag) { argument
379 doAddOp(0, fragment, tag, OP_ADD);
388 public FragmentTransaction add(int containerViewId, Fragment fragment, String tag) { argument
389 doAddOp(containerViewId, fragment, tag, OP_ADD);
393 private void doAddOp(int containerViewId, Fragment fragment, String tag, int opcmd) { argument
396 if (tag != null) {
397 if (fragment.mTag != null && !tag.equals(fragment.mTag)) {
398 throw new IllegalStateException("Can't change tag of fragment "
400 + " now " + tag);
402 fragment.mTag = tag;
424 replace(int containerViewId, Fragment fragment, String tag) argument
[all...]
H A DDialogFragment.java217 * fragment to it with the given tag, and committing it. This does
222 * @param tag The tag for this fragment, as per
225 public void show(FragmentManager manager, String tag) { argument
229 ft.add(this, tag);
237 * @param tag The tag for this fragment, as per
242 public int show(FragmentTransaction transaction, String tag) { argument
245 transaction.add(this, tag);
H A DFragmentManager.java170 * Finds a fragment that was identified by the given tag either when inflated
177 public abstract Fragment findFragmentByTag(String tag); argument
1282 public Fragment findFragmentByTag(String tag) { argument
1283 if (mAdded != null && tag != null) {
1287 if (f != null && tag.equals(f.mTag)) {
1292 if (mActive != null && tag != null) {
1296 if (f != null && tag.equals(f.mTag)) {
H A DFragmentTransaction.java16 public abstract FragmentTransaction add(Fragment fragment, String tag); argument
19 * Calls {@link #add(int, Fragment, String)} with a null tag.
32 * @param tag Optional tag name for the fragment, to later retrieve the
38 public abstract FragmentTransaction add(int containerViewId, Fragment fragment, String tag); argument
41 * Calls {@link #replace(int, Fragment, String)} with a null tag.
55 * @param tag Optional tag name for the fragment, to later retrieve the
61 public abstract FragmentTransaction replace(int containerViewId, Fragment fragment, String tag); argument
H A DIActivityManager.java240 public boolean handleApplicationWtf(IBinder app, String tag, argument
H A DKeyguardManager.java50 KeyguardLock(String tag) { argument
51 mTag = tag;
126 * @param tag A tag that informally identifies who you are (for debugging who
133 public KeyguardLock newKeyguardLock(String tag) { argument
134 return new KeyguardLock(tag);
H A DNotificationManager.java44 * {@link String} tag parameter, which may be {@code null}. These parameters
45 * are used to form a pair (tag, id), or ({@code null}, id) if tag is
48 * of the notify methods with a (tag, id) pair that is currently active and
51 * be replaced with the new one. This is also the same tag and id you pass
114 * the same tag and id has already been posted by your application and has not yet been
117 * @param tag A string identifier for this notification. May be {@code null}.
118 * @param id An identifier for this notification. The pair (tag, id) must be unique
123 public void notify(String tag, int id, Notification notification) argument
136 service.enqueueNotificationWithTag(pkg, mContext.getBasePackageName(), tag, i
148 notifyAsUser(String tag, int id, Notification notification, UserHandle user) argument
185 cancel(String tag, int id) argument
199 cancelAsUser(String tag, int id, UserHandle user) argument
[all...]
H A DTabActivity.java65 * @param tag the name of the default tab
67 public void setDefaultTab(String tag) { argument
68 mDefaultTab = tag;
/frameworks/base/core/java/android/app/admin/
H A DDeviceAdminInfo.java60 * tag in the "uses-policies" section of its meta-data.
71 * tag in the "uses-policies" section of its meta-data.
81 * tag in the "uses-policies" section of its meta-data.
92 * tag in the "uses-policies" section of its meta-data.
102 * tag in the "uses-policies" section of its meta-data.
111 * tag in the "uses-policies" section of its meta-data.
121 * tag in the "uses-policies" section of its meta-data.
129 * tag in the "uses-policies" section of its meta-data.
137 * tag in the "uses-policies" section of its meta-data.
145 * tag i
152 final public String tag; field in class:DeviceAdminInfo.PolicyInfo
[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];
H A DPackageParser.java166 String tag; field in class:PackageParser.ParsePackageItemArgs
823 outError[0] = "No start tag found";
829 outError[0] = "No <manifest> tag";
858 outError[0] = "No start tag found";
864 outError[0] = "No <manifest> tag";
896 // Only search the tree when the tag is directly below <manifest>
1285 // Just skip this tag
1290 // Just skip this tag
1295 // Just skip this tag
1694 mParseInstrumentationArgs.tag
2096 parsePackageItemInfo(Package owner, PackageItemInfo outInfo, String[] outError, String tag, TypedArray sa, int nameRes, int labelRes, int iconRes, int logoRes) argument
2966 parseAllMetaData(Resources res, XmlPullParser parser, AttributeSet attrs, String tag, Component outInfo, String[] outError) argument
[all...]

Completed in 1894 milliseconds

1234567