Lines Matching refs:TvInput
60 sp<ITvInputCallback> TvInput::mCallback = nullptr;
62 TvInput::TvInput(tv_input_device_t* device) : mDevice(device) { in TvInput() function in android::hardware::tv::input::V1_0::implementation::TvInput
63 mCallbackOps.notify = &TvInput::notify; in TvInput()
66 TvInput::~TvInput() { in ~TvInput()
73 Return<void> TvInput::setCallback(const sp<ITvInputCallback>& callback) { in setCallback()
81 Return<void> TvInput::getStreamConfigurations(int32_t deviceId, getStreamConfigurations_cb cb) { in getStreamConfigurations()
106 Return<void> TvInput::openStream(int32_t deviceId, int32_t streamId, openStream_cb cb) { in openStream()
130 Return<Result> TvInput::closeStream(int32_t deviceId, int32_t streamId) { in closeStream()
144 void TvInput::notify(struct tv_input_device* __unused, tv_input_event_t* event, in notify()
181 uint32_t TvInput::getSupportedConfigCount(uint32_t configCount, in getSupportedConfigCount()
193 bool TvInput::isSupportedStreamType(int type) { in isSupportedStreamType()
207 return new TvInput(input_device); in HIDL_FETCH_ITvInput()