Searched defs:args (Results 226 - 250 of 364) sorted by relevance

1234567891011>>

/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmServiceStateTracker.java2040 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
2042 super.dump(fd, pw, args);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DRuimRecords.java1026 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
1029 super.dump(fd, pw, args);
H A DUiccCard.java636 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
669 app.dump(fd, pw, args);
678 ir.dump(fd, pw, args);
688 mCarrierPrivilegeRules.dump(fd, pw, args);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DSearchFragment.java220 * @param args Bundle to use for the arguments, if null a new Bundle will be created.
222 public static Bundle createArgs(Bundle args, String query) { argument
223 return createArgs(args, query, null);
226 public static Bundle createArgs(Bundle args, String query, String title) { argument
227 if (args == null) {
228 args = new Bundle();
230 args.putString(ARG_QUERY, query);
231 args.putString(ARG_TITLE, title);
232 return args;
246 Bundle args
677 readArguments(Bundle args) argument
[all...]
H A DSearchSupportFragment.java222 * @param args Bundle to use for the arguments, if null a new Bundle will be created.
224 public static Bundle createArgs(Bundle args, String query) { argument
225 return createArgs(args, query, null);
228 public static Bundle createArgs(Bundle args, String query, String title) { argument
229 if (args == null) {
230 args = new Bundle();
232 args.putString(ARG_QUERY, query);
233 args.putString(ARG_TITLE, title);
234 return args;
248 Bundle args
679 readArguments(Bundle args) argument
[all...]
/frameworks/support/v4/api21/android/support/v4/media/session/
H A DMediaControllerCompatApi21.java170 public static void sendCustomAction(Object controlsObj, String action, Bundle args) { argument
171 ((MediaController.TransportControls) controlsObj).sendCustomAction(action, args);
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentActivity.java643 * @param args additional arguments to the dump request.
645 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
648 //ActivityCompatHoneycomb.dump(this, prefix, fd, writer, args);
665 mLoaderManager.dump(prefix + " ", fd, writer, args);
667 mFragments.dump(prefix, fd, writer, args);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActivityChooserModel.java1041 public Void doInBackground(Object... args) { argument
1042 List<HistoricalRecord> historicalRecords = (List<HistoricalRecord>) args[0];
1043 String hostoryFileName = (String) args[1];
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/gradle/wrapper/
H A Dgradle-wrapper.jar ... io.File) throws java.lang.Exception String[] args java.io.File gradleHome java.io. ...
/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.cpp164 status_t Camera2Client::dump(int fd, const Vector<String16>& args) { argument
373 mStreamingProcessor->dump(fd, args);
375 mCaptureSequencer->dump(fd, args);
377 mFrameProcessor->dump(fd, args);
379 mZslProcessor->dump(fd, args);
381 return dumpDevice(fd, args);
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java94 * @param args The command-line arguments
96 public static void main(String[] args) { argument
97 (new Am()).run(args);
906 Bundle args = new Bundle();
922 args.putString(argKey, argValue);
976 if (!mAm.startInstrumentation(cn, profileFile, 0, args, watcher, connection, userId, abi)) {
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java249 Intent args;
251 args = Intent.CREATOR.createFromParcel(data);
253 args = null;
255 scheduleServiceArgs(token, taskRemoved, startId, fl, args);
353 final String[] args = data.readStringArray();
355 dumpService(fd.getFileDescriptor(), service, args);
368 final String[] args = data.readStringArray();
370 dumpProvider(fd.getFileDescriptor(), service, args);
482 final String[] args = data.readStringArray();
484 dumpActivity(fd.getFileDescriptor(), activity, prefix, args);
926 scheduleServiceArgs(IBinder token, boolean taskRemoved, int startId, int flags, Intent args) argument
1057 dumpService(FileDescriptor fd, IBinder token, String[] args) argument
1068 dumpProvider(FileDescriptor fd, IBinder token, String[] args) argument
1178 dumpActivity(FileDescriptor fd, IBinder token, String prefix, String[] args) argument
1216 dumpMemInfo(FileDescriptor fd, Debug.MemoryInfo mem, boolean checkin, boolean dumpInfo, boolean dumpDalvik, String[] args) argument
1233 dumpGfxInfo(FileDescriptor fd, String[] args) argument
1242 dumpDbInfo(FileDescriptor fd, String[] args) argument
[all...]
H A DFragmentManager.java337 * @param args Additional arguments to the dump request.
339 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args); argument
626 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
641 f.dump(innerPrefix, fd, writer, args);
679 bs.dump(innerPrefix, fd, writer, args);
/frameworks/base/core/java/android/content/
H A DContentProvider.java1587 * @param args Your own custom arguments.
1590 Bundle opts, T args);
1603 * @param args Your own custom arguments.
1611 final Bundle opts, final T args, final PipeDataWriter<T> func)
1619 func.writeDataToPipe(fds[1], uri, mimeType, opts, args);
1783 * @param args additional arguments to the dump request.
1785 public void dump(FileDescriptor fd, PrintWriter writer, String[] args) { argument
1589 writeDataToPipe(ParcelFileDescriptor output, Uri uri, String mimeType, Bundle opts, T args) argument
1610 openPipeHelper(final Uri uri, final String mimeType, final Bundle opts, final T args, final PipeDataWriter<T> func) argument
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java1553 // move all bind args to one array
2193 public void callback(String[] args); argument
/frameworks/base/core/java/android/os/
H A DProcess.java537 ZygoteState zygoteState, ArrayList<String> args)
553 writer.write(Integer.toString(args.size()));
556 int sz = args.size();
558 String arg = args.get(i);
536 zygoteSendArgsAndGetResult( ZygoteState zygoteState, ArrayList<String> args) argument
/frameworks/base/core/java/android/preference/
H A DPreferenceActivity.java1082 * @param args Optional arguments to supply to the fragment.
1088 public Intent onBuildStartFragmentIntent(String fragmentName, Bundle args, argument
1093 intent.putExtra(EXTRA_SHOW_FRAGMENT_ARGUMENTS, args);
1104 public void startWithFragment(String fragmentName, Bundle args, argument
1106 startWithFragment(fragmentName, args, resultTo, resultRequestCode, 0, 0);
1116 * @param args Optional arguments to supply to the fragment.
1126 public void startWithFragment(String fragmentName, Bundle args, argument
1128 Intent intent = onBuildStartFragmentIntent(fragmentName, args, titleRes, shortTitleRes);
1211 private void switchToHeaderInner(String fragmentName, Bundle args) { argument
1218 Fragment f = Fragment.instantiate(this, fragmentName, args);
1232 switchToHeader(String fragmentName, Bundle args) argument
1348 startPreferencePanel(String fragmentClass, Bundle args, int titleRes, CharSequence titleText, Fragment resultTo, int resultRequestCode) argument
[all...]
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java1037 protected void dump(final FileDescriptor fd, PrintWriter pw, final String[] args) { argument
1041 dumpOnHandler(fd, pw, args);
1047 protected void dumpOnHandler(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java137 SomeArgs args = mHandlerCaller.sendMessageAndWait(msg);
138 if (args != null) {
139 boolean[] res = (boolean[])args.arg1;
140 args.recycle();
287 SomeArgs args;
290 args = (SomeArgs)msg.obj;
291 if (DEBUG) Log.d(TAG, "onConfirm: req=" + ((Request) args.arg2).mInterface
292 + " prompt=" + args.arg3 + " extras=" + args.arg4);
293 onConfirm((Caller)args
447 doCreate(IVoiceInteractionManagerService service, IBinder token, Bundle args) argument
613 onCreate(Bundle args) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewDebug.java1600 final Object[] args) {
1609 result.set(method.invoke(view, args));
1599 invokeViewMethod(final View view, final Method method, final Object[] args) argument
/frameworks/base/core/java/com/android/internal/util/
H A DStateMachine.java1941 * @param args
1943 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/core/java/com/android/internal/widget/
H A DResolverDrawerLayout.java583 public boolean onNestedPrePerformAccessibilityAction(View target, int action, Bundle args) { argument
584 if (super.onNestedPrePerformAccessibilityAction(target, action, args)) {
/frameworks/base/media/java/android/media/session/
H A DMediaController.java382 * @param args Any parameters to include with the command
385 public void sendCommand(@NonNull String command, @Nullable Bundle args, argument
391 mSessionBinder.sendCommand(command, args, cb);
760 * @param args Optional arguments to supply to the {@link MediaSession} for this
764 @Nullable Bundle args) {
768 sendCustomAction(customAction.getAction(), args);
772 * Send the id and args from a custom action back for the {@link MediaSession} to perform.
774 * @see #sendCustomAction(PlaybackState.CustomAction action, Bundle args)
777 * @param args Optional arguments to supply to the {@link MediaSession} for this
780 public void sendCustomAction(@NonNull String action, @Nullable Bundle args) { argument
763 sendCustomAction(@onNull PlaybackState.CustomAction customAction, @Nullable Bundle args) argument
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_ImageReader.cpp133 JavaVMAttachArgs args = {JNI_VERSION_1_4, NULL, NULL}; local
135 int result = vm->AttachCurrentThread(&env, (void*) &args);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPrintSpoolerService.java136 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
138 String prefix = (args.length > 0) ? args[0] : "";
1287 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) { argument
1288 PrintSpoolerService.this.dump(fd, writer, args);

Completed in 3581 milliseconds

1234567891011>>