Searched defs:args (Results 276 - 300 of 364) sorted by relevance

<<1112131415

/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBrowseFragment.java227 * @param args The Bundle to place arguments into, or null if the method
235 public static Bundle createArgs(Bundle args, String title, int headersState) { argument
236 if (args == null) {
237 args = new Bundle();
239 args.putString(ARG_TITLE, title);
240 args.putInt(ARG_HEADERS_STATE, headersState);
241 return args;
972 private void readArguments(Bundle args) { argument
973 if (args == null) {
976 if (args
[all...]
H A DBrowseSupportFragment.java229 * @param args The Bundle to place arguments into, or null if the method
237 public static Bundle createArgs(Bundle args, String title, int headersState) { argument
238 if (args == null) {
239 args = new Bundle();
241 args.putString(ARG_TITLE, title);
242 args.putInt(ARG_HEADERS_STATE, headersState);
243 return args;
974 private void readArguments(Bundle args) { argument
975 if (args == null) {
978 if (args
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java258 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaControllerCompat.java654 * @param args Optional arguments to supply to the
658 Bundle args);
661 * Send the id and args from a custom action for the
665 * Bundle args)
669 * @param args Optional arguments to supply to the
672 public abstract void sendCustomAction(String action, Bundle args); argument
1103 public void sendCustomAction(CustomAction customAction, Bundle args) { argument
1104 sendCustomAction(customAction.getAction(), args);
1108 public void sendCustomAction(String action, Bundle args) { argument
1110 mBinder.sendCustomAction(action, args);
657 sendCustomAction(PlaybackStateCompat.CustomAction customAction, Bundle args) argument
1312 sendCustomAction(CustomAction customAction, Bundle args) argument
1318 sendCustomAction(String action, Bundle args) argument
[all...]
/frameworks/multidex/gradle/wrapper/
H A Dgradle-wrapper.jar ... io.File) throws java.lang.Exception String[] args java.io.File gradleHome java.io. ...
/frameworks/support/gradle/wrapper/
H A Dgradle-wrapper.jar ... io.File) throws java.lang.Exception String[] args java.io.File gradleHome java.io. ...
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp388 status_t MediaPlayerService::AudioCache::dump(int fd, const Vector<String16>& /*args*/) const
410 status_t MediaPlayerService::AudioOutput::dump(int fd, const Vector<String16>& args) const
429 mTrack->dump(fd, args);
434 status_t MediaPlayerService::Client::dump(int fd, const Vector<String16>& args) const
445 mPlayer->dump(fd, args);
448 mAudioOutput->dump(fd, args);
454 status_t MediaPlayerService::dump(int fd, const Vector<String16>& args) argument
469 if (c != 0) c->dump(fd, args);
481 c->dump(fd, args);
555 for (size_t i = 0; i < args
[all...]
/frameworks/av/services/audioflinger/
H A DEffects.cpp936 void AudioFlinger::EffectModule::dump(int fd, const Vector<String16>& args __unused)
1715 void AudioFlinger::EffectChain::dump(int fd, const Vector<String16>& args) argument
1743 effect->dump(fd, args);
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp1609 status_t CameraService::dump(int fd, const Vector<String16>& args) { argument
1695 client->dump(fd, args);
1706 camera3::CameraTraces::dump(fd, args);
1709 int n = args.size();
1712 if (args[i] == verboseOption) {
1713 String8 levelStr(args[i+1]);
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.cpp157 status_t Camera2Device::dump(int fd, const Vector<String16>& args) { argument
161 int n = args.size();
164 if (args[i] == detailOption) {
165 String8 levelStr(args[i+1]);
176 mRequestQueue.dump(fd, args);
180 mFrameQueue.dump(fd, args);
186 (*s)->dump(fd, args);
849 const Vector<String16>& /*args*/) {
1258 const Vector<String16>& /*args*/) {
1497 const Vector<String16>& /*args*/) {
[all...]
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp378 status_t Camera3Device::dump(int fd, const Vector<String16> &args) { argument
380 (void)args;
412 mInputStream->dump(fd, args);
418 mOutputStreams[i]->dump(fd,args);
1650 va_list args; local
1651 va_start(args, fmt);
1653 setErrorStateLockedV(fmt, args);
1655 va_end(args);
1658 void Camera3Device::setErrorStateV(const char *fmt, va_list args) { argument
1660 setErrorStateLockedV(fmt, args);
1664 va_list args; local
1672 setErrorStateLockedV(const char *fmt, va_list args) argument
2949 va_list args; local
[all...]
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java269 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
H A DFragment.java592 * @param args Bundle of arguments to supply to the fragment, which it
599 public static Fragment instantiate(Context context, String fname, @Nullable Bundle args) { argument
612 if (args != null) {
613 args.setClassLoader(f.getClass().getClassLoader());
614 f.mArguments = args;
715 public void setArguments(Bundle args) { argument
719 mArguments = args;
1922 * @param args additional arguments to the dump request.
1924 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
1990 mLoaderManager.dump(prefix + " ", fd, writer, args);
[all...]
H A DIApplicationThread.java91 int flags, Intent args) throws RemoteException;
110 void dumpService(FileDescriptor fd, IBinder servicetoken, String[] args) argument
112 void dumpProvider(FileDescriptor fd, IBinder servicetoken, String[] args) argument
128 void dumpActivity(FileDescriptor fd, IBinder servicetoken, String prefix, String[] args) argument
134 boolean dumpDalvik, String[] args) throws RemoteException;
135 void dumpGfxInfo(FileDescriptor fd, String[] args) throws RemoteException; argument
136 void dumpDbInfo(FileDescriptor fd, String[] args) throws RemoteException; argument
90 scheduleServiceArgs(IBinder token, boolean taskRemoved, int startId, int flags, Intent args) argument
133 dumpMemInfo(FileDescriptor fd, Debug.MemoryInfo mem, boolean checkin, boolean dumpInfo, boolean dumpDalvik, String[] args) argument
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java2374 @Override protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { argument
/frameworks/base/core/java/android/os/
H A DDebug.java1594 * @param args to pass to the service's dump method, may be null
1598 public static boolean dumpService(String name, FileDescriptor fd, String[] args) { argument
1606 service.dump(fd, args);
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java524 protected void dump(String prefix, FileDescriptor fd, PrintWriter out, String[] args) { argument
1278 protected void dump(FileDescriptor fd, PrintWriter out, String[] args) { argument
1283 engine.dump(" ", fd, out, args);
/frameworks/base/core/java/android/text/style/
H A DTtsSpan.java465 public TtsSpan(String type, PersistableBundle args) { argument
467 mArgs = args;
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java404 SomeArgs args = (SomeArgs)msg.obj;
406 doDump((FileDescriptor)args.arg1,
407 (PrintWriter)args.arg2, (String[])args.arg3);
409 ((PrintWriter)args.arg2).println("Exception: " + e);
411 synchronized (args.arg4) {
412 ((CountDownLatch)args.arg4).countDown();
414 args.recycle();
559 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) {
566 sargs.arg3 = args;
2134 doDump(FileDescriptor fd, PrintWriter fout, String[] args) argument
[all...]
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp279 const Vector<String8>& args)
304 const size_t numArgs = args.size();
309 jstring argStr = env->NewStringUTF(args[i].string());
945 * and calling the "static void main(String[] args)" method in the class
1097 JavaVMAttachArgs args; local
1104 args.version = JNI_VERSION_1_4;
1105 args.name = (char*) threadName;
1106 args.group = NULL;
1108 result = vm->AttachCurrentThread(pEnv, (void*) &args);
1135 * Note that this function calls free(args)
278 callMain(const String8& className, jclass clazz, const Vector<String8>& args) argument
1137 javaThreadShell(void* args) argument
1174 void** args = (void**) malloc(3 * sizeof(void*)); // javaThreadShell must free local
[all...]
H A Dandroid_util_Binder.cpp314 virtual status_t dump(int fd, const Vector<String16>& args) argument
/frameworks/base/media/java/android/media/session/
H A DMediaSession.java563 private void dispatchCustomAction(String action, Bundle args) { argument
564 postToCallback(CallbackMessageHandler.MSG_CUSTOM_ACTION, action, args);
583 private void postCommand(String command, Bundle args, ResultReceiver resultCb) { argument
584 Command cmd = new Command(command, args, resultCb);
704 * @param args Optional parameters for the command, may be null.
707 public void onCommand(@NonNull String command, @Nullable Bundle args, argument
900 public void onCommand(String command, Bundle args, ResultReceiver cb) { argument
903 session.postCommand(command, args, cb);
1019 public void onCustomAction(String action, Bundle args) { argument
1022 session.dispatchCustomAction(action, args);
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumePanel.java476 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
514 mZenPanel.dump(fd, pw, args);
1528 public void dispatchDemoCommand(String command, Bundle args) { argument
1530 String icon = args.getString("icon");
1531 final String iconMute = args.getString("iconmute");
H A DZenModePanel.java142 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
152 mTransitionHelper.dump(fd, pw, args);
941 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/core/java/com/android/server/
H A DLocationManagerService.java2527 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
2595 mLocationFudger.dump(fd, pw, args);
2597 if (args.length > 0 && "short".equals(args[0])) {
2607 provider.dump(fd, pw, args);

Completed in 2708 milliseconds

<<1112131415