Home
last modified time | relevance | path

Searched refs:postEvent (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/jni/android/graphics/
DSurfaceTexture.cpp55 jmethodID postEvent; member
213 env->CallStaticVoidMethod(mClazz, fields.postEvent, mWeakThiz); in onFrameAvailable()
251 fields.postEvent = env->GetStaticMethodID(clazz, "postEventFromNative", in SurfaceTexture_classInit()
253 if (fields.postEvent == NULL) { in SurfaceTexture_classInit()
/frameworks/native/services/surfaceflinger/
DEventThread.cpp186 status_t err = conn->postEvent(event); in threadMain()
405 status_t EventThread::Connection::postEvent(const DisplayEventReceiver::Event& event) { in postEvent() function in android::impl::EventThread::Connection
DEventThread.h88 virtual status_t postEvent(const DisplayEventReceiver::Event& event);
/frameworks/native/services/surfaceflinger/tests/unittests/
DEventThreadTest.cpp54 MOCK_METHOD1(postEvent, status_t(const DisplayEventReceiver::Event& event));
123 EXPECT_CALL(*connection, postEvent(_)).WillRepeatedly(Invoke(recorder.getInvocable())); in createConnection()