Home | History | Annotate | Download | only in cellbroadcastreceiver

Lines Matching refs:provider

30 import android.provider.Telephony;
67 /** The database for this content provider. */
71 * Initialize content provider.
72 * @return true if the provider was successfully loaded, false otherwise
275 * Perform an operation using the specified provider.
276 * @param provider the CellBroadcastContentProvider to use
279 boolean execute(CellBroadcastContentProvider provider);
283 * Async task to call this content provider's internal methods on a background thread.
284 * The caller supplies the CellBroadcastOperation object to call for this provider.
296 * @param params the CellBroadcastOperation object to call for this provider
303 CellBroadcastContentProvider provider = (CellBroadcastContentProvider)
306 if (provider != null) {
308 boolean changed = params[0].execute(provider);