Searched defs:args (Results 151 - 175 of 619) sorted by relevance

1234567891011>>

/frameworks/base/core/java/com/android/internal/os/
H A DTransferPipe.java54 String[] args) throws RemoteException;
79 public static void dumpAsync(IBinder binder, FileDescriptor out, String[] args) argument
81 goDump(binder, out, args);
85 String prefix, String[] args) throws IOException, RemoteException {
86 go(caller, iface, out, prefix, args, DEFAULT_TIMEOUT);
90 String prefix, String[] args, long timeout) throws IOException, RemoteException {
94 caller.go(iface, out, prefix, args);
101 caller.go(iface, tp.getWriteFd().getFileDescriptor(), prefix, args);
107 String[] args) throws IOException, RemoteException {
108 goDump(binder, out, args, DEFAULT_TIMEOU
53 go(IInterface iface, FileDescriptor fd, String prefix, String[] args) argument
84 go(Caller caller, IInterface iface, FileDescriptor out, String prefix, String[] args) argument
89 go(Caller caller, IInterface iface, FileDescriptor out, String prefix, String[] args, long timeout) argument
106 goDump(IBinder binder, FileDescriptor out, String[] args) argument
111 goDump(IBinder binder, FileDescriptor out, String[] args, long timeout) argument
[all...]
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DLineBreakBufferedWriterTest.java204 private static List<String> createTestGolden(String... args) { argument
206 for (String s : 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/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DMapper.java191 final String[] args;
194 args = strings(parentDocumentId);
197 args = EMPTY_ARGS;
213 DatabaseUtils.appendSelectionArgs(args, strings(ROW_STATE_VALID)));
234 * @param args Argument for selection SQL.
243 String[] args,
262 queryCandidate(selection, args, mappingKeys, values)) {
320 final String[] args;
323 args = strings(parentId);
326 args
238 putDocuments( String parentId, ContentValues[] valuesList, @Nullable ContentValues[] rootExtraValuesList, String selection, String[] args, String[] mappingKeys) argument
410 queryCandidate( String selection, String[] args, String[] mappingKeys, ContentValues values) argument
432 queryCandidate( String selection, String[] args, String mappingKey, ContentValues values) argument
[all...]
/frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
H A DDomainMatcher.java135 public static void main(String[] args) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDependency.java277 public synchronized void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
278 super.dump(fd, pw, args);
281 .forEach(o -> ((Dumpable) o).dump(fd, pw, args));
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
H A DPipAccessibilityInteractionConnection.java63 int interrogatingPid, long interrogatingTid, MagnificationSpec spec, Bundle args) {
60 findAccessibilityNodeInfoByAccessibilityId(long accessibilityNodeId, Region interactiveRegion, int interactionId, IAccessibilityInteractionConnectionCallback callback, int flags, int interrogatingPid, long interrogatingTid, MagnificationSpec spec, Bundle args) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarIconControllerImpl.java203 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
215 public void dispatchDemoCommand(String command, Bundle args) { argument
223 mDemoStatusIcons.dispatchDemoCommand(command, args);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DHotspotControllerImpl.java60 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/core/java/com/android/server/
H A DCountryDetectorService.java211 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { argument
H A DDockObserver.java256 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
261 if (args == null || args.length == 0 || "-a".equals(args[0])) {
269 } else if (args.length == 3 && "set".equals(args[0])) {
270 String key = args[1];
271 String value = args[2];
282 } else if (args.length == 1 && "reset".equals(args[
[all...]
H A DLockGuard.java200 public static void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/core/java/com/android/server/location/
H A DPassiveProvider.java116 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDeviceAdminServiceController.java60 static void debug(String format, Object... args) { argument
64 Slog.d(TAG, String.format(format, args));
/frameworks/base/services/net/java/android/net/util/
H A DSharedLog.java77 public void dump(FileDescriptor fd, PrintWriter writer, String[] args) { argument
78 mLocalLog.readOnlyLocalLog().dump(fd, writer, args);
/frameworks/base/services/tests/servicestests/src/com/android/server/utils/
H A DPriorityDumpTest.java73 final String[] args = {
76 dump(mDumper, mFd, mPw, args);
77 verify(mDumper).dump(same(mFd), same(mPw), same(args));
82 final String[] args = {
85 dump(mDumper, mFd, mPw, args);
86 verify(mDumper).dump(same(mFd), same(mPw), same(args));
91 final String[] args = {
94 dump(mDumper, mFd, mPw, args);
95 verify(mDumper).dump(same(mFd), same(mPw), same(args));
100 final String[] args
190 dumpCritical(FileDescriptor fd, PrintWriter pw, String[] args) argument
197 dumpHigh(FileDescriptor fd, PrintWriter pw, String[] args) argument
204 dumpNormal(FileDescriptor fd, PrintWriter pw, String[] args) argument
[all...]
/frameworks/base/test-runner/src/junit/textui/
H A DTestRunner.java70 * public static void main (String[] args) {
135 public static void main(String args[]) { argument
138 TestResult r= aTestRunner.start(args);
152 public TestResult start(String args[]) throws Exception { argument
157 for (int i= 0; i < args.length; i++) {
158 if (args[i].equals("-wait"))
160 else if (args[i].equals("-c"))
161 testCase= extractClassName(args[++i]);
162 else if (args[i].equals("-m")) {
163 String arg= args[
[all...]
/frameworks/base/tools/aapt2/cmd/
H A DDump.cpp195 int Dump(const std::vector<StringPiece>& args) { argument
198 if (!flags.Parse("aapt2 dump", args, &std::cerr)) {
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
H A DPropertyValuesHolder_Delegate.java77 Class[] args = new Class[nArgs];
81 args[i] = typeVariant;
84 method = targetClass.getDeclaredMethod(methodName, args);
102 private static void callMethod(Object target, long methodID, Object... args) { argument
108 method.invoke(target, args);
162 int[] args) {
163 assert args != null;
166 Object[] params = new Object[args.length];
167 for (int i = 0; i < args.length; i++) {
168 params[i] = args;
161 nCallMultipleIntMethod(Object target, long methodID, int[] args) argument
186 nCallMultipleFloatMethod(Object target, long methodID, float[] args) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContentProvider.java150 public boolean refresh(String callingPkg, Uri url, Bundle args, argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DAppCompatActionBar.java185 private static Object invoke(Method method, Object owner, Object... args) { argument
187 return method == null ? null : method.invoke(owner, args);
/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/base/tools/preload2/src/com/android/preload/
H A DMain.java103 * @param args
105 public static void main(String[] args) { argument
107 if (args.length > 0 && args[0].equals("--seq")) {
108 m = createSequencedMain(args);
153 * @param args
156 private static Main createSequencedMain(String[] args) { argument
160 Iterator<String> it = Arrays.asList(args).iterator();

Completed in 2265 milliseconds

1234567891011>>