/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) { 39 return new VendorTagDescriptorCache(source); 43 public VendorTagDescriptorCache[] newArray(int size) { 44 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/tests/fuzzer/ |
D | camera_vendorTagDescriptor_fuzzer.cpp | 83 sp<VendorTagDescriptorCache> mVendorTagDescriptorCache = nullptr; 160 mVendorTagDescriptorCache = new VendorTagDescriptorCache(); in invokeVendorTagDescriptorCache() 169 VendorTagDescriptorCache::setAsGlobalVendorTagCache(mVendorTagDescriptorCache); in invokeVendorTagDescriptorCache() 171 [&]() { VendorTagDescriptorCache::getGlobalVendorTagCache(); }, in invokeVendorTagDescriptorCache() 197 [&]() { VendorTagDescriptorCache::isVendorCachePresent(id); }, in invokeVendorTagDescriptorCache() 205 invokeReadWriteParcelsp<VendorTagDescriptorCache>(mVendorTagDescriptorCache); in invokeVendorTagDescriptorCache() 207 invokeNewReadWriteParcelsp<VendorTagDescriptorCache>(mVendorTagDescriptorCache, *mFDP); in invokeVendorTagDescriptorCache()
|
/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 | 437 sp<VendorTagDescriptorCache> cache = in removePermissionEntries() 438 VendorTagDescriptorCache::getGlobalVendorTagCache(); in removePermissionEntries()
|
/frameworks/base/core/jni/ |
D | android_hardware_camera2_CameraMetadata.cpp | 568 !VendorTagDescriptorCache::isVendorCachePresent(vendorId)) { in CameraMetadata_readFromParcel() 750 sp<VendorTagDescriptorCache> cache = VendorTagDescriptorCache::getGlobalVendorTagCache(); in CameraMetadata_getTagFromKeyLocal() 771 sp<VendorTagDescriptorCache> cache = VendorTagDescriptorCache::getGlobalVendorTagCache(); in CameraMetadata_getAllVendorKeys() 914 sp<VendorTagDescriptorCache> cache = VendorTagDescriptorCache::getGlobalVendorTagCache(); in CameraMetadata_getTagFromKey() 966 sp<VendorTagDescriptorCache> cache = new VendorTagDescriptorCache(); in CameraMetadata_setupGlobalVendorTagDescriptor() 970 VendorTagDescriptorCache::clearGlobalVendorTagCache(); in CameraMetadata_setupGlobalVendorTagDescriptor() 973 VendorTagDescriptorCache::clearGlobalVendorTagCache(); in CameraMetadata_setupGlobalVendorTagDescriptor() 979 err = VendorTagDescriptorCache::setAsGlobalVendorTagCache(cache); in CameraMetadata_setupGlobalVendorTagDescriptor()
|
/frameworks/av/camera/aidl/android/hardware/camera2/params/ |
D | VendorTagDescriptorCache.aidl | 20 parcelable VendorTagDescriptorCache cpp_header "camera/VendorTagDescriptor.h";
|
/frameworks/av/camera/aidl/android/hardware/ |
D | ICameraService.aidl | 27 import android.hardware.camera2.params.VendorTagDescriptorCache; 262 VendorTagDescriptorCache getCameraVendorTagCache(); in getCameraVendorTagCache()
|
/frameworks/av/camera/ndk/ndk_vendor/impl/ |
D | ACameraManager.cpp | 41 using ::android::hardware::camera::common::V1_0::helper::VendorTagDescriptorCache; 198 sp<VendorTagDescriptorCache> tagCache = new VendorTagDescriptorCache(); in setupVendorTags() 227 VendorTagDescriptorCache::setAsGlobalVendorTagCache(tagCache); in setupVendorTags() 863 sp<VendorTagDescriptorCache> vtCache = VendorTagDescriptorCache::getGlobalVendorTagCache(); in getTagFromName()
|
/frameworks/av/camera/ndk/impl/ |
D | ACameraManager.cpp | 241 sp<VendorTagDescriptorCache> cache = in getCameraServiceLocked() 242 new VendorTagDescriptorCache(); in getCameraServiceLocked() 249 VendorTagDescriptorCache::clearGlobalVendorTagCache(); in getCameraServiceLocked() 252 VendorTagDescriptorCache::setAsGlobalVendorTagCache( in getCameraServiceLocked() 260 VendorTagDescriptorCache::clearGlobalVendorTagCache(); in getCameraServiceLocked()
|
D | ACameraMetadata.h | 37 using ::android::hardware::camera::common::V1_0::helper::VendorTagDescriptorCache;
|
D | ACameraMetadata.cpp | 94 sp<VendorTagDescriptorCache> vtCache = VendorTagDescriptorCache::getGlobalVendorTagCache(); in init()
|
/frameworks/av/services/camera/libcameraservice/hidl/ |
D | HidlCameraService.cpp | 277 sp<VendorTagDescriptorCache> gCache = VendorTagDescriptorCache::getGlobalVendorTagCache(); in getCameraVendorTagSections()
|
/frameworks/av/services/camera/libcameraservice/aidl/ |
D | AidlCameraService.cpp | 287 sp<VendorTagDescriptorCache> gCache = VendorTagDescriptorCache::getGlobalVendorTagCache(); in getCameraVendorTagSections()
|
/frameworks/av/services/camera/libcameraservice/utils/ |
D | TagMonitor.cpp | 79 sp<VendorTagDescriptorCache> cache = in parseTagsToMonitor() 80 VendorTagDescriptorCache::getGlobalVendorTagCache(); in parseTagsToMonitor()
|
/frameworks/av/camera/ndk/ndk_vendor/tests/ |
D | AImageReaderVendorTest.cpp | 52 using android::hardware::camera::common::V1_0::helper::VendorTagDescriptorCache; 678 ASSERT_NE(VendorTagDescriptorCache::getGlobalVendorTagCache(), nullptr); in SetUp()
|
/frameworks/av/services/camera/libcameraservice/tests/ |
D | CameraProviderManagerTest.cpp | 632 sp<VendorTagDescriptorCache> vendorCache = in TEST() 633 VendorTagDescriptorCache::getGlobalVendorTagCache(); in TEST()
|
/frameworks/av/services/camera/libcameraservice/libcameraservice_fuzzer/ |
D | camera_service_fuzzer.cpp | 238 hardware::camera2::params::VendorTagDescriptorCache cache; in getCameraInformation()
|
/frameworks/av/services/camera/libcameraservice/common/ |
D | CameraProviderManager.cpp | 659 sp<VendorTagDescriptorCache> tagCache = new VendorTagDescriptorCache(); in setUpVendorTags() 665 VendorTagDescriptorCache::setAsGlobalVendorTagCache(tagCache); in setUpVendorTags()
|
/frameworks/av/services/camera/libcameraservice/ |
D | CameraService.cpp | 1400 /*out*/ hardware::camera2::params::VendorTagDescriptorCache* cache) { in getCameraVendorTagCache() 1407 sp<VendorTagDescriptorCache> globalCache = in getCameraVendorTagCache() 1408 VendorTagDescriptorCache::getGlobalVendorTagCache(); in getCameraVendorTagCache() 5443 sp<VendorTagDescriptorCache> cache = in dump() 5444 VendorTagDescriptorCache::getGlobalVendorTagCache(); in dump()
|
D | CameraService.h | 170 hardware::camera2::params::VendorTagDescriptorCache* cache);
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 19467 Landroid/hardware/camera2/params/VendorTagDescriptorCache;-><init>(Landroid/os/Parcel;)V 19468 Landroid/hardware/camera2/params/VendorTagDescriptorCache;->CREATOR:Landroid/os/Parcelable$Creator; 19469 Landroid/hardware/camera2/params/VendorTagDescriptorCache;->TAG:Ljava/lang/String; 20659 …ce$Stub$Proxy;->getCameraVendorTagCache()Landroid/hardware/camera2/params/VendorTagDescriptorCache; 20708 …CameraService;->getCameraVendorTagCache()Landroid/hardware/camera2/params/VendorTagDescriptorCache;
|