Lines Matching full:callback
132 for (Runnable callback : mTZCallbacks) {
133 if (callback != null) {
134 callback.run();
260 * query to verify that the data in preferences is correct. The callback supplied
266 * @param callback The runnable that should execute if a query returns new values
269 public String getTimeZone(Context context, Runnable callback) {
290 mTZCallbacks.add(callback);
299 * query is already in progress the callback will be added to the list
303 * @param callback The runnable that should execute if a query returns
306 public void forceDBRequery(Context context, Runnable callback) {
309 mTZCallbacks.add(callback);
313 getTimeZone(context, callback);