Home
last modified time | relevance | path

Searched refs:periodFlushed (Results 1 – 8 of 8) sorted by relevance

/frameworks/native/services/surfaceflinger/tests/unittests/
DVSyncReactorTest.cpp197 bool periodFlushed = true; in TEST_F() local
204 EXPECT_TRUE(mReactor.addHwVsyncTimestamp(0, std::nullopt, &periodFlushed)); in TEST_F()
205 EXPECT_FALSE(periodFlushed); in TEST_F()
206 EXPECT_FALSE(mReactor.addHwVsyncTimestamp(newPeriod, std::nullopt, &periodFlushed)); in TEST_F()
207 EXPECT_TRUE(periodFlushed); in TEST_F()
217 bool periodFlushed = true; in TEST_F() local
218 EXPECT_TRUE(mReactor.addHwVsyncTimestamp(10000, std::nullopt, &periodFlushed)); in TEST_F()
219 EXPECT_FALSE(periodFlushed); in TEST_F()
221 EXPECT_TRUE(mReactor.addHwVsyncTimestamp(20000, std::nullopt, &periodFlushed)); in TEST_F()
222 EXPECT_FALSE(periodFlushed); in TEST_F()
[all …]
/frameworks/native/services/surfaceflinger/Scheduler/
DVSyncReactor.cpp178 bool* periodFlushed) { in addHwVsyncTimestamp() argument
179 assert(periodFlushed); in addHwVsyncTimestamp()
186 *periodFlushed = true; in addHwVsyncTimestamp()
200 *periodFlushed = false; in addHwVsyncTimestamp()
203 *periodFlushed = false; in addHwVsyncTimestamp()
DVsyncController.h59 bool* periodFlushed) = 0;
DVSyncReactor.h50 bool* periodFlushed) final;
DScheduler.cpp472 bool* periodFlushed) { in addResyncSample() argument
474 *periodFlushed = false; in addResyncSample()
480 periodFlushed); in addResyncSample()
DScheduler.h171 bool* periodFlushed);
/frameworks/native/services/surfaceflinger/fuzzer/
Dsurfaceflinger_scheduler_fuzzer.cpp259 bool periodFlushed = mFdp.ConsumeBool(); in fuzzVSyncReactor() local
260 reactor.addHwVsyncTimestamp(0, std::nullopt, &periodFlushed); in fuzzVSyncReactor()
262 &periodFlushed); in fuzzVSyncReactor()
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.cpp1887 bool periodFlushed = false; in onComposerHalVsync() local
1888 mScheduler->addResyncSample(timestamp, vsyncPeriod, &periodFlushed); in onComposerHalVsync()
1889 if (periodFlushed) { in onComposerHalVsync()