Lines Matching refs:EmulatedCamera2

40 EmulatedCamera2::EmulatedCamera2(int cameraId,  in EmulatedCamera2()  function in android::EmulatedCamera2
47 common.close = EmulatedCamera2::close; in EmulatedCamera2()
57 EmulatedCamera2::get_camera_vendor_section_name; in EmulatedCamera2()
59 EmulatedCamera2::get_camera_vendor_tag_name; in EmulatedCamera2()
61 EmulatedCamera2::get_camera_vendor_tag_type; in EmulatedCamera2()
68 EmulatedCamera2::~EmulatedCamera2() { in ~EmulatedCamera2()
79 status_t EmulatedCamera2::Initialize() { in Initialize()
87 status_t EmulatedCamera2::connectCamera(hw_device_t** device) { in connectCamera()
92 status_t EmulatedCamera2::closeCamera() { in closeCamera()
96 status_t EmulatedCamera2::getCameraInfo(struct camera_info* info) { in getCameraInfo()
107 int EmulatedCamera2::requestQueueNotify() { in requestQueueNotify()
112 int EmulatedCamera2::getInProgressCount() { in getInProgressCount()
117 int EmulatedCamera2::flushCapturesInProgress() { in flushCapturesInProgress()
122 int EmulatedCamera2::constructDefaultRequest( in constructDefaultRequest()
130 int EmulatedCamera2::allocateStream( in allocateStream()
142 int EmulatedCamera2::registerStreamBuffers( in registerStreamBuffers()
150 int EmulatedCamera2::releaseStream(uint32_t stream_id) { in releaseStream()
156 int EmulatedCamera2::allocateReprocessStream( in allocateReprocessStream()
167 int EmulatedCamera2::allocateReprocessStreamFromStream( in allocateReprocessStreamFromStream()
174 int EmulatedCamera2::releaseReprocessStream(uint32_t stream_id) { in releaseReprocessStream()
180 int EmulatedCamera2::triggerAction(uint32_t trigger_id, in triggerAction()
187 const char* EmulatedCamera2::getVendorSectionName(uint32_t tag) { in getVendorSectionName()
191 const char* EmulatedCamera2::getVendorTagName(uint32_t tag) { in getVendorTagName()
195 int EmulatedCamera2::getVendorTagType(uint32_t tag) { in getVendorTagType()
201 int EmulatedCamera2::dump(int fd) { in dump()
217 EmulatedCamera2* getInstance(const camera2_device_t *d) { in getInstance()
218 const EmulatedCamera2* cec = static_cast<const EmulatedCamera2*>(d); in getInstance()
219 return const_cast<EmulatedCamera2*>(cec); in getInstance()
222 int EmulatedCamera2::set_request_queue_src_ops(const camera2_device_t *d, in set_request_queue_src_ops()
224 EmulatedCamera2* ec = getInstance(d); in set_request_queue_src_ops()
229 int EmulatedCamera2::notify_request_queue_not_empty(const camera2_device_t *d) { in notify_request_queue_not_empty()
230 EmulatedCamera2* ec = getInstance(d); in notify_request_queue_not_empty()
234 int EmulatedCamera2::set_frame_queue_dst_ops(const camera2_device_t *d, in set_frame_queue_dst_ops()
236 EmulatedCamera2* ec = getInstance(d); in set_frame_queue_dst_ops()
241 int EmulatedCamera2::get_in_progress_count(const camera2_device_t *d) { in get_in_progress_count()
242 EmulatedCamera2* ec = getInstance(d); in get_in_progress_count()
246 int EmulatedCamera2::flush_captures_in_progress(const camera2_device_t *d) { in flush_captures_in_progress()
247 EmulatedCamera2* ec = getInstance(d); in flush_captures_in_progress()
251 int EmulatedCamera2::construct_default_request(const camera2_device_t *d, in construct_default_request()
254 EmulatedCamera2* ec = getInstance(d); in construct_default_request()
258 int EmulatedCamera2::allocate_stream(const camera2_device_t *d, in allocate_stream()
267 EmulatedCamera2* ec = getInstance(d); in allocate_stream()
272 int EmulatedCamera2::register_stream_buffers(const camera2_device_t *d, in register_stream_buffers()
276 EmulatedCamera2* ec = getInstance(d); in register_stream_buffers()
281 int EmulatedCamera2::release_stream(const camera2_device_t *d, in release_stream()
283 EmulatedCamera2* ec = getInstance(d); in release_stream()
287 int EmulatedCamera2::allocate_reprocess_stream(const camera2_device_t *d, in allocate_reprocess_stream()
295 EmulatedCamera2* ec = getInstance(d); in allocate_reprocess_stream()
300 int EmulatedCamera2::allocate_reprocess_stream_from_stream( in allocate_reprocess_stream_from_stream()
305 EmulatedCamera2* ec = getInstance(d); in allocate_reprocess_stream_from_stream()
311 int EmulatedCamera2::release_reprocess_stream(const camera2_device_t *d, in release_reprocess_stream()
313 EmulatedCamera2* ec = getInstance(d); in release_reprocess_stream()
317 int EmulatedCamera2::trigger_action(const camera2_device_t *d, in trigger_action()
321 EmulatedCamera2* ec = getInstance(d); in trigger_action()
325 int EmulatedCamera2::set_notify_callback(const camera2_device_t *d, in set_notify_callback()
327 EmulatedCamera2* ec = getInstance(d); in set_notify_callback()
334 int EmulatedCamera2::get_metadata_vendor_tag_ops(const camera2_device_t *d, in get_metadata_vendor_tag_ops()
336 EmulatedCamera2* ec = getInstance(d); in get_metadata_vendor_tag_ops()
342 const char* EmulatedCamera2::get_camera_vendor_section_name( in get_camera_vendor_section_name()
345 EmulatedCamera2* ec = static_cast<const TagOps*>(v)->parent; in get_camera_vendor_section_name()
349 const char* EmulatedCamera2::get_camera_vendor_tag_name( in get_camera_vendor_tag_name()
352 EmulatedCamera2* ec = static_cast<const TagOps*>(v)->parent; in get_camera_vendor_tag_name()
356 int EmulatedCamera2::get_camera_vendor_tag_type( in get_camera_vendor_tag_type()
359 EmulatedCamera2* ec = static_cast<const TagOps*>(v)->parent; in get_camera_vendor_tag_type()
363 int EmulatedCamera2::dump(const camera2_device_t *d, int fd) { in dump()
364 EmulatedCamera2* ec = getInstance(d); in dump()
368 int EmulatedCamera2::close(struct hw_device_t* device) { in close()
369 EmulatedCamera2* ec = in close()
370 static_cast<EmulatedCamera2*>( in close()
379 void EmulatedCamera2::sendNotification(int32_t msgType, in sendNotification()
391 camera2_device_ops_t EmulatedCamera2::sDeviceOps = {
392 EmulatedCamera2::set_request_queue_src_ops,
393 EmulatedCamera2::notify_request_queue_not_empty,
394 EmulatedCamera2::set_frame_queue_dst_ops,
395 EmulatedCamera2::get_in_progress_count,
396 EmulatedCamera2::flush_captures_in_progress,
397 EmulatedCamera2::construct_default_request,
398 EmulatedCamera2::allocate_stream,
399 EmulatedCamera2::register_stream_buffers,
400 EmulatedCamera2::release_stream,
401 EmulatedCamera2::allocate_reprocess_stream,
402 EmulatedCamera2::allocate_reprocess_stream_from_stream,
403 EmulatedCamera2::release_reprocess_stream,
404 EmulatedCamera2::trigger_action,
405 EmulatedCamera2::set_notify_callback,
406 EmulatedCamera2::get_metadata_vendor_tag_ops,
407 EmulatedCamera2::dump,