Searched defs:refresh (Results 1 - 25 of 29) sorted by relevance

12

/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DBaseSwipeRefreshLayoutActivity.java71 // Try a SUPER quick refresh to make sure we don't get extra refreshes
103 refresh();
114 * Click handler for the menu item to force a refresh.
122 refresh();
128 private void refresh() { method in class:BaseSwipeRefreshLayoutActivity
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DBaseSwipeRefreshLayoutActivity.java71 // Try a SUPER quick refresh to make sure we don't get extra refreshes
103 refresh();
114 * Click handler for the menu item to force a refresh.
122 refresh();
128 private void refresh() { method in class:BaseSwipeRefreshLayoutActivity
/frameworks/support/v7/recyclerview/src/android/support/v7/util/
H A DThreadUtil.java32 void refresh(int generation); method in interface:ThreadUtil.BackgroundCallback
H A DAsyncListUtil.java100 refresh();
117 return; // Will update range will the refresh result arrives.
129 public void refresh() { method in class:AsyncListUtil
131 mBackgroundProxy.refresh(++mRequestedGeneration);
180 // Invalid range may arrive soon after the refresh.
303 public void refresh(int generation) {
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
H A DThreadUtilTest.java84 public void refresh(int generation) {
86 setResultData("refresh", generation);
141 public void refresh() throws InterruptedException { method in class:ThreadUtilTest
142 initWait("refresh");
145 mBackgroundProxy.refresh(2);
146 Object[] data = waitFor("refresh");
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/inputmethod/
H A DInputMethodAndSubtypeEnablerManager.java71 public void refresh(Context context, PreferenceFragment fragment) { method in class:InputMethodAndSubtypeEnablerManager
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPseudoGridView.java159 refresh();
162 private void refresh() { method in class:PseudoGridView.ViewGroupAdapterBridge
198 refresh();
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContentProvider.java150 public boolean refresh(String callingPkg, Uri url, Bundle args, method in class:BridgeContentProvider
/frameworks/native/services/surfaceflinger/
H A DMessageQueue.cpp140 void MessageQueue::refresh() { function in class:android::MessageQueue
/frameworks/base/core/java/android/content/
H A DContentProviderNative.java356 boolean out = refresh(callingPkg, url, args, signal);
773 public boolean refresh(String callingPkg, Uri url, Bundle args, ICancellationSignal signal) method in class:ContentProviderProxy
H A DIContentProvider.java68 public boolean refresh(String callingPkg, Uri url, @Nullable Bundle args, method in interface:IContentProvider
H A DContentProviderClient.java240 /** See {@link ContentProvider#refresh} */
241 public boolean refresh(Uri url, @Nullable Bundle args, method in class:ContentProviderClient
253 return mContentProvider.refresh(mPackageName, url, args, remoteCancellationSignal);
H A DContentProvider.java470 public boolean refresh(String callingPkg, Uri uri, Bundle args, method in class:ContentProvider.Transport
479 return ContentProvider.this.refresh(uri, args,
1231 * Implement this to support refresh of content identified by {@code uri}. By default, this
1235 * This allows clients to request an explicit refresh of content identified by {@code uri}.
1238 * initiated pull to refresh gesture) that the content is stale.
1243 * @param uri The Uri identifying the data to refresh.
1247 * none. For example, if you called refresh on a particular uri, you should call
1249 * canceled the refresh request.
1252 public boolean refresh(Uri uri, @Nullable Bundle args, method in class:ContentProvider
H A DContentResolver.java197 * An extra boolean describing whether a particular provider supports refresh
198 * or not. If a provider supports refresh, it should include this key in its
889 * This allows clients to request an explicit refresh of content identified by {@code uri}.
892 * initiated pull to refresh gesture) that the content is stale.
895 * @param url The Uri identifying the data to refresh.
899 * none. For example, if you called refresh on a particular uri, you should call
901 * canceled the refresh request.
904 public final boolean refresh(@NonNull Uri url, @Nullable Bundle args, method in class:ContentResolver
919 return provider.refresh(mPackageName, url, args, remoteCancellationSignal);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
H A DAccessPointPreference.java102 refresh();
177 * do not need to be managed in refresh()</p>.
213 public void refresh() { method in class:AccessPointPreference
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardStatusView.java66 refresh();
72 if (DEBUG) Slog.v(TAG, "refresh statusview showing:" + showing);
73 refresh();
90 refresh();
130 refresh();
163 private void refresh() { method in class:KeyguardStatusView
245 // DateFormat.getBestDateTimePattern is extremely expensive, and refresh is called often.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcher.java123 mAdapter.refresh();
203 private void refresh() { method in class:KeyguardUserSwitcher
243 refresh();
250 refresh();
H A DUserSwitcherController.java551 // Unlocking the system user may require a refresh
753 public void refresh() { method in class:UserSwitcherController.BaseUserAdapter
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContentProvider.java153 public boolean refresh(String callingPkg, Uri url, Bundle args, method in class:MockContentProvider.InversionIContentProvider
155 return MockContentProvider.this.refresh(url, args);
265 public boolean refresh(Uri url, Bundle args) { method in class:MockContentProvider
H A DMockIContentProvider.java143 public boolean refresh(String callingPkg, Uri url, Bundle args, method in class:MockIContentProvider
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer_hwc1.h263 nsecs_t refresh; member in struct:android::HWComposer::DisplayConfig
270 refresh == rhs.refresh &&
H A DHWC2.cpp186 void Device::registerRefreshCallback(RefreshCallback refresh) argument
188 mRefresh = refresh;
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/
H A DVrView.java58 private int refresh = 0; // 0 is no refresh else refresh = downsample field in class:VrView
191 refresh = 1;
325 refresh = 0;
328 refresh = downSample;
452 if (refresh != 0) {
453 render(refresh);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGatt.java1340 * Clears the internal cache and forces a refresh of the services from the
1344 public boolean refresh() { method in class:BluetoothGatt
1345 if (DBG) Log.d(TAG, "refresh() - device: " + mDevice.getAddress());
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DCachedBluetoothDevice.java265 refresh();
413 void refresh() { method in class:CachedBluetoothDevice
555 refresh();
636 // will completely refresh the device list when this happens.

Completed in 830 milliseconds

12