Home
last modified time | relevance | path

Searched refs:InputReader (Results 1 – 9 of 9) sorted by relevance

/frameworks/native/services/inputflinger/reader/
DInputReader.cpp43 InputReader::InputReader(std::shared_ptr<EventHubInterface> eventHub, in InputReader() function in android::InputReader
66 InputReader::~InputReader() {} in ~InputReader()
68 status_t InputReader::start() { in start()
77 status_t InputReader::stop() { in stop()
86 void InputReader::loopOnce() { in loopOnce()
150 void InputReader::processEventsLocked(const RawEvent* rawEvents, size_t count) { in processEventsLocked()
188 void InputReader::addDeviceLocked(nsecs_t when, int32_t eventHubId) { in addDeviceLocked()
232 void InputReader::removeDeviceLocked(nsecs_t when, int32_t eventHubId) { in removeDeviceLocked()
277 std::shared_ptr<InputDevice> InputReader::createDeviceLocked( in createDeviceLocked()
296 void InputReader::processEventsForDeviceLocked(int32_t eventHubId, const RawEvent* rawEvents, in processEventsForDeviceLocked()
[all …]
DInputReaderFactory.cpp25 return new InputReader(std::make_unique<EventHub>(), policy, listener); in createInputReader()
DAndroid.bp56 "InputReader.cpp",
/frameworks/native/services/inputflinger/reader/include/
DInputReader.h52 class InputReader : public InputReaderInterface {
54 InputReader(std::shared_ptr<EventHubInterface> eventHub,
57 virtual ~InputReader();
125 InputReader* mReader;
129 explicit ContextImpl(InputReader* reader);
/frameworks/native/services/inputflinger/docs/
Dpointer_capture.md18 …ature requires changes to how events are generated, Pointer Capture is configured in `InputReader`.
25 …est has focus, `InputDispatcher` enables the Pointer Capture state in `InputReader` through the `I…
26 3. When `InputReader` is successfully configured, it notifies `InputDispatcher` through the `InputL…
/frameworks/native/libs/binder/include/binder/
DSafeInterface.h460 status_t error = InputReader<ParamTuple>{mLogTag}.readInputs(data, &rawArgs);
502 status_t error = InputReader<ParamTuple>{mLogTag}.readInputs(data, &rawArgs);
563 class InputReader;
565 class InputReader<std::tuple<Params...>> {
567 explicit InputReader(const char* logTag) : mLogTag(logTag) {}
/frameworks/base/apex/media/framework/java/android/media/
DMediaParser.java330 public interface InputReader { interface in MediaParser
356 public interface SeekableInputReader extends InputReader {
409 void onSampleDataFound(int trackIndex, @NonNull InputReader inputReader) throws IOException; in onSampleDataFound()
1566 public InputReader mInputReader;
1883 private static final class DataReaderAdapter implements InputReader {
1916 private static final class ParsableByteArrayAdapter implements InputReader {
/frameworks/base/apex/media/framework/api/
Dcurrent.txt118 public static interface MediaParser.InputReader {
126 …method public void onSampleDataFound(int, @NonNull android.media.MediaParser.InputReader) throws j…
148 …ic static interface MediaParser.SeekableInputReader extends android.media.MediaParser.InputReader {
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp1153 class InstrumentedInputReader : public InputReader {
1160 : InputReader(eventHub, policy, listener), mFakeContext(this) {} in InstrumentedInputReader()
1176 using InputReader::loopOnce;
1187 return InputReader::createDeviceLocked(eventHubId, identifier); in createDeviceLocked()
1197 FakeInputReaderContext(InputReader* reader) in FakeInputReaderContext()
2127 mReader = new InputReader(std::make_shared<EventHub>(), mFakePolicy, mTestListener); in SetUp()