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

1234567891011>>

/frameworks/av/include/media/
H A DRingBuffer.h122 void emplace(Args&&... args);
291 void RingBuffer<T>::emplace(Args&&... args) { argument
293 mBuffer.emplace_back(std::forward<Args>(args)...);
299 mBuffer[mFrontIdx] = T(std::forward<Args>(args)...);
/frameworks/base/cmds/appwidget/src/com/android/commands/appwidget/
H A DAppWidget.java64 public Parser(String[] args) { argument
65 mTokenizer = new Tokenizer(args);
123 public Tokenizer(String[] args) { argument
124 mArgs = args;
160 public static void main(String[] args) { argument
161 Parser parser = new Parser(args);
/frameworks/base/cmds/media/src/com/android/commands/media/
H A DMedia.java54 * @param args The command-line arguments
56 public static void main(String[] args) { argument
57 (new Media()).run(args);
/frameworks/base/cmds/settings/src/com/android/commands/settings/
H A DSettingsCmd.java55 public static void main(String[] args) { argument
56 if (args == null || args.length < 2) {
61 mArgs = args;
/frameworks/base/cmds/telecom/src/com/android/commands/telecom/
H A DTelecom.java38 * @param args The command-line arguments
40 public static void main(String[] args) { argument
41 (new Telecom()).run(args);
/frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
H A DRunTestCommand.java66 public void run(String[] args) { argument
67 int ret = parseArgs(args);
94 private int parseArgs(String[] args) { argument
105 for (int i = 0; i < args.length; i++) {
106 if (args[i].equals("-e")) {
107 if (i + 2 < args.length) {
108 String key = args[++i];
109 String value = args[++i];
122 } else if (args[i].equals("-c")) {
123 if (i + 1 < args
[all...]
/frameworks/base/core/java/android/content/
H A DCursorLoader.java231 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
232 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/hardware/camera2/utils/
H A DCameraBinderDecorator.java65 public void onBeforeInvocation(Method m, Object[] args) { argument
69 public void onAfterInvocation(Method m, Object[] args, Object result) { argument
78 public boolean onCatchException(Method m, Object[] args, Throwable t) { argument
93 public void onFinally(Method m, Object[] args) { argument
/frameworks/base/core/java/android/inputmethodservice/
H A DAbstractInputMethodService.java195 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { argument
/frameworks/base/core/java/android/os/
H A DIBinder.java195 * @param args additional arguments to the dump request.
197 public void dump(FileDescriptor fd, String[] args) throws RemoteException; argument
205 * @param args additional arguments to the dump request.
207 public void dumpAsync(FileDescriptor fd, String[] args) throws RemoteException; argument
H A DRecoverySystem.java460 * @param args to pass to the recovery utility.
463 private static void bootCommand(Context context, String... args) throws IOException { argument
470 for (String arg : args) {
/frameworks/base/core/java/com/android/internal/os/
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...]
H A DZygote.java163 String[] args = { "/system/bin/sh", "-c", command };
165 Os.execv(args[0], args);
177 * @param args An array of argument strings to be quoted and appended to the command.
180 public static void appendQuotedShellArgs(StringBuilder command, String[] args) { argument
181 for (String arg : args) {
/frameworks/base/libs/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/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/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DCameraUtilsDecoratorTest.java77 public void onBeforeInvocation(Method m, Object[] args) { argument
82 public void onAfterInvocation(Method m, Object[] args, Object result) { argument
92 public boolean onCatchException(Method m, Object[] args, Throwable t) { argument
98 public void onFinally(Method m, Object[] args) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsResizeTaskDialog.java233 public Dialog onCreateDialog(Bundle args) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBatteryController.java56 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
H A DHotspotControllerImpl.java54 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogComponent.java103 public void dispatchDemoCommand(String command, Bundle args) { argument
114 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
115 mController.dump(fd, pw, args);
/frameworks/base/services/core/java/com/android/server/
H A DCountryDetectorService.java210 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { argument
H A DDockObserver.java247 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
259 if (args == null || args.length == 0 || "-a".equals(args[0])) {
267 } else if (args.length == 3 && "set".equals(args[0])) {
268 String key = args[1];
269 String value = args[2];
280 } else if (args.length == 1 && "reset".equals(args[
[all...]
H A DNetworkScoreService.java278 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) { argument
290 scoreCache.asBinder().dump(fd, args);

Completed in 541 milliseconds

1234567891011>>