Lines Matching refs:args

75          * @param args Any arguments supplied by the caller.
78 public Loader<D> onCreateLoader(int id, Bundle args);
147 * @param args Optional arguments to supply to the loader at construction.
153 public abstract <D> Loader<D> initLoader(int id, Bundle args,
167 * @param args Optional arguments to supply to the loader at construction.
171 public abstract <D> Loader<D> restartLoader(int id, Bundle args,
194 * @param args Additional arguments to the dump request.
196 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args);
253 public LoaderInfo(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callbacks) {
255 mArgs = args;
520 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
526 mLoader.dump(prefix + " ", fd, writer, args);
542 mPendingLoader.dump(prefix + " ", fd, writer, args);
561 private LoaderInfo createLoader(int id, Bundle args,
563 LoaderInfo info = new LoaderInfo(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
564 Loader<Object> loader = callback.onCreateLoader(id, args);
569 private LoaderInfo createAndInstallLoader(int id, Bundle args,
573 LoaderInfo info = createLoader(id, args, callback);
604 * <var>args</var> given here <em>will be ignored</em> because you will
609 * @param args Optional arguments that will be propagated to
616 public <D> Loader<D> initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) {
623 if (DEBUG) Log.v(TAG, "initLoader in " + this + ": args=" + args);
627 info = createAndInstallLoader(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
659 * @param args Optional arguments that will be propagated to
666 public <D> Loader<D> restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) {
672 if (DEBUG) Log.v(TAG, "restartLoader in " + this + ": args=" + args);
709 info.mPendingLoader = createLoader(id, args,
723 info = createAndInstallLoader(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
878 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
886 li.dump(innerPrefix, fd, writer, args);
896 li.dump(innerPrefix, fd, writer, args);