Home | History | Annotate | Download | only in default

Lines Matching refs:TvInput

20 #include "TvInput.h"
60 sp<ITvInputCallback> TvInput::mCallback = nullptr;
62 TvInput::TvInput(tv_input_device_t* device) : mDevice(device) {
63 mCallbackOps.notify = &TvInput::notify;
66 TvInput::~TvInput() {
73 Return<void> TvInput::setCallback(const sp<ITvInputCallback>& callback) {
81 Return<void> TvInput::getStreamConfigurations(int32_t deviceId, getStreamConfigurations_cb cb) {
106 Return<void> TvInput::openStream(int32_t deviceId, int32_t streamId, openStream_cb cb) {
130 Return<Result> TvInput::closeStream(int32_t deviceId, int32_t streamId) {
144 void TvInput::notify(struct tv_input_device* __unused, tv_input_event_t* event,
181 uint32_t TvInput::getSupportedConfigCount(uint32_t configCount,
193 bool TvInput::isSupportedStreamType(int type) {
207 return new TvInput(input_device);