Searched defs:args (Results 51 - 75 of 250) sorted by relevance

12345678910

/frameworks/av/services/camera/libcameraservice/camera2/
H A DFrameProcessor.cpp65 void FrameProcessor::dump(int fd, const Vector<String16>& args) { argument
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java38 * @param args The command-line arguments
40 public static void main(String[] args) { argument
41 (new Input()).run(args);
44 private void run(String[] args) { argument
45 if (args.length < 1) {
50 String command = args[0];
54 if (args.length == 2) {
55 sendText(args[1]);
59 if (args.length == 2) {
60 int keyCode = KeyEvent.keyCodeFromString(args[
[all...]
/frameworks/base/cmds/settings/src/com/android/commands/settings/
H A DSettingsCmd.java47 public static void main(String[] args) { argument
48 if (args == null || args.length < 3) {
53 mArgs = args;
/frameworks/base/core/java/android/content/
H A DAsyncTaskLoader.java347 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
348 super.dump(prefix, fd, writer, args);
/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/android/inputmethodservice/
H A DAbstractInputMethodService.java192 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { argument
/frameworks/base/core/java/android/os/
H A DIBinder.java189 * @param args additional arguments to the dump request.
191 public void dump(FileDescriptor fd, String[] args) throws RemoteException; argument
199 * @param args additional arguments to the dump request.
201 public void dumpAsync(FileDescriptor fd, String[] args) throws RemoteException; argument
/frameworks/base/core/java/android/server/search/
H A DSearchManagerService.java286 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
294 mSearchables.valueAt(i).dump(fd, ipw, args);
/frameworks/base/core/java/com/android/internal/os/
H A DRuntimeInit.java245 * Current recognized args:
247 * <li> <code> [--] &lt;start class name&gt; &lt;args&gt;
297 final Arguments args;
299 args = new Arguments(argv);
307 invokeStaticMain(args.startClass, args.startArgs);
361 * Handles argument parsing for args related to the runtime.
363 * Current recognized args:
365 * <li> <code> [--] &lt;start class name&gt; &lt;args&gt;
376 * Constructs instance and parses args
380 Arguments(String args[]) argument
387 parseArgs(String args[]) argument
[all...]
/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/location/lib/java/com/android/location/provider/
H A DLocationProviderBase.java108 public void dump(FileDescriptor fd, String[] args) { argument
110 onDump(fd, pw, args);
171 public void onDump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/common_time/
H A Dcommon_clock_service.cpp36 status_t CommonClockService::dump(int fd, const Vector<String16>& args) { argument
38 return mTimeServer.dumpClockInterface(fd, args, mListeners.size());
H A Dcommon_time_config_service.cpp34 status_t CommonTimeConfigService::dump(int fd, const Vector<String16>& args) { argument
35 return mTimeServer.dumpConfigInterface(fd, args);
/frameworks/base/services/java/com/android/server/
H A DCountryDetectorService.java214 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { argument
/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/base/services/java/com/android/server/location/
H A DPassiveProvider.java121 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/test-runner/src/android/test/mock/
H A DMockIContentProvider.java90 public Bundle call(String method, String request, Bundle args) argument
/frameworks/base/tests/BrowserTestPlugin/jni/
H A DPluginObject.cpp68 static bool pluginInvoke(NPObject *obj, NPIdentifier name, const NPVariant *args, uint32_t argCount, NPVariant *result);
69 static bool pluginInvokeDefault(NPObject *obj, const NPVariant *args, uint32_t argCount, NPVariant *result);
154 static bool pluginInvoke(NPObject *obj, NPIdentifier name, const NPVariant *args, uint32_t argCount, NPVariant *result) argument
163 static bool pluginInvokeDefault(NPObject *obj, const NPVariant *args, uint32_t argCount, NPVariant *result) argument
/frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
H A DMemoryUsageTest.java64 Bundle args = instrumentation.getBundle();
67 parseArgs(args);
84 private void parseArgs(Bundle args) { argument
86 String appList = args.getString(KEY_APPS);
/frameworks/base/tools/preload/
H A DMemoryUsage.java287 public static void main(String[] args) throws IOException, argument
289 Root root = Root.fromFile(args[0]);
296 root.toFile(args[0]);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneSubInfo.java192 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaLteServiceStateTracker.java623 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
625 super.dump(fd, pw, args);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmDataConnection.java160 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
162 super.dump(fd, pw, args);
/frameworks/support/v4/java/android/support/v4/content/
H A DAsyncTaskLoader.java265 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
266 super.dump(prefix, fd, writer, args);
/frameworks/support/v4/java/android/support/v4/view/
H A DAccessibilityDelegateCompat.java52 Bundle args);
114 Bundle args) {
266 public boolean performAccessibilityAction(View host, int action, Bundle args) {
267 return compat.performAccessibilityAction(host, action, args);
285 Bundle args) {
287 host, action, args);
499 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
500 return IMPL.performAccessibilityAction(DEFAULT_DELEGATE, host, action, args);
51 performAccessibilityAction(Object delegate, View host, int action, Bundle args) argument
113 performAccessibilityAction(Object delegate, View host, int action, Bundle args) argument
284 performAccessibilityAction(Object delegate, View host, int action, Bundle args) argument

Completed in 324 milliseconds

12345678910