Searched refs:args (Results 201 - 225 of 359) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/animation/
H A DPropertyValuesHolder.java382 Class args[] = null;
385 returnVal = targetClass.getMethod(methodName, args);
390 args = new Class[1];
403 args[0] = typeVariant;
405 returnVal = targetClass.getMethod(methodName, args);
/frameworks/base/core/java/android/os/
H A DBatteryStats.java1178 * @param args type-dependent data arguments
1181 Object... args ) {
1187 for (Object arg : args) {
1266 Object[] args = new Object[NUM_SCREEN_BRIGHTNESS_BINS];
1268 args[i] = getScreenBrightnessTime(i, batteryRealtime, which) / 1000;
1270 dumpLine(pw, 0 /* uid */, category, SCREEN_BRIGHTNESS_DATA, args);
1273 args = new Object[SignalStrength.NUM_SIGNAL_STRENGTH_BINS];
1275 args[i] = getPhoneSignalStrengthTime(i, batteryRealtime, which) / 1000;
1277 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_TIME_DATA, args);
1281 args[
2239 dumpCheckinLocked(PrintWriter pw, String[] args, List<ApplicationInfo> apps) argument
[all...]
/frameworks/av/services/camera/libcameraservice/
H A DCamera2Device.cpp164 status_t Camera2Device::dump(int fd, const Vector<String16>& args) { argument
168 int n = args.size();
171 if (args[i] == detailOption) {
172 String8 levelStr(args[i+1]);
183 mRequestQueue.dump(fd, args);
187 mFrameQueue.dump(fd, args);
193 (*s)->dump(fd, args);
788 const Vector<String16>& args) {
1187 const Vector<String16>& args) {
1426 const Vector<String16>& args) {
787 dump(int fd, const Vector<String16>& args) argument
1186 dump(int fd, const Vector<String16>& args) argument
1425 dump(int fd, const Vector<String16>& args) argument
[all...]
H A DCameraClient.h64 status_t dump(int fd, const Vector<String16>& args);
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java462 public InstallArgs args; field in class:PackageManagerService.PostInstallData
466 args = _a;
705 InstallArgs args = data.args;
763 if (res.removedInfo.args != null) {
777 res.removedInfo.args.doPostDeleteLI(true);
780 if (args.observer != null) {
782 args.observer.packageInstalled(res.name, res.returnCode);
802 Set<AsecInstallArgs> args = (Set<AsecInstallArgs>) msg.obj;
805 unloadAllContainers(args);
5981 processPendingInstall(final InstallArgs args, final int currentStatus) argument
7827 installPackageLI(InstallArgs args, boolean newInstall, PackageInstalledInfo res) argument
8137 InstallArgs args = null; field in class:PackageManagerService.PackageRemovedInfo
9209 dump(FileDescriptor fd, PrintWriter pw, String[] args) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java1491 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
1500 mActivityManagerService.dumpApplicationMemoryUsage(fd, pw, " ", args,
1512 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
1521 mActivityManagerService.dumpGraphicsHardwareUsage(fd, pw, args);
1532 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
1541 mActivityManagerService.dumpDbInfo(fd, pw, args);
1552 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
1802 * Initialize the application bind args. These are passed to each
1810 // Setup the application init args
8882 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
9110 dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, String[] args, int opti, boolean dumpAll, boolean dumpClient, String dumpPackage) argument
9187 dumpProcessesLocked(FileDescriptor fd, PrintWriter pw, String[] args, int opti, boolean dumpAll, String dumpPackage) argument
9472 dumpProcessesToGc(FileDescriptor fd, PrintWriter pw, String[] args, int opti, boolean needSep, boolean dumpAll, String dumpPackage) argument
9501 dumpOomLocked(FileDescriptor fd, PrintWriter pw, String[] args, int opti, boolean dumpAll) argument
9551 dumpProvider(FileDescriptor fd, PrintWriter pw, String name, String[] args, int opti, boolean dumpAll) argument
9595 build(String[] args, int opti) argument
9643 dumpActivity(FileDescriptor fd, PrintWriter pw, String name, String[] args, int opti, boolean dumpAll) argument
9707 dumpActivity(String prefix, FileDescriptor fd, PrintWriter pw, final ActivityRecord r, String[] args, boolean dumpAll) argument
9741 dumpBroadcastsLocked(FileDescriptor fd, PrintWriter pw, String[] args, int opti, boolean dumpAll, String dumpPackage) argument
9836 dumpProvidersLocked(FileDescriptor fd, PrintWriter pw, String[] args, int opti, boolean dumpAll, String dumpPackage) argument
9888 dumpPendingIntentsLocked(FileDescriptor fd, PrintWriter pw, String[] args, int opti, boolean dumpAll, String dumpPackage) argument
10191 collectProcesses(PrintWriter pw, int start, String[] args) argument
10222 dumpGraphicsHardwareUsage(FileDescriptor fd, PrintWriter pw, String[] args) argument
10258 dumpDbInfo(FileDescriptor fd, PrintWriter pw, String[] args) argument
10371 dumpApplicationMemoryUsage(FileDescriptor fd, PrintWriter pw, String prefix, String[] args, boolean brief, PrintWriter categoryPw, StringBuilder outTag, StringBuilder outStack) argument
10620 scanArgs(String[] args, String value) argument
[all...]
/frameworks/base/services/input/
H A DInputDispatcher.h375 virtual void notifyConfigurationChanged(const NotifyConfigurationChangedArgs* args);
376 virtual void notifyKey(const NotifyKeyArgs* args);
377 virtual void notifyMotion(const NotifyMotionArgs* args);
378 virtual void notifySwitch(const NotifySwitchArgs* args);
379 virtual void notifyDeviceReset(const NotifyDeviceResetArgs* args);
907 bool shouldSendKeyToInputFilterLocked(const NotifyKeyArgs* args);
908 bool shouldSendMotionToInputFilterLocked(const NotifyMotionArgs* args);
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java78 * @param args The command-line arguments
80 public static void main(String[] args) { argument
82 (new Am()).run(args);
92 private void run(String[] args) throws Exception { argument
93 if (args.length < 1) {
104 mArgs = args;
105 String op = args[0];
627 Bundle args = new Bundle();
642 args.putString(argKey, argValue);
675 if (!mAm.startInstrumentation(cn, profileFile, 0, args, watche
[all...]
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java76 public static void main(String[] args) { argument
77 new Pm().run(args);
80 public void run(String[] args) { argument
82 if (args.length < 1) {
94 mArgs = args;
95 String op = args[0];
184 if (args.length == 1) {
185 if (args[0].equalsIgnoreCase("-l")) {
188 } else if (args[0].equalsIgnoreCase("-lf")){
192 } else if (args
[all...]
/frameworks/base/services/java/com/android/server/accessibility/
H A DScreenMagnifier.java932 SomeArgs args = SomeArgs.obtain();
933 args.argi1 = rectangle.left;
934 args.argi2 = rectangle.top;
935 args.argi3 = rectangle.right;
936 args.argi4 = rectangle.bottom;
938 immediate ? 1 : 0, args).sendToTarget();
1212 SomeArgs args = (SomeArgs) message.obj;
1214 mTempRect.set(args.argi1, args.argi2, args
[all...]
/frameworks/av/include/camera/
H A DCameraParameters.h103 status_t dump(int fd, const Vector<String16>& args) const;
/frameworks/av/include/media/stagefright/
H A DMPEG4Writer.h43 virtual status_t dump(int fd, const Vector<String16>& args);
/frameworks/av/services/camera/libcameraservice/camera2/
H A DCaptureSequencer.h70 void dump(int fd, const Vector<String16>& args);
/frameworks/base/core/java/android/content/
H A DContentProviderNative.java254 Bundle args = data.readBundle();
256 Bundle responseBundle = call(method, stringArg, args);
561 public Bundle call(String method, String request, Bundle args) argument
570 data.writeBundle(args);
H A DLoader.java510 * @param args Additional arguments to the dump request.
512 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
H A DContentService.java67 protected synchronized void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
85 mRootNode.dumpLocked(fd, pw, args, "", " ", counts, pidCounts);
635 public void dumpLocked(FileDescriptor fd, PrintWriter pw, String[] args, argument
659 public void dumpLocked(FileDescriptor fd, PrintWriter pw, String[] args, argument
670 mObservers.get(i).dumpLocked(fd, pw, args, innerName, prefix,
684 mChildren.get(i).dumpLocked(fd, pw, args, innerName, prefix,
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DRingtonePlayer.java169 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/java/com/android/server/
H A DCountryDetectorService.java214 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { argument
/frameworks/native/services/sensorservice/
H A DSensorService.h68 virtual status_t dump(int fd, const Vector<String16>& args);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DApnContext.java243 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
H A DPhoneSubInfo.java192 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp298 status_t MediaPlayerService::AudioCache::dump(int fd, const Vector<String16>& args) const
320 status_t MediaPlayerService::AudioOutput::dump(int fd, const Vector<String16>& args) const
339 mTrack->dump(fd, args);
344 status_t MediaPlayerService::Client::dump(int fd, const Vector<String16>& args) const
355 mPlayer->dump(fd, args);
358 mAudioOutput->dump(fd, args);
364 status_t MediaPlayerService::dump(int fd, const Vector<String16>& args) argument
379 if (c != 0) c->dump(fd, args);
391 c->dump(fd, args);
465 for (size_t i = 0; i < args
[all...]
/frameworks/base/services/common_time/
H A Dcommon_time_server_api.cpp289 const Vector<String16>& args,
366 const Vector<String16>& args) {
288 dumpClockInterface(int fd, const Vector<String16>& args, size_t activeClients) argument
365 dumpConfigInterface(int fd, const Vector<String16>& args) argument
/frameworks/base/tools/aidl/
H A DAST.h168 void init(int n, va_list args);
193 void init(int n, va_list args);
H A Daidl_language_y.y219 method->args = $4.arg;
234 method->args = $5.arg;

Completed in 8934 milliseconds

1234567891011>>