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);
232 public LoaderInfo(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callbacks) {
234 mArgs = args;
499 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
505 mLoader.dump(prefix + " ", fd, writer, args);
521 mPendingLoader.dump(prefix + " ", fd, writer, args);
536 private LoaderInfo createLoader(int id, Bundle args,
538 LoaderInfo info = new LoaderInfo(id, args, callback);
539 Loader<Object> loader = callback.onCreateLoader(id, args);
544 private LoaderInfo createAndInstallLoader(int id, Bundle args,
548 LoaderInfo info = createLoader(id, args, callback);
579 * <var>args</var> given here <em>will be ignored</em> because you will
584 * @param args Optional arguments that will be propagated to
592 public <D> Loader<D> initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) {
599 if (DEBUG) Log.v(TAG, "initLoader in " + this + ": args=" + args);
603 info = createAndInstallLoader(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
635 * @param args Optional arguments that will be propagated to
643 public <D> Loader<D> restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) {
649 if (DEBUG) Log.v(TAG, "restartLoader in " + this + ": args=" + args);
686 info.mPendingLoader = createLoader(id, args,
700 info = createAndInstallLoader(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
857 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
865 li.dump(innerPrefix, fd, writer, args);
875 li.dump(innerPrefix, fd, writer, args);