/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/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() 604 sp<VendorTagDescriptorCache> vtCache = VendorTagDescriptorCache::getGlobalVendorTagCache(); in getTagFromName()
|
/frameworks/av/camera/aidl/android/hardware/camera2/params/ |
D | VendorTagDescriptorCache.aidl | 20 parcelable VendorTagDescriptorCache cpp_header "camera/VendorTagDescriptor.h";
|
/frameworks/av/camera/ndk/impl/ |
D | ACameraManager.cpp | 146 sp<VendorTagDescriptorCache> cache = in getCameraServiceLocked() 147 new VendorTagDescriptorCache(); in getCameraServiceLocked() 154 VendorTagDescriptorCache::clearGlobalVendorTagCache(); in getCameraServiceLocked() 157 VendorTagDescriptorCache::setAsGlobalVendorTagCache( in getCameraServiceLocked() 165 VendorTagDescriptorCache::clearGlobalVendorTagCache(); in getCameraServiceLocked()
|
/frameworks/av/services/camera/libcameraservice/hidl/ |
D | HidlCameraService.cpp | 229 sp<VendorTagDescriptorCache> gCache = VendorTagDescriptorCache::getGlobalVendorTagCache(); in getCameraVendorTagSections()
|
/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/tests/ |
D | CameraProviderManagerTest.cpp | 321 sp<VendorTagDescriptorCache> vendorCache = in TEST() 322 VendorTagDescriptorCache::getGlobalVendorTagCache(); in TEST()
|
/frameworks/av/camera/ndk/ndk_vendor/tests/ |
D | AImageReaderVendorTest.cpp | 52 using android::hardware::camera::common::V1_0::helper::VendorTagDescriptorCache; 554 ASSERT_NE(VendorTagDescriptorCache::getGlobalVendorTagCache(), nullptr); in SetUp()
|
/frameworks/av/services/camera/libcameraservice/ |
D | CameraService.cpp | 603 /*out*/ hardware::camera2::params::VendorTagDescriptorCache* cache) { in getCameraVendorTagCache() 610 sp<VendorTagDescriptorCache> globalCache = in getCameraVendorTagCache() 611 VendorTagDescriptorCache::getGlobalVendorTagCache(); in getCameraVendorTagCache() 3167 sp<VendorTagDescriptorCache> cache = in dump() 3168 VendorTagDescriptorCache::getGlobalVendorTagCache(); in dump()
|
D | CameraService.h | 123 hardware::camera2::params::VendorTagDescriptorCache* cache);
|
/frameworks/av/services/camera/libcameraservice/common/ |
D | CameraProviderManager.cpp | 289 sp<VendorTagDescriptorCache> tagCache = new VendorTagDescriptorCache(); in setUpVendorTags() 295 VendorTagDescriptorCache::setAsGlobalVendorTagCache(tagCache); in setUpVendorTags()
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 22354 Landroid/hardware/camera2/params/VendorTagDescriptorCache;-><init>(Landroid/os/Parcel;)V 22355 Landroid/hardware/camera2/params/VendorTagDescriptorCache;->CREATOR:Landroid/os/Parcelable$Creator; 22356 Landroid/hardware/camera2/params/VendorTagDescriptorCache;->TAG:Ljava/lang/String; 23546 …ce$Stub$Proxy;->getCameraVendorTagCache()Landroid/hardware/camera2/params/VendorTagDescriptorCache; 23595 …CameraService;->getCameraVendorTagCache()Landroid/hardware/camera2/params/VendorTagDescriptorCache;
|