Lines Matching refs:UVCDevice

114 Status UVCProvider::UVCDevice::openV4L2DeviceAndSubscribe(const std::string& videoNode) {  in openV4L2DeviceAndSubscribe()
199 void UVCProvider::UVCDevice::getFrameIntervals(ConfigFrame* frame, ConfigFormat* format) { in getFrameIntervals()
234 void UVCProvider::UVCDevice::getFormatFrames(ConfigFormat* format) { in getFormatFrames()
271 std::vector<ConfigFormat> UVCProvider::UVCDevice::getFormats() { in getFormats()
295 std::shared_ptr<UVCProperties> UVCProvider::UVCDevice::parseUvcProperties() { in parseUvcProperties()
304 UVCProvider::UVCDevice::UVCDevice(std::weak_ptr<UVCProvider> parent, in UVCDevice() function in android::webcam::UVCProvider::UVCDevice
328 void UVCProvider::UVCDevice::closeUVCFd() { in closeUVCFd()
364 bool UVCProvider::UVCDevice::isInited() const { in isInited()
368 void UVCProvider::UVCDevice::processSetupControlEvent(const struct usb_ctrlrequest* control, in processSetupControlEvent()
375 void UVCProvider::UVCDevice::processSetupStreamingEvent(const struct usb_ctrlrequest* request, in processSetupStreamingEvent()
433 void UVCProvider::UVCDevice::processSetupClassEvent(const struct usb_ctrlrequest* request, in processSetupClassEvent()
450 void UVCProvider::UVCDevice::processSetupEvent(const struct usb_ctrlrequest* request, in processSetupEvent()
471 void UVCProvider::UVCDevice::setStreamingControl(struct uvc_streaming_control* streamingControl, in setStreamingControl()
526 void UVCProvider::UVCDevice::commitControls() { in commitControls()
551 void UVCProvider::UVCDevice::processDataEvent(const struct uvc_request_data* data) { in processDataEvent()
572 std::shared_ptr<Buffer> UVCProvider::UVCDevice::mapBuffer(uint32_t i) { in mapBuffer()
596 Status UVCProvider::UVCDevice::allocateAndMapBuffers( in allocateAndMapBuffers()
646 Status UVCProvider::UVCDevice::unmapBuffer(std::shared_ptr<Buffer>& buffer) { in unmapBuffer()
656 void UVCProvider::UVCDevice::destroyBuffers(std::shared_ptr<Buffer>& consumerBuffer, in destroyBuffers()
679 Status UVCProvider::UVCDevice::getFrameAndQueueBufferToGadgetDriver(bool firstBuffer) { in getFrameAndQueueBufferToGadgetDriver()
701 void UVCProvider::UVCDevice::processStreamOffEvent() { in processStreamOffEvent()
717 void UVCProvider::UVCDevice::processStreamOnEvent() { in processStreamOnEvent()
762 void UVCProvider::UVCDevice::processStreamEvent() { in processStreamEvent()
777 Status UVCProvider::UVCDevice::encodeImage(AHardwareBuffer* buffer, long timestamp, int rotation) { in encodeImage()
934 mUVCDevice = std::make_shared<UVCDevice>(shared_from_this(), ignoredNodes); in startService()