Lines Matching defs:provider
31 import android.provider.Telephony;
68 /** The database for this content provider. */
72 * Initialize content provider.
73 * @return true if the provider was successfully loaded, false otherwise
277 * Perform an operation using the specified provider.
278 * @param provider the CellBroadcastContentProvider to use
281 boolean execute(CellBroadcastContentProvider provider);
285 * Async task to call this content provider's internal methods on a background thread.
286 * The caller supplies the CellBroadcastOperation object to call for this provider.
298 * @param params the CellBroadcastOperation object to call for this provider
305 CellBroadcastContentProvider provider = (CellBroadcastContentProvider)
308 if (provider != null) {
310 boolean changed = params[0].execute(provider);