Lines Matching defs:args

48          * @param args Any arguments supplied by the caller.
51 public Loader<D> onCreateLoader(int id, Bundle args);
120 * @param args Optional arguments to supply to the loader at construction.
126 public abstract <D> Loader<D> initLoader(int id, Bundle args,
140 * @param args Optional arguments to supply to the loader at construction.
144 public abstract <D> Loader<D> restartLoader(int id, Bundle args,
167 * @param args Additional arguments to the dump request.
169 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args);
228 public LoaderInfo(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callbacks) {
230 mArgs = args;
450 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
456 mLoader.dump(prefix + " ", fd, writer, args);
472 mPendingLoader.dump(prefix + " ", fd, writer, args);
487 private LoaderInfo createLoader(int id, Bundle args,
489 LoaderInfo info = new LoaderInfo(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
490 Loader<Object> loader = callback.onCreateLoader(id, args);
495 private LoaderInfo createAndInstallLoader(int id, Bundle args,
499 LoaderInfo info = createLoader(id, args, callback);
530 * <var>args</var> given here <em>will be ignored</em> because you will
535 * @param args Optional arguments that will be propagated to
542 public <D> Loader<D> initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) {
549 if (DEBUG) Log.v(TAG, "initLoader in " + this + ": args=" + args);
553 info = createAndInstallLoader(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
585 * @param args Optional arguments that will be propagated to
592 public <D> Loader<D> restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) {
598 if (DEBUG) Log.v(TAG, "restartLoader in " + this + ": args=" + args);
632 info.mPendingLoader = createLoader(id, args,
646 info = createAndInstallLoader(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
800 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
808 li.dump(innerPrefix, fd, writer, args);
818 li.dump(innerPrefix, fd, writer, args);