Searched defs:args (Results 101 - 125 of 756) sorted by relevance

1234567891011>>

/frameworks/base/libs/androidfw/include/androidfw/
H A DUtil.h36 std::unique_ptr<T> make_unique(Args&&... args) { argument
37 return std::unique_ptr<T>(new T{std::forward<Args>(args)...});
/frameworks/base/packages/FusedLocation/src/com/android/location/fused/
H A DFusedLocationProvider.java121 public void onDump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
123 mEngine.dump(fd, pw, args);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/net/
H A DChartDataLoader.java52 final Bundle args = new Bundle();
53 args.putParcelable(KEY_TEMPLATE, template);
54 args.putParcelable(KEY_APP, app);
55 args.putInt(KEY_FIELDS, fields);
56 return args;
59 public ChartDataLoader(Context context, INetworkStatsSession session, Bundle args) { argument
62 mArgs = args;
H A DSummaryForAllUidLoader.java36 final Bundle args = new Bundle();
37 args.putParcelable(KEY_TEMPLATE, template);
38 args.putLong(KEY_START, start);
39 args.putLong(KEY_END, end);
40 return args;
43 public SummaryForAllUidLoader(Context context, INetworkStatsSession session, Bundle args) { argument
46 mArgs = args;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSystemUI.java37 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/colorextraction/
H A DSysuiColorExtractor.java192 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeService.java102 protected void dumpOnHandler(FileDescriptor fd, PrintWriter pw, String[] args) { argument
103 super.dumpOnHandler(fd, pw, args);
/frameworks/base/packages/SystemUI/src/com/android/systemui/fragments/
H A DFragmentService.java73 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
76 state.mFragmentHostManager.getFragmentManager().dump(" ", fd, pw, args);
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DScreenLifecycle.java63 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
H A DWakefulnessLifecycle.java76 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DRingtonePlayer.java229 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewAccessibilityDelegate.java78 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
86 return super.performAccessibilityAction(host, action, args);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DOperatorNameView.java106 public void dispatchDemoCommand(String command, Bundle args) { argument
113 setText(args.getString("name"));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DAccessibilityController.java52 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
H A DNextAlarmControllerImpl.java49 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
H A DLeakDetector.java104 public void dump(FileDescriptor df, PrintWriter w, String[] args) { argument
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
H A DFakeNetworkController.java88 public void dispatchDemoCommand(String command, Bundle args) { argument
/frameworks/base/services/core/java/com/android/server/
H A DDiskStatsService.java69 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
93 boolean protoFormat = hasOption(args, "--proto");
156 // add configurable (through args) performance test parameters.
199 private boolean hasOption(String[] args, String arg) { argument
200 for (String opt : args) {
H A DUpdateLockService.java116 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/core/java/com/android/server/accounts/
H A DIAccountAuthenticatorCache.java55 void dump(FileDescriptor fd, PrintWriter fout, String[] args, int userId); argument
/frameworks/base/services/core/java/com/android/server/location/
H A DLocationProviderInterface.java41 public void dump(FileDescriptor fd, PrintWriter pw, String[] args); argument
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageVerificationState.java54 * @param args
56 public PackageVerificationState(int requiredVerifierUid, InstallArgs args) { argument
58 mArgs = args;
/frameworks/base/services/core/java/com/android/server/utils/
H A DPriorityDump.java41 public void dumpCritical(FileDescriptor fd, PrintWriter pw, String[] args, boolean asProto) {
52 public void dumpNormal(FileDescriptor fd, PrintWriter pw, String[] args) {
64 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
65 PriorityDump.dump(mPriorityDumper, fd, pw, args);
126 * Parses {@code args} matching {@code --dump-priority} and/or {@code --proto}. The matching
129 * If priority args are passed as an argument, it will call the appropriate method and if proto
130 * args are passed then the {@code asProto} flag is set.
137 * {@code args} instead.
140 String[] args) {
144 if (args
139 dump(PriorityDumper dumper, FileDescriptor fd, PrintWriter pw, String[] args) argument
220 dumpCritical(FileDescriptor fd, PrintWriter pw, String[] args, boolean asProto) argument
228 dumpHigh(FileDescriptor fd, PrintWriter pw, String[] args, boolean asProto) argument
235 dumpNormal(FileDescriptor fd, PrintWriter pw, String[] args, boolean asProto) argument
247 dump(FileDescriptor fd, PrintWriter pw, String[] args, boolean asProto) argument
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DShortcutManagerTest7.java50 private List<String> callShellCommand(String... args) throws IOException, RemoteException { argument
72 args, null, rr);
356 private void checkDumpsysArgs(String[] args, boolean expectMain, boolean expectUid, argument
358 String dump = dumpsys(args);
/frameworks/base/tests/Assist/src/com/android/test/assist/
H A DAssistInteractionSession.java98 public void onShow(Bundle args, int showFlags) { argument
99 super.onShow(args, showFlags);

Completed in 3274 milliseconds

1234567891011>>