/frameworks/base/core/java/android/hardware/camera2/params/ |
D | VendorTagDescriptorCache.java | 30 public final class VendorTagDescriptorCache implements Parcelable { class 32 private VendorTagDescriptorCache(Parcel source) { in VendorTagDescriptorCache() method in VendorTagDescriptorCache 35 …public static final @android.annotation.NonNull Parcelable.Creator<VendorTagDescriptorCache> CREAT… 36 new Parcelable.Creator<VendorTagDescriptorCache>() { 38 public VendorTagDescriptorCache createFromParcel(Parcel source) { 40 … VendorTagDescriptorCache vendorDescriptorCache = new VendorTagDescriptorCache(source); 49 public VendorTagDescriptorCache[] newArray(int size) { 50 return new VendorTagDescriptorCache[size];
|
/frameworks/av/camera/include/camera/ |
D | VendorTagDescriptor.h | 178 class VendorTagDescriptorCache : public Parcelable { 181 VendorTagDescriptorCache() {}; in VendorTagDescriptorCache() function 226 class VendorTagDescriptorCache : 227 public ::android::hardware::camera2::params::VendorTagDescriptorCache, 228 public LightRefBase<VendorTagDescriptorCache> { 239 const sp<VendorTagDescriptorCache>& cache); 245 static sp<VendorTagDescriptorCache> getGlobalVendorTagCache();
|
/frameworks/av/camera/ |
D | VendorTagDescriptor.cpp | 59 static sp<VendorTagDescriptorCache> sGlobalVendorTagDescriptorCache; 352 status_t VendorTagDescriptorCache::writeToParcel(Parcel* parcel) const { in writeToParcel() 372 status_t VendorTagDescriptorCache::readFromParcel(const Parcel* parcel) { in readFromParcel() 415 VendorTagDescriptorCache::getVendorIdsAndTagDescriptors() { in getVendorIdsAndTagDescriptors() 419 int VendorTagDescriptorCache::getTagCount(metadata_vendor_id_t id) const { in getTagCount() 431 void VendorTagDescriptorCache::getTagArray(uint32_t* tagArray, in getTagArray() 441 const char* VendorTagDescriptorCache::getSectionName(uint32_t tag, in getSectionName() 454 const char* VendorTagDescriptorCache::getTagName(uint32_t tag, in getTagName() 467 int VendorTagDescriptorCache::getTagType(uint32_t tag, in getTagType() 480 void VendorTagDescriptorCache::dump(int fd, int verbosity, in dump() [all …]
|
D | CameraMetadata.cpp | 422 sp<VendorTagDescriptorCache> cache = in removePermissionEntries() 423 VendorTagDescriptorCache::getGlobalVendorTagCache(); in removePermissionEntries()
|
/frameworks/base/core/jni/ |
D | android_hardware_camera2_CameraMetadata.cpp | 682 sp<VendorTagDescriptorCache> cache = VendorTagDescriptorCache::getGlobalVendorTagCache(); in CameraMetadata_getTagFromKeyLocal() 704 sp<VendorTagDescriptorCache> cache = VendorTagDescriptorCache::getGlobalVendorTagCache(); in CameraMetadata_getAllVendorKeys() 828 sp<VendorTagDescriptorCache> cache = VendorTagDescriptorCache::getGlobalVendorTagCache(); in CameraMetadata_getTagFromKey() 880 sp<VendorTagDescriptorCache> cache = new VendorTagDescriptorCache(); in CameraMetadata_setupGlobalVendorTagDescriptor() 884 VendorTagDescriptorCache::clearGlobalVendorTagCache(); in CameraMetadata_setupGlobalVendorTagDescriptor() 887 VendorTagDescriptorCache::clearGlobalVendorTagCache(); in CameraMetadata_setupGlobalVendorTagDescriptor() 893 err = VendorTagDescriptorCache::setAsGlobalVendorTagCache(cache); in CameraMetadata_setupGlobalVendorTagDescriptor()
|
/frameworks/av/camera/aidl/android/hardware/ |
D | ICameraService.aidl | 24 import android.hardware.camera2.params.VendorTagDescriptorCache; 139 VendorTagDescriptorCache getCameraVendorTagCache(); in getCameraVendorTagCache()
|
/frameworks/av/camera/aidl/android/hardware/camera2/params/ |
D | VendorTagDescriptorCache.aidl | 20 parcelable VendorTagDescriptorCache cpp_header "camera/VendorTagDescriptor.h";
|
/frameworks/av/camera/ndk/ndk_vendor/impl/ |
D | ACameraManager.cpp | 42 using android::hardware::camera::common::V1_0::helper::VendorTagDescriptorCache; 187 sp<VendorTagDescriptorCache> tagCache = new VendorTagDescriptorCache(); in setupVendorTags() 211 VendorTagDescriptorCache::setAsGlobalVendorTagCache(tagCache); in setupVendorTags() 605 sp<VendorTagDescriptorCache> vtCache = VendorTagDescriptorCache::getGlobalVendorTagCache(); in getTagFromName()
|
/frameworks/av/camera/ndk/impl/ |
D | ACameraManager.cpp | 142 sp<VendorTagDescriptorCache> cache = in getCameraService() 143 new VendorTagDescriptorCache(); in getCameraService() 150 VendorTagDescriptorCache::clearGlobalVendorTagCache(); in getCameraService() 153 VendorTagDescriptorCache::setAsGlobalVendorTagCache( in getCameraService() 161 VendorTagDescriptorCache::clearGlobalVendorTagCache(); in getCameraService()
|
/frameworks/av/services/camera/libcameraservice/utils/ |
D | TagMonitor.cpp | 64 sp<VendorTagDescriptorCache> cache = in parseTagsToMonitor() 65 VendorTagDescriptorCache::getGlobalVendorTagCache(); in parseTagsToMonitor()
|
/frameworks/av/services/camera/libcameraservice/hidl/ |
D | HidlCameraService.cpp | 221 sp<VendorTagDescriptorCache> gCache = VendorTagDescriptorCache::getGlobalVendorTagCache(); in getCameraVendorTagSections()
|
/frameworks/av/services/camera/libcameraservice/tests/ |
D | CameraProviderManagerTest.cpp | 329 sp<VendorTagDescriptorCache> vendorCache = in TEST() 330 VendorTagDescriptorCache::getGlobalVendorTagCache(); in TEST()
|
/frameworks/av/camera/ndk/ndk_vendor/tests/ |
D | AImageReaderVendorTest.cpp | 51 using android::hardware::camera::common::V1_0::helper::VendorTagDescriptorCache; 552 ASSERT_NE(VendorTagDescriptorCache::getGlobalVendorTagCache(), nullptr); in SetUp()
|
/frameworks/av/services/camera/libcameraservice/ |
D | CameraService.cpp | 581 /*out*/ hardware::camera2::params::VendorTagDescriptorCache* cache) { in getCameraVendorTagCache() 588 sp<VendorTagDescriptorCache> globalCache = in getCameraVendorTagCache() 589 VendorTagDescriptorCache::getGlobalVendorTagCache(); in getCameraVendorTagCache() 3123 sp<VendorTagDescriptorCache> cache = in dump() 3124 VendorTagDescriptorCache::getGlobalVendorTagCache(); in dump()
|
D | CameraService.h | 120 hardware::camera2::params::VendorTagDescriptorCache* cache);
|
/frameworks/av/services/camera/libcameraservice/common/ |
D | CameraProviderManager.cpp | 268 sp<VendorTagDescriptorCache> tagCache = new VendorTagDescriptorCache(); in setUpVendorTags() 274 VendorTagDescriptorCache::setAsGlobalVendorTagCache(tagCache); in setUpVendorTags()
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 23856 Landroid/hardware/camera2/params/VendorTagDescriptorCache; 23857 Landroid/hardware/camera2/params/VendorTagDescriptorCache;-><init>(Landroid/os/Parcel;)V 23858 Landroid/hardware/camera2/params/VendorTagDescriptorCache;->CREATOR:Landroid/os/Parcelable$Creator; 23859 Landroid/hardware/camera2/params/VendorTagDescriptorCache;->TAG:Ljava/lang/String; 25166 …ce$Stub$Proxy;->getCameraVendorTagCache()Landroid/hardware/camera2/params/VendorTagDescriptorCache; 25217 …CameraService;->getCameraVendorTagCache()Landroid/hardware/camera2/params/VendorTagDescriptorCache;
|