/hardware/qcom/audio/msm8909/post_proc/ |
D | bundle.c | 134 if (context->ops.start) in add_effect_to_output() 135 context->ops.start(context, output); in add_effect_to_output() 150 if (context->ops.stop) in remove_effect_from_output() 151 context->ops.stop(context, output); in remove_effect_from_output() 173 (fx_ctxt->ops.process != NULL)) in effects_enabled() 243 if (fx_ctxt->ops.start) in offload_effects_bundle_hal_start_output() 244 fx_ctxt->ops.start(fx_ctxt, out_ctxt); in offload_effects_bundle_hal_start_output() 283 if (fx_ctxt->ops.stop) in offload_effects_bundle_hal_stop_output() 284 fx_ctxt->ops.stop(fx_ctxt, out_ctxt); in offload_effects_bundle_hal_stop_output() 304 if (context->ops.reset) in set_config() [all …]
|
/hardware/qcom/audio/post_proc/ |
D | bundle.c | 130 if (context->ops.start) in add_effect_to_output() 131 context->ops.start(context, output); in add_effect_to_output() 145 if (context->ops.stop) in remove_effect_from_output() 146 context->ops.stop(context, output); in remove_effect_from_output() 168 (fx_ctxt->ops.process != NULL)) in effects_enabled() 233 if (fx_ctxt->ops.start) in offload_effects_bundle_hal_start_output() 234 fx_ctxt->ops.start(fx_ctxt, out_ctxt); in offload_effects_bundle_hal_start_output() 273 if (fx_ctxt->ops.stop) in offload_effects_bundle_hal_stop_output() 274 fx_ctxt->ops.stop(fx_ctxt, out_ctxt); in offload_effects_bundle_hal_stop_output() 294 if (context->ops.reset) in set_config() [all …]
|
/hardware/libhardware/modules/camera/ |
D | CameraHAL.cpp | 127 static int get_tag_count(const vendor_tag_ops_t* ops) in get_tag_count() argument 129 return gVendorTags.getTagCount(ops); in get_tag_count() 132 static void get_all_tags(const vendor_tag_ops_t* ops, uint32_t* tag_array) in get_all_tags() argument 134 gVendorTags.getAllTags(ops, tag_array); in get_all_tags() 137 static const char* get_section_name(const vendor_tag_ops_t* ops, uint32_t tag) in get_section_name() argument 139 return gVendorTags.getSectionName(ops, tag); in get_section_name() 142 static const char* get_tag_name(const vendor_tag_ops_t* ops, uint32_t tag) in get_tag_name() argument 144 return gVendorTags.getTagName(ops, tag); in get_tag_name() 147 static int get_tag_type(const vendor_tag_ops_t* ops, uint32_t tag) in get_tag_type() argument 149 return gVendorTags.getTagType(ops, tag); in get_tag_type() [all …]
|
D | VendorTags.h | 32 int getTagCount(const vendor_tag_ops_t* ops); 33 void getAllTags(const vendor_tag_ops_t* ops, uint32_t* tag_array); 34 const char* getSectionName(const vendor_tag_ops_t* ops, uint32_t tag); 35 const char* getTagName(const vendor_tag_ops_t* ops, uint32_t tag); 36 int getTagType(const vendor_tag_ops_t* ops, uint32_t tag);
|
D | VendorTags.cpp | 139 int VendorTags::getTagCount(const vendor_tag_ops_t* ops) in getTagCount() argument 144 void VendorTags::getAllTags(const vendor_tag_ops_t* ops, uint32_t* tag_array) in getAllTags() argument 159 const char* VendorTags::getSectionName(const vendor_tag_ops_t* ops, uint32_t tag) in getSectionName() argument 169 const char* VendorTags::getTagName(const vendor_tag_ops_t* ops, uint32_t tag) in getTagName() argument 179 int VendorTags::getTagType(const vendor_tag_ops_t* ops, uint32_t tag) in getTagType() argument
|
/hardware/qcom/camera/QCamera2/HAL3/ |
D | QCamera3VendorTags.cpp | 171 vendor_tag_ops_t* ops) in get_vendor_tag_ops() argument 175 Ops = ops; in get_vendor_tag_ops() 177 ops->get_tag_count = get_tag_count; in get_vendor_tag_ops() 178 ops->get_all_tags = get_all_tags; in get_vendor_tag_ops() 179 ops->get_section_name = get_section_name; in get_vendor_tag_ops() 180 ops->get_tag_name = get_tag_name; in get_vendor_tag_ops() 181 ops->get_tag_type = get_tag_type; in get_vendor_tag_ops() 182 ops->reserved[0] = NULL; in get_vendor_tag_ops() 201 const vendor_tag_ops_t * ops) in get_tag_count() argument 204 if (ops == Ops) in get_tag_count() [all …]
|
D | QCamera3VendorTags.h | 148 static void get_vendor_tag_ops(vendor_tag_ops_t* ops); 150 const vendor_tag_ops_t *ops); 152 const vendor_tag_ops_t *ops, 155 const vendor_tag_ops_t *ops, 158 const vendor_tag_ops_t *ops, 161 const vendor_tag_ops_t *ops,
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/ |
D | viddec_pm_stubs.c | 3 void viddec_vc1_get_ops(viddec_parser_ops_t *ops) in viddec_vc1_get_ops() argument 8 void viddec_mpeg2_get_ops(viddec_parser_ops_t *ops) in viddec_mpeg2_get_ops() argument 13 void viddec_mp4_get_ops(viddec_parser_ops_t *ops) in viddec_mp4_get_ops() argument 18 void viddec_h264_get_ops(viddec_parser_ops_t *ops) in viddec_h264_get_ops() argument
|
/hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/src/ |
D | mm_jpegdec_interface.c | 242 uint32_t jpegdec_open(mm_jpegdec_ops_t *ops) in jpegdec_open() argument 276 if (NULL != ops) { in jpegdec_open() 278 ops->start_job = mm_jpegdec_intf_start_job; in jpegdec_open() 279 ops->abort_job = mm_jpegdec_intf_abort_job; in jpegdec_open() 280 ops->create_session = mm_jpegdec_intf_create_session; in jpegdec_open() 281 ops->destroy_session = mm_jpegdec_intf_destroy_session; in jpegdec_open() 282 ops->close = mm_jpegdec_intf_close; in jpegdec_open()
|
D | mm_jpeg_interface.c | 325 uint32_t jpeg_open(mm_jpeg_ops_t *ops, mm_jpeg_mpo_ops_t *mpo_ops, in jpeg_open() argument 384 if (NULL != ops) { in jpeg_open() 386 ops->start_job = mm_jpeg_intf_start_job; in jpeg_open() 387 ops->abort_job = mm_jpeg_intf_abort_job; in jpeg_open() 388 ops->create_session = mm_jpeg_intf_create_session; in jpeg_open() 389 ops->destroy_session = mm_jpeg_intf_destroy_session; in jpeg_open() 390 ops->close = mm_jpeg_intf_close; in jpeg_open()
|
/hardware/qcom/audio/visualizer/ |
D | offload_visualizer.c | 81 effect_ops_t ops; member 263 if (context->ops.start) in add_effect_to_output() 264 context->ops.start(context, output); in add_effect_to_output() 275 if (context->ops.stop) in remove_effect_from_output() 276 context->ops.stop(context, output); in remove_effect_from_output() 296 if (fx_ctxt->state == EFFECT_STATE_ACTIVE && fx_ctxt->ops.process != NULL) in effects_enabled() 402 if (fx_ctxt->ops.process != NULL) in capture_thread_loop() 403 fx_ctxt->ops.process(fx_ctxt, &buf, &buf); in capture_thread_loop() 455 if (fx_ctxt->ops.start) in visualizer_hal_start_output() 456 fx_ctxt->ops.start(fx_ctxt, out_ctxt); in visualizer_hal_start_output() [all …]
|
/hardware/qcom/audio/msm8909/visualizer/ |
D | offload_visualizer.c | 71 effect_ops_t ops; member 253 if (context->ops.start) in add_effect_to_output() 254 context->ops.start(context, output); in add_effect_to_output() 265 if (context->ops.stop) in remove_effect_from_output() 266 context->ops.stop(context, output); in remove_effect_from_output() 286 if (fx_ctxt->state == EFFECT_STATE_ACTIVE && fx_ctxt->ops.process != NULL) in effects_enabled() 389 if (fx_ctxt->ops.process != NULL) in capture_thread_loop() 390 fx_ctxt->ops.process(fx_ctxt, &buf, &buf); in capture_thread_loop() 447 if (fx_ctxt->ops.start) in visualizer_hal_start_output() 448 fx_ctxt->ops.start(fx_ctxt, out_ctxt); in visualizer_hal_start_output() [all …]
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/ |
D | viddec_mp4_parse.c | 269 void viddec_mp4_get_ops(viddec_parser_ops_t *ops) in viddec_mp4_get_ops() argument 271 ops->parse_syntax = viddec_mp4_parse; in viddec_mp4_get_ops() 272 ops->get_cxt_size = viddec_mp4_get_context_size; in viddec_mp4_get_ops() 273 ops->is_wkld_done = viddec_mp4_wkld_done; in viddec_mp4_get_ops() 274 ops->parse_sc = viddec_parse_sc_mp4; in viddec_mp4_get_ops() 275 ops->is_frame_start = viddec_mp4_is_frame_start; in viddec_mp4_get_ops() 276 ops->init = viddec_mp4_init; in viddec_mp4_get_ops()
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp2/parser/ |
D | viddec_mpeg2_parse.c | 370 viddec_parser_ops_t *ops in viddec_mpeg2_get_ops() argument 373 ops->init = viddec_mpeg2_parser_init; in viddec_mpeg2_get_ops() 374 ops->parse_syntax = viddec_mpeg2_parse; in viddec_mpeg2_get_ops() 375 ops->get_cxt_size = viddec_mpeg2_get_context_size; in viddec_mpeg2_get_ops() 376 ops->is_wkld_done = viddec_mpeg2_is_workload_done; in viddec_mpeg2_get_ops() 377 ops->is_frame_start = viddec_mpeg2_is_start_frame; in viddec_mpeg2_get_ops()
|
/hardware/ti/omap4-aah/camera/ |
D | CameraHal_Module.cpp | 529 camera_device_extended_ops_t * const ops = static_cast<camera_device_extended_ops_t*>( in camera_send_command() local 533 ops->set_extended_preview_ops = camera_set_extended_preview_ops; in camera_send_command() 534 ops->set_buffer_source = camera_set_buffer_source; in camera_send_command() 535 ops->release_buffer_source = camera_release_buffer_source; in camera_send_command() 536 ops->take_picture_with_parameters = camera_take_picture_with_parameters; in camera_send_command() 537 ops->reprocess = camera_reprocess; in camera_send_command() 538 ops->cancel_reprocess = camera_cancel_reprocess; in camera_send_command() 604 if (ti_dev->base.ops) { in camera_device_close() 605 free(ti_dev->base.ops); in camera_device_close() 684 camera_device->base.ops = camera_ops; in camera_device_open()
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/ |
D | viddec_vc1_parse.c | 336 void viddec_vc1_get_ops(viddec_parser_ops_t *ops) in viddec_vc1_get_ops() argument 338 ops->init = viddec_vc1_init; in viddec_vc1_get_ops() 339 ops->parse_syntax = viddec_vc1_parse; in viddec_vc1_get_ops() 340 ops->get_cxt_size = viddec_vc1_get_context_size; in viddec_vc1_get_ops() 341 ops->is_wkld_done = viddec_vc1_wkld_done; in viddec_vc1_get_ops() 342 ops->is_frame_start = viddec_vc1_is_start_frame; in viddec_vc1_get_ops()
|
/hardware/libhardware/tests/camera3/ |
D | camera3tests.cpp | 59 ASSERT_TRUE(NULL != cam_device()->ops) << "Camera device ops are NULL"; in TEST_F() 61 cam_device()->ops->construct_default_request_settings(cam_device(), in TEST_F()
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/ |
D | viddec_h264_parse.c | 549 void viddec_h264_get_ops(viddec_parser_ops_t *ops) in viddec_h264_get_ops() argument 551 ops->init = viddec_h264_init; in viddec_h264_get_ops() 553 ops->parse_syntax = viddec_h264_parse; in viddec_h264_get_ops() 554 ops->get_cxt_size = viddec_h264_get_context_size; in viddec_h264_get_ops() 555 ops->is_wkld_done = viddec_h264_wkld_done; in viddec_h264_get_ops() 556 ops->is_frame_start = viddec_h264_is_frame_start; in viddec_h264_get_ops()
|
/hardware/qcom/msm8x26/original-kernel-headers/linux/ |
D | msm_mdp.h | 384 uint32_t ops; member 466 uint32_t len, ops; member 472 uint32_t ops; member 481 uint32_t ops; member 756 uint32_t ops; member 830 uint32_t ops; member 836 uint32_t ops; member 842 uint32_t ops; member 919 uint32_t ops; member 939 uint32_t ops; member
|
/hardware/qcom/msm8x26/kernel-headers/linux/ |
D | msm_mdp.h | 402 uint32_t ops; member 489 uint32_t len, ops; member 495 uint32_t ops; member 505 uint32_t ops; member 694 uint32_t ops; member 771 uint32_t ops; member 777 uint32_t ops; member 784 uint32_t ops; member 869 uint32_t ops; member 890 uint32_t ops; member
|
/hardware/qcom/msm8x84/kernel-headers/linux/ |
D | msm_mdp.h | 400 uint32_t ops; member 486 uint32_t len, ops; member 492 uint32_t ops; member 502 uint32_t ops; member 680 uint32_t ops; member 757 uint32_t ops; member 764 uint32_t ops; member 770 uint32_t ops; member 855 uint32_t ops; member 876 uint32_t ops; member
|
/hardware/qcom/msm8x84/original-kernel-headers/linux/ |
D | msm_mdp.h | 382 uint32_t ops; member 464 uint32_t len, ops; member 470 uint32_t ops; member 479 uint32_t ops; member 733 uint32_t ops; member 807 uint32_t ops; member 813 uint32_t ops; member 819 uint32_t ops; member 896 uint32_t ops; member 916 uint32_t ops; member
|
/hardware/qcom/camera/QCamera2/stack/mm-camera-test/src/ |
D | mm_qcamera_app.c | 530 rc = test_obj->cam->ops->map_buf(test_obj->cam->camera_handle, in mm_app_open() 553 rc = test_obj->cam->ops->map_buf(test_obj->cam->camera_handle, in mm_app_open() 564 rc = test_obj->cam->ops->register_event_notify(test_obj->cam->camera_handle, in mm_app_open() 573 rc = test_obj->cam->ops->query_capability(test_obj->cam->camera_handle); in mm_app_open() 594 test_obj->cam->ops->unmap_buf(test_obj->cam->camera_handle, in mm_app_open() 599 test_obj->cam->ops->unmap_buf(test_obj->cam->camera_handle, in mm_app_open() 604 test_obj->cam->ops->close_camera(test_obj->cam->camera_handle); in mm_app_open() 634 rc = test_obj->cam->ops->set_parms(test_obj->cam->camera_handle, test_obj->params_buffer); in commit_set_batch() 652 rc = test_obj->cam->ops->unmap_buf(test_obj->cam->camera_handle, in mm_app_close() 659 rc = test_obj->cam->ops->unmap_buf(test_obj->cam->camera_handle, in mm_app_close() [all …]
|
/hardware/qcom/msm8994/original-kernel-headers/linux/ |
D | msm_mdp.h | 406 uint32_t ops; member 488 uint32_t len, ops; member 494 uint32_t ops; member 503 uint32_t ops; member 780 uint32_t ops; member 870 uint32_t ops; member 876 uint32_t ops; member 882 uint32_t ops; member 968 uint32_t ops; member 988 uint32_t ops; member
|
/hardware/qcom/msm8994/kernel-headers/linux/ |
D | msm_mdp.h | 423 uint32_t ops; member 510 uint32_t len, ops; member 516 uint32_t ops; member 526 uint32_t ops; member 717 uint32_t ops; member 808 uint32_t ops; member 815 uint32_t ops; member 821 uint32_t ops; member 915 uint32_t ops; member 936 uint32_t ops; member
|