Lines Matching defs:data
51 camera_status_t update(uint32_t tag, uint32_t count, const uint8_t* data);
52 camera_status_t update(uint32_t tag, uint32_t count, const int32_t* data);
53 camera_status_t update(uint32_t tag, uint32_t count, const float* data);
54 camera_status_t update(uint32_t tag, uint32_t count, const double* data);
55 camera_status_t update(uint32_t tag, uint32_t count, const int64_t* data);
56 camera_status_t update(uint32_t tag, uint32_t count, const ACameraMetadata_rational* data);
70 camera_status_t updateImpl(uint32_t tag, uint32_t count, const NDK_T* data) {
83 if (count == 0 && data == nullptr) {
86 // Here we have to use reinterpret_cast because the NDK data type is
87 // exact copy of internal data type but they do not inherit from each other
88 ret = mData.update(tag, reinterpret_cast<const INTERNAL_T*>(data), count);