Lines Matching defs:args

67          * @param args Any arguments supplied by the caller.
70 public Loader<D> onCreateLoader(int id, Bundle args);
139 * @param args Optional arguments to supply to the loader at construction.
145 public abstract <D> Loader<D> initLoader(int id, Bundle args,
159 * @param args Optional arguments to supply to the loader at construction.
163 public abstract <D> Loader<D> restartLoader(int id, Bundle args,
186 * @param args Additional arguments to the dump request.
188 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args);
242 public LoaderInfo(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callbacks) {
244 mArgs = args;
506 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
512 mLoader.dump(prefix + " ", fd, writer, args);
528 mPendingLoader.dump(prefix + " ", fd, writer, args);
543 private LoaderInfo createLoader(int id, Bundle args,
545 LoaderInfo info = new LoaderInfo(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
546 Loader<Object> loader = callback.onCreateLoader(id, args);
551 private LoaderInfo createAndInstallLoader(int id, Bundle args,
555 LoaderInfo info = createLoader(id, args, callback);
586 * <var>args</var> given here <em>will be ignored</em> because you will
591 * @param args Optional arguments that will be propagated to
598 public <D> Loader<D> initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) {
605 if (DEBUG) Log.v(TAG, "initLoader in " + this + ": args=" + args);
609 info = createAndInstallLoader(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
641 * @param args Optional arguments that will be propagated to
648 public <D> Loader<D> restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) {
654 if (DEBUG) Log.v(TAG, "restartLoader in " + this + ": args=" + args);
690 info.mPendingLoader = createLoader(id, args,
704 info = createAndInstallLoader(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
858 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
866 li.dump(innerPrefix, fd, writer, args);
876 li.dump(innerPrefix, fd, writer, args);