/drivers/peripheral/distributed_camera/hdi_service/test/fuzztest/dstreamgetstreamattributes_fuzzer/ |
H A D | dstreamgetstreamattributes_fuzzer.cpp | 32 std::vector<StreamAttribute> attributes; in DstreamGetStreamAttributesFuzzTest() local 43 attributes.push_back(attribute); in DstreamGetStreamAttributesFuzzTest() 50 dCameraStreamOperator->GetStreamAttributes(attributes); in DstreamGetStreamAttributesFuzzTest()
|
/drivers/peripheral/camera/hdi_service/v1_0/src/ |
H A D | stream_operator_service.cpp | 77 int32_t StreamOperatorService::GetStreamAttributes(std::vector<StreamAttribute> &attributes) in GetStreamAttributes() argument 81 for (auto attribute : attributes) { in GetStreamAttributes() 87 std::vector<StreamAttribute>().swap(attributes); in GetStreamAttributes() 91 attributes.push_back(hdiAttribute); in GetStreamAttributes()
|
/drivers/peripheral/camera/hal_c/include/ |
H A D | stream_operator_c_if.h | 48 int (*GetStreamAttributes)(StreamAttributeCIF** attributes, int* count);
|
/drivers/peripheral/usb/interfaces/ddk/device/ |
H A D | usbfn_device.h | 119 /** Configuration attributes */
120 uint8_t attributes;
member 144 /** Pointer to device resource node attributes */
|
/drivers/peripheral/camera/hal_c/hdi_cif/include/ |
H A D | stream_operator.h | 35 CamRetCode GetStreamAttributes(std::vector<std::shared_ptr<StreamAttribute>> &attributes) override;
|
/drivers/peripheral/camera/hdi_service/v1_0/include/ |
H A D | stream_operator_service.h | 39 int32_t GetStreamAttributes(std::vector<StreamAttribute> &attributes) override;
|
/drivers/peripheral/camera/vdi_base/interfaces/v1_0/ |
H A D | istream_operator_vdi.h | 49 virtual int32_t GetStreamAttributes(std::vector<VdiStreamAttribute> &attributes) = 0;
|
/drivers/peripheral/camera/hal_c/hdi_cif/src/ |
H A D | stream_operator.cpp | 151 CamRetCode StreamOperator::GetStreamAttributes(std::vector<std::shared_ptr<StreamAttribute>>& attributes) in GetStreamAttributes() argument 178 attributes.push_back(it); in GetStreamAttributes()
|
/drivers/hdf_core/framework/model/audio/usb/src/ |
H A D | audio_usb_parse_interface.c | 151 static int32_t ParseUacEndpointAttr(struct usb_host_interface *alts, int32_t protocol, int32_t *attributes) in ParseUacEndpointAttr() argument 171 *attributes = csep->bmAttributes; in ParseUacEndpointAttr() 178 *attributes = csep->bmAttributes & UAC_EP_CS_ATTR_FILL_MAX; in ParseUacEndpointAttr() 179 /* emulate the endpoint attributes of a v1 device */ in ParseUacEndpointAttr() 181 *attributes |= UAC_EP_CS_ATTR_PITCH_CONTROL; in ParseUacEndpointAttr() 189 /* emulate the endpoint attributes of a v1 device */ in ParseUacEndpointAttr() 191 *attributes |= UAC_EP_CS_ATTR_PITCH_CONTROL; in ParseUacEndpointAttr() 675 (void)ParseUacEndpointAttr(alts, uacFmt->protocol, &audioUsbFormat->attributes); in AudioUsbUac12GetFormat() 786 if ((audioUsbFormat->attributes & UAC_EP_CS_ATTR_SAMPLE_RATE) == 0) { in AudioUsbV1SetSampleRate()
|
H A D | audio_usb_endpoints.c | 993 endpoint->fillMax = !!(audioUsbFormat->attributes & UAC_EP_CS_ATTR_FILL_MAX); in AudioUsbEndpointSetParams()
|
/drivers/hdf_core/framework/model/audio/usb/include/ |
H A D | audio_usb_linux.h | 106 int32_t attributes; /* corresponding attributes of cs endpoint */ member 108 uint8_t epAttr; /* endpoint attributes */
|
/drivers/peripheral/camera/vdi_base/v4l2/include/stream_operator/ |
H A D | stream_operator_vdi_impl.h | 37 int32_t GetStreamAttributes(std::vector<VdiStreamAttribute> &attributes) override;
|
/drivers/peripheral/distributed_camera/hdi_service/test/unittest/common/dstream_operator/ |
H A D | dstream_operator_test.cpp | 232 std::vector<StreamAttribute> attributes; in HWTEST_F() local 233 rc = dstreamOperator_->GetStreamAttributes(attributes); in HWTEST_F()
|
/drivers/peripheral/camera/vdi_base/v4l2/src/stream_operator/ |
H A D | stream_operator_vdi_impl.cpp | 369 int32_t StreamOperatorVdiImpl::GetStreamAttributes(std::vector<VdiStreamAttribute> &attributes) in GetStreamAttributes() argument 375 attributes.clear(); in GetStreamAttributes() 388 attributes.emplace_back(attribute); in GetStreamAttributes()
|
/drivers/peripheral/distributed_camera/hdi_service/include/dstream_operator/ |
H A D | dstream_operator.h | 67 int32_t GetStreamAttributes(std::vector<StreamAttribute> &attributes) override;
|
/drivers/peripheral/distributed_camera/hdi_service/src/dstream_operator/ |
H A D | dstream_operator.cpp | 268 int32_t DStreamOperator::GetStreamAttributes(std::vector<StreamAttribute> &attributes) in GetStreamAttributes() argument 270 attributes.clear(); in GetStreamAttributes() 277 attributes.clear(); in GetStreamAttributes() 280 attributes.push_back(attribute); in GetStreamAttributes()
|
/drivers/peripheral/camera/test/benchmarktest/v1_0/src/ |
H A D | camera_benchmark_test.cpp | 250 std::vector<StreamAttribute> attributes; in BENCHMARK_F() local 252 cameraTest->rc = cameraTest->streamOperator->GetStreamAttributes(attributes); in BENCHMARK_F()
|
/drivers/peripheral/camera/test/hdi/v1_0/src/ |
H A D | hdi_stream_uttest.cpp | 447 std::vector<StreamAttribute> attributes;
in HWTEST_F() local 448 cameraTest->rc = cameraTest->streamOperator->GetStreamAttributes(attributes);
in HWTEST_F()
|
/drivers/peripheral/usb/test/unittest/device_sdk/ |
H A D | usb_device_cdcacm_test.cpp | 301 .attributes = USB_CFG_BUS_POWERED,
|
/drivers/hdf_core/framework/test/unittest/model/usb/device/src/ |
H A D | usb_device_lite_cdcacm_test.c | 293 .attributes = USB_CFG_BUS_POWERED,
|
/drivers/peripheral/camera/test/mpi/src/ |
H A D | performance_hdi_test.cpp | 681 std::vector<std::shared_ptr<Camera::StreamAttribute>> attributes; in HWTEST_F() local 685 Test_->rc = Test_->streamOperator->GetStreamAttributes(attributes); in HWTEST_F()
|
H A D | hdi_stream_test.cpp | 1240 std::vector<std::shared_ptr<Camera::StreamAttribute>> attributes; in HWTEST_F() local 1241 Test_->rc = Test_->streamOperator->GetStreamAttributes(attributes); in HWTEST_F()
|
/drivers/peripheral/camera/test/ut/v4l2/ |
H A D | hdi_interfaces_test.cpp | 1331 std::vector<std::shared_ptr<OHOS::Camera::StreamAttribute>> attributes; in TEST_F() local 1332 cameraBase->rc = cameraBase->streamOperator->GetStreamAttributes(attributes); in TEST_F()
|
/drivers/peripheral/usb/ddk/device/src/ |
H A D | adapter_if.c | 756 ret = snprintf_s(val, MAX_NAMELEN, MAX_NAMELEN - 1, "0x%x", config->attributes); in WriteConfPowerAttributes()
|
H A D | adapter_if_liteos.c | 214 cfgDesc->bmAttributes = usbFnConfig->attributes; in UsbFnAdapterFillConfigDesc()
|