Searched refs:args (Results 176 - 200 of 955) sorted by relevance

1234567891011>>

/frameworks/support/frameworks/support/samples/SupportPreferenceDemos/src/com/example/android/supportpreference/
H A DFragmentSupportPreferencesLeanback.java66 final Bundle args = new Bundle(1);
67 args.putString(PreferenceFragment.ARG_PREFERENCE_ROOT, pref.getKey());
68 f.setArguments(args);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentAlertDialogSupport.java80 Bundle args = new Bundle();
81 args.putInt("title", title);
82 frag.setArguments(args);
/frameworks/support/samples/SupportPreferenceDemos/src/com/example/android/supportpreference/
H A DFragmentSupportPreferencesLeanback.java66 final Bundle args = new Bundle(1);
67 args.putString(PreferenceFragment.ARG_PREFERENCE_ROOT, pref.getKey());
68 f.setArguments(args);
/frameworks/av/include/media/stagefright/foundation/
H A DALooperRoster.h36 void dump(int fd, const Vector<String16>& args);
/frameworks/av/media/libstagefright/foundation/include/foundation/
H A DALooperRoster.h36 void dump(int fd, const Vector<String16>& args);
/frameworks/av/media/libstagefright/include/foundation/
H A DALooperRoster.h36 void dump(int fd, const Vector<String16>& args);
/frameworks/base/media/java/android/media/session/
H A DISessionCallback.aidl28 void onCommand(String command, in Bundle args, in ResultReceiver cb);
49 void onCustomAction(String action, in Bundle args);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBatteryController.java31 void dump(FileDescriptor fd, PrintWriter pw, String[] args); 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/tools/bit/
H A Dcommand.h41 vector<string> args; member in struct:Command
/frameworks/native/cmds/dumpstate/
H A DDumpstateService.h39 status_t dump(int fd, const Vector<String16>& args) override;
/frameworks/native/services/inputflinger/host/
H A DInputFlinger.h41 virtual status_t dump(int fd, const Vector<String16>& args);
/frameworks/native/cmds/lshal/
H A Dtest.cpp134 const char *args[] = { local
138 .main({NELEMS(args), const_cast<char **>(args)}));
144 const char *args[] = { local
148 .main({NELEMS(args), const_cast<char **>(args)}));
154 const char *args[] = { local
158 .main({NELEMS(args), const_cast<char **>(args)}));
/frameworks/av/media/libstagefright/codec2/include/
H A DC2ParamDef.h235 * - P::alloc_xyz(flexCount, args...): allocate for given flex-count.
236 * - P::alloc_xyz(args..., T[]): allocate for size of (and with) init array.
237 * - P::alloc_xyz(T[]): allocate for size of (and with) init array with no other args.
238 * - P::alloc_xyz(args..., std::initializer_list<T>): allocate for size of (and with) initializer
243 inline static std::ptr##_ptr<_type> alloc_##ptr(size_t flexCount, const Args(&... args)) { \
244 return std::ptr##_ptr<_type>(new(flexCount) _type(flexCount, args...)); \
248 inline static std::ptr##_ptr<_type> alloc_##ptr(const Args(&... args), const U(&init)[N]) { \
249 return std::ptr##_ptr<_type>(new(N) _type(N, args..., init)); \
251 /* so for now, specialize for no args */ \
258 const Args(&... args), cons
[all...]
/frameworks/base/tools/incident_report/
H A Dmain.cpp344 char const** args = (char const**)malloc(sizeof(char*) * 8); local
346 args[argpos++] = "adb";
348 args[argpos++] = "-s";
349 args[argpos++] = adbSerial;
351 args[argpos++] = "shell";
352 args[argpos++] = "dumpsys";
353 args[argpos++] = name.c_str();
354 args[argpos++] = "--proto";
355 args[argpos++] = NULL;
356 execvp(args[
515 char const** args = (char const**)malloc(sizeof(char*) * (6 + sections.size())); local
[all...]
/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java272 final SomeArgs args = (SomeArgs) msg.obj;
275 mCallback.onStorageStateChanged((String) args.arg1, (String) args.arg2,
276 (String) args.arg3);
277 args.recycle();
280 mCallback.onVolumeStateChanged((VolumeInfo) args.arg1, args.argi2, args.argi3);
281 args.recycle();
284 mCallback.onVolumeRecordChanged((VolumeRecord) args
[all...]
/frameworks/av/services/mediaextractor/
H A DMediaExtractorService.cpp55 status_t MediaExtractorService::dump(int fd, const Vector<String16>& args) { argument
56 return dumpExtractors(fd, args);
/frameworks/base/cmds/incidentd/src/
H A DIncidentService.h99 virtual Status reportIncident(const IncidentReportArgs& args);
101 virtual Status reportIncidentToStream(const IncidentReportArgs& args,
/frameworks/base/cmds/vr/src/com/android/commands/vr/
H A DVr.java34 * @param args The command-line arguments
36 public static void main(String[] args) { argument
37 (new Vr()).run(args);
/frameworks/base/cmds/webview_zygote/
H A Dwebview_zygote.cpp74 android::Vector<android::String8> args; local
75 runtime.start("com.android.internal.os.WebViewZygoteInit", args, /*zygote=*/ true);
/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/dispatch/
H A DHandlerDispatcher.java60 public Object dispatch(final Method method, final Object[] args) throws Throwable { argument
65 mDispatchTarget.dispatch(method, 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/packages/SystemUI/src/com/android/systemui/
H A DSystemBars.java46 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
48 mStatusBar.dump(fd, pw, args);
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeUI.java62 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
65 getVolumeComponent().dump(fd, pw, args);

Completed in 2482 milliseconds

1234567891011>>