Searched defs:autoRefresh (Results 1 - 7 of 7) sorted by relevance

/frameworks/support/design/tests/src/android/support/design/testutils/
H A DTabLayoutActions.java69 final boolean autoRefresh) {
86 tabLayout.setupWithViewPager(viewPager, autoRefresh);
68 setupWithViewPager(final @Nullable ViewPager viewPager, final boolean autoRefresh) argument
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlingerConsumer.cpp35 const DispSync& dispSync, bool* autoRefresh, bool* queuedBuffer,
81 if (autoRefresh) {
82 *autoRefresh = item.mAutoRefresh;
34 updateTexImage(BufferRejecter* rejecter, const DispSync& dispSync, bool* autoRefresh, bool* queuedBuffer, uint64_t maxFrameNumber) argument
H A DMonitoredProducer.cpp138 status_t MonitoredProducer::setAutoRefresh(bool autoRefresh) { argument
139 return mProducer->setAutoRefresh(autoRefresh);
/frameworks/native/libs/gui/
H A DBufferQueueProducer.cpp1360 status_t BufferQueueProducer::setAutoRefresh(bool autoRefresh) { argument
1362 BQ_LOGV("setAutoRefresh: %d", autoRefresh);
1366 mCore->mAutoRefresh = autoRefresh;
H A DIGraphicBufferProducer.cpp361 virtual status_t setAutoRefresh(bool autoRefresh) { argument
365 data.writeInt32(autoRefresh);
640 bool autoRefresh = data.readInt32(); local
641 status_t result = setAutoRefresh(autoRefresh);
H A DSurface.cpp736 bool autoRefresh = va_arg(args, int); local
737 return setAutoRefresh(autoRefresh);
957 int Surface::setAutoRefresh(bool autoRefresh) { argument
959 ALOGV("Surface::setAutoRefresh (%d)", autoRefresh);
962 status_t err = mGraphicBufferProducer->setAutoRefresh(autoRefresh);
964 mAutoRefresh = autoRefresh;
967 autoRefresh, strerror(-err));
/frameworks/support/design/src/android/support/design/widget/
H A DTabLayout.java758 * <p>If {@code autoRefresh} is {@code true}, any changes in the {@link PagerAdapter} will
765 * @param autoRefresh whether this layout should refresh its contents if the given ViewPager's
768 public void setupWithViewPager(@Nullable final ViewPager viewPager, boolean autoRefresh) { argument
769 setupWithViewPager(viewPager, autoRefresh, false);
772 private void setupWithViewPager(@Nullable final ViewPager viewPager, boolean autoRefresh, argument
807 // autoRefresh is enabled
808 setPagerAdapter(adapter, autoRefresh);
815 mAdapterChangeListener.setAutoRefresh(autoRefresh);
2205 void setAutoRefresh(boolean autoRefresh) { argument
2206 mAutoRefresh = autoRefresh;
[all...]

Completed in 997 milliseconds