Searched refs:args (Results 51 - 75 of 357) sorted by relevance

1234567891011>>

/frameworks/base/tests/DumpRenderTree2/assets/
H A Drun_layout_tests.py88 options, args = option_parser.parse_args();
92 if len(args) > 1:
95 if len(args) < 1:
98 path = args[0]
/frameworks/native/cmds/dumpsys/
H A Ddumpsys.cpp41 Vector<String16> args; local
45 args.add(String16("-a"));
49 args.add(String16(argv[i]));
75 int err = service->dump(STDOUT_FILENO, args);
/frameworks/base/core/jni/
H A Dandroid_net_wifi_Wifi.cpp55 va_list args; local
56 va_start(args, fmt);
57 int byteCount = vsnprintf(buf, sizeof(buf), fmt, args);
58 va_end(args);
72 va_list args; local
73 va_start(args, fmt);
74 int byteCount = vsnprintf(buf, sizeof(buf), fmt, args);
75 va_end(args);
89 va_list args; local
90 va_start(args, fm
[all...]
/frameworks/base/test-runner/tests/src/android/test/
H A DInstrumentationTestRunnerTest.java131 Bundle args = new Bundle();
132 args.putInt(InstrumentationTestRunner.ARGUMENT_DELAY_MSEC, delayMsec);
133 args.putString(InstrumentationTestRunner.ARGUMENT_TEST_CLASS,
136 mInstrumentationTestRunner.onCreate(args);
155 Bundle args = new Bundle();
156 args.putString(InstrumentationTestRunner.ARGUMENT_TEST_CLASS, expectedTestClassName);
157 args.putString(InstrumentationTestRunner.ARGUMENT_ANNOTATION, FlakyTest.class.getName());
158 mInstrumentationTestRunner.onCreate(args);
168 Bundle args = new Bundle();
169 args
[all...]
/frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
H A DDumpCommand.java55 public void run(String[] args) { argument
57 if (args.length > 0) {
58 dumpFile = new File(args[0]);
/frameworks/native/opengl/tools/glgen/src/
H A DGenerateEGL.java70 public static void main(String[] args) throws Exception { argument
72 while ((aidx < args.length) && (args[aidx].charAt(0) == '-')) {
73 switch (args[aidx].charAt(1)) {
75 System.err.println("Unknown flag: " + args[aidx]);
H A DGenerateGLES.java70 public static void main(String[] args) throws Exception { argument
72 while ((aidx < args.length) && (args[aidx].charAt(0) == '-')) {
73 switch (args[aidx].charAt(1)) {
75 System.err.println("Unknown flag: " + args[aidx]);
H A DGenerateGL.java74 public static void main(String[] args) throws Exception { argument
79 while (args[aidx].charAt(0) == '-') {
80 switch (args[aidx].charAt(1)) {
86 System.err.println("Unknown flag: " + args[aidx]);
96 new BufferedReader(new FileReader(args[aidx++]));
98 new BufferedReader(new FileReader(args[aidx++]));
100 new BufferedReader(new FileReader(args[aidx++]));
102 new BufferedReader(new FileReader(args[aidx++]));
104 new BufferedReader(new FileReader(args[aidx++]));
106 new BufferedReader(new FileReader(args[aid
[all...]
/frameworks/support/v4/jellybean/android/support/v4/view/
H A DAccessibilityDelegateCompatJellyBean.java42 public boolean performAccessibilityAction(View host, int action, Bundle args); argument
91 public boolean performAccessibilityAction(View host, int action, Bundle args) {
92 return bridge.performAccessibilityAction(host, action, args);
103 Bundle args) {
104 return ((AccessibilityDelegate) delegate).performAccessibilityAction(host, action, args);
102 performAccessibilityAction(Object delegate, View host, int action, Bundle args) argument
/frameworks/base/core/java/android/os/
H A DBinder.java233 String[] args = data.readStringArray();
236 dump(fd.getFileDescriptor(), args);
260 public void dump(FileDescriptor fd, String[] args) { argument
264 dump(fd, pw, args);
274 public void dumpAsync(final FileDescriptor fd, final String[] args) { argument
280 dump(fd, pw, args);
295 * @param args additional arguments to the dump request.
297 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { argument
387 public void dump(FileDescriptor fd, String[] args) throws RemoteException { argument
391 data.writeStringArray(args);
401 dumpAsync(FileDescriptor fd, String[] args) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DTransferPipe.java53 String[] args) throws RemoteException;
74 String prefix, String[] args) throws IOException, RemoteException {
75 go(caller, iface, out, prefix, args, DEFAULT_TIMEOUT);
79 String prefix, String[] args, long timeout) throws IOException, RemoteException {
83 caller.go(iface, out, prefix, args);
91 caller.go(iface, tp.getWriteFd().getFileDescriptor(), prefix, args);
99 String[] args) throws IOException, RemoteException {
100 goDump(binder, out, args, DEFAULT_TIMEOUT);
104 String[] args, long timeout) throws IOException, RemoteException {
108 binder.dump(out, args);
52 go(IInterface iface, FileDescriptor fd, String prefix, String[] args) argument
73 go(Caller caller, IInterface iface, FileDescriptor out, String prefix, String[] args) argument
78 go(Caller caller, IInterface iface, FileDescriptor out, String prefix, String[] args, long timeout) argument
98 goDump(IBinder binder, FileDescriptor out, String[] args) argument
103 goDump(IBinder binder, FileDescriptor out, String[] args, long timeout) argument
[all...]
/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py59 c = kwargs.get("args")
131 def _prepare_adb_args(self, args):
132 largs = list(args)
143 def _background_adb(self, *args):
144 largs = self._prepare_adb_args(args)
158 def _call_adb(self, *args):
160 largs = self._prepare_adb_args(args)
172 def _shell(self, *args):
173 args = ["shell"] + list(args)
[all...]
/frameworks/base/core/java/android/app/
H A DLoaderManager.java67 * @param args Any arguments supplied by the caller.
70 public Loader<D> onCreateLoader(int id, Bundle args); argument
139 * @param args Optional arguments to supply to the loader at construction.
145 public abstract <D> Loader<D> initLoader(int id, Bundle args, argument
159 * @param args Optional arguments to supply to the loader at construction.
163 public abstract <D> Loader<D> restartLoader(int id, Bundle args, argument
186 * @param args Additional arguments to the dump request.
188 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args); argument
242 public LoaderInfo(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callbacks) { argument
244 mArgs = args;
506 dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) argument
543 createLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callback) argument
551 createAndInstallLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callback) argument
598 initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) argument
648 restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) argument
857 dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DLoaderManager.java48 * @param args Any arguments supplied by the caller.
51 public Loader<D> onCreateLoader(int id, Bundle args); argument
120 * @param args Optional arguments to supply to the loader at construction.
126 public abstract <D> Loader<D> initLoader(int id, Bundle args, argument
140 * @param args Optional arguments to supply to the loader at construction.
144 public abstract <D> Loader<D> restartLoader(int id, Bundle args, argument
167 * @param args Additional arguments to the dump request.
169 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args); argument
228 public LoaderInfo(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callbacks) { argument
230 mArgs = args;
450 dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) argument
487 createLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callback) argument
495 createAndInstallLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callback) argument
542 initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) argument
592 restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) argument
799 dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) argument
[all...]
/frameworks/base/core/java/android/accounts/
H A DIAccountAuthenticatorCache.java54 void dump(FileDescriptor fd, PrintWriter fout, String[] args, int userId); argument
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp274 virtual void notifyConfigurationChanged(const NotifyConfigurationChangedArgs* args) { argument
275 mNotifyConfigurationChangedArgsQueue.push_back(*args);
278 virtual void notifyDeviceReset(const NotifyDeviceResetArgs* args) { argument
279 mNotifyDeviceResetArgsQueue.push_back(*args);
282 virtual void notifyKey(const NotifyKeyArgs* args) { argument
283 mNotifyKeyArgsQueue.push_back(*args);
286 virtual void notifyMotion(const NotifyMotionArgs* args) { argument
287 mNotifyMotionArgsQueue.push_back(*args);
290 virtual void notifySwitch(const NotifySwitchArgs* args) { argument
291 mNotifySwitchArgsQueue.push_back(*args);
1148 NotifyConfigurationChangedArgs args; local
1500 NotifySwitchArgs args; local
1520 NotifyKeyArgs args; local
1557 NotifyKeyArgs args; local
1668 NotifyKeyArgs args; local
1781 NotifyKeyArgs args; local
1942 NotifyMotionArgs args; local
2028 NotifyMotionArgs args; local
2081 NotifyMotionArgs args; local
2105 NotifyMotionArgs args; local
2129 NotifyMotionArgs args; local
2415 NotifyMotionArgs args; local
2761 NotifyKeyArgs args; local
3096 NotifyMotionArgs args; local
3119 NotifyMotionArgs args; local
3212 NotifyMotionArgs args; local
4470 NotifyMotionArgs args; local
4510 NotifyMotionArgs args; local
4555 NotifyMotionArgs args; local
4597 NotifyMotionArgs args; local
4626 NotifyMotionArgs args; local
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDebug.java160 * @param args Command-line arguments supplied to dumpsys dbinfo
162 public static void dump(Printer printer, String[] args) { argument
164 for (String arg : args) {
/frameworks/base/core/java/com/android/internal/os/
H A DLoggingPrintStream.java168 public PrintStream format(String format, Object... args) { argument
169 return format(Locale.getDefault(), format, args);
173 public PrintStream printf(String format, Object... args) { argument
174 return format(format, args);
178 public PrintStream printf(Locale l, String format, Object... args) { argument
179 return format(l, format, args);
186 Locale l, String format, Object... args) {
191 formatter.format(l, format, args);
185 format( Locale l, String format, Object... args) argument
/frameworks/base/services/java/com/android/server/pm/
H A DPackageVerificationState.java54 * @param args
56 public PackageVerificationState(int requiredVerifierUid, InstallArgs args) { argument
58 mArgs = args;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneSubInfoProxy.java130 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
131 mPhoneSubInfo.dump(fd, pw, args);
/frameworks/base/services/java/com/android/server/
H A DNativeDaemonConnector.java208 private void makeCommand(StringBuilder builder, String cmd, Object... args) argument
216 for (Object arg : args) {
249 public NativeDaemonEvent execute(String cmd, Object... args) argument
251 final NativeDaemonEvent[] events = executeForList(cmd, args);
283 public NativeDaemonEvent[] executeForList(String cmd, Object... args) argument
285 return execute(DEFAULT_TIMEOUT, cmd, args);
299 public NativeDaemonEvent[] execute(int timeout, String cmd, Object... args) argument
308 makeCommand(cmdBuilder, cmd, args);
310 final String logCmd = cmdBuilder.toString(); /* includes cmdNum, cmd, args */
452 public Command(String cmd, Object... args) { argument
470 dump(FileDescriptor fd, PrintWriter pw, String[] args) argument
585 dump(FileDescriptor fd, PrintWriter pw, String[] args) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiNative.java556 List<String> args = new ArrayList<String>();
558 args.add(config.deviceAddress);
562 args.add("pbc");
566 args.add("pin");
568 args.add(wps.pin);
570 args.add("display");
573 args.add(wps.pin);
574 args.add("keypad");
577 args.add(wps.pin);
578 args
[all...]
/frameworks/base/tests/DumpRenderTree/assets/
H A Drun_page_cycler.py21 def main(options, args):
34 if not args:
39 path = ' '.join(args);
162 options, args = option_parser.parse_args();
163 main(options, args)
/frameworks/base/tools/aidl/
H A DAST.cpp300 va_list args; local
301 va_start(args, argc);
302 init(argc, args);
303 va_end(args);
325 va_list args; local
326 va_start(args, argc);
327 init(argc, args);
328 va_end(args);
336 va_list args; local
337 va_start(args, arg
347 init(int n, va_list args) argument
399 va_list args; local
410 init(int n, va_list args) argument
[all...]
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DMain.java58 public static void main(String[] args) { argument
65 if (!processArgs(log, args, osJarPath, osDestJar)) {
166 * Returns true if args where properly parsed.
172 private static boolean processArgs(Log log, String[] args, argument
175 for (int i = 0; i < args.length; i++) {
176 String s = args[i];

Completed in 4834 milliseconds

1234567891011>>