Searched refs:pw (Results 26 - 50 of 188) sorted by last modified time

12345678

/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DStochasticLinearRankerWithPrior.java170 public boolean setModelPriorWeights(HashMap<String, Float> pw){ argument
172 mPriorWeights.putAll(pw);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DLog.java56 PrintWriter pw = new PrintWriter(sw);
57 t.printStackTrace(pw);
58 pw.flush();
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DDelegateClassAdapterTest.java443 PrintWriter pw = new PrintWriter(sw);
444 // next 2 lines do: TraceClassVisitor tcv = new TraceClassVisitor(pw);
445 Constructor<?> cons = tcvClass.getConstructor(new Class<?>[] { pw.getClass() });
446 Object tcv = cons.newInstance(new Object[] { pw });
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiWatchdogStateMachine.java420 public void dump(PrintWriter pw) { argument
421 pw.print("WatchdogStatus: ");
422 pw.print("State: " + getCurrentState());
423 pw.println("mWifiInfo: [" + mWifiInfo + "]");
424 pw.println("mLinkProperties: [" + mLinkProperties + "]");
425 pw.println("mCurrentSignalLevel: [" + mCurrentSignalLevel + "]");
426 pw.println("mPoorNetworkDetectionEnabled: [" + mPoorNetworkDetectionEnabled + "]");
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pService.java346 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
349 pw.println("Permission Denial: can't dump WifiP2pService from from pid="
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java4548 public void dump(String prefix, PrintWriter pw, String[] args) { argument
4549 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
4550 pw.print(" mSystemReady="); pw.print(mSystemReady);
4551 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
4552 pw.print(prefix); pw
[all...]
/frameworks/base/services/java/com/android/server/
H A DAlarmManagerService.java463 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
466 pw.println("Permission Denial: can't dump AlarmManager from from pid="
473 pw.println("Current Alarm Manager state:");
477 pw.println(" ");
478 pw.print(" Realtime wakeup (now=");
479 pw.print(sdf.format(new Date(now))); pw.println("):");
481 dumpAlarmList(pw, mRtcWakeupAlarms, " ", "RTC_WAKEUP", now);
484 dumpAlarmList(pw, mRtcAlarms, " ", "RTC", now);
489 pw
522 dumpAlarmList(PrintWriter pw, ArrayList<Alarm> list, String prefix, String label, long now) argument
643 dump(PrintWriter pw, String prefix, long now) argument
[all...]
H A DAppWidgetService.java312 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
317 IndentingPrintWriter ipw = new IndentingPrintWriter(pw, " ");
319 pw.println("User: " + mAppWidgetServices.keyAt(i));
H A DAppWidgetServiceImpl.java315 private void dumpProvider(Provider p, int index, PrintWriter pw) { argument
317 pw.print(" ["); pw.print(index); pw.print("] provider ");
318 pw.print(info.provider.flattenToShortString());
319 pw.println(':');
320 pw.print(" min=("); pw.print(info.minWidth);
321 pw.print("x"); pw
336 dumpHost(Host host, int index, PrintWriter pw) argument
346 dumpAppWidgetId(AppWidgetId id, int index, PrintWriter pw) argument
365 dump(FileDescriptor fd, PrintWriter pw, String[] args) argument
[all...]
H A DBackupManagerService.java426 // Configuration of PBKDF2 that we use for generating pw hashes and intermediate keys
756 // then the hex pw hash string
763 Slog.e(TAG, "Unable to read saved backup pw hash");
1039 private SecretKey buildPasswordKey(String pw, byte[] salt, int rounds) { argument
1040 return buildCharArrayKey(pw.toCharArray(), salt, rounds);
1056 private String buildPasswordHash(String pw, byte[] salt, int rounds) { argument
1057 SecretKey key = buildPasswordKey(pw, salt, rounds);
1104 // First, on an encrypted device we require matching the device pw
1110 Slog.i(TAG, "Device encrypted; verifying against device data pw");
1142 } // else the non-empty candidate does not match the empty stored pw
5803 dump(FileDescriptor fd, PrintWriter pw, String[] args) argument
5814 dumpInternal(PrintWriter pw) argument
[all...]
H A DBatteryService.java587 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
591 pw.println("Permission Denial: can't dump Battery service from from pid="
599 pw.println("Current Battery Service state:");
601 pw.println(" (UPDATES STOPPED -- use 'reset' to restart)");
603 pw.println(" AC powered: " + mAcOnline);
604 pw.println(" USB powered: " + mUsbOnline);
605 pw.println(" Wireless powered: " + mWirelessOnline);
606 pw.println(" status: " + mBatteryStatus);
607 pw.println(" health: " + mBatteryHealth);
608 pw
[all...]
H A DCommonTimeManagementService.java185 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
188 pw.println(String.format(
195 pw.println("Native Common Time service was not detected at startup. " +
201 pw.println("Current Common Time Management Service Config:");
202 pw.println(String.format(" Native service : %s",
205 pw.println(String.format(" Bound interface : %s",
207 pw.println(String.format(" Allow WiFi : %s", ALLOW_WIFI ? "yes" : "no"));
208 pw.println(String.format(" Allow Auto Disable : %s", AUTO_DISABLE ? "yes" : "no"));
209 pw.println(String.format(" Server Priority : %d", mEffectivePrio));
210 pw
[all...]
H A DConnectivityService.java2598 final IndentingPrintWriter pw = new IndentingPrintWriter(writer, " ");
2602 pw.println("Permission Denial: can't dump ConnectivityService " +
2609 pw.println();
2613 pw.println("NetworkStateTracker for " + getNetworkTypeName(i) + ":");
2614 pw.increaseIndent();
2616 pw.println("Active network: " + nst.getNetworkInfo().
2619 pw.println(nst.getNetworkInfo());
2620 pw.println(nst.getLinkProperties());
2621 pw.println(nst);
2622 pw
[all...]
H A DDevicePolicyManagerService.java415 void dump(String prefix, PrintWriter pw) { argument
416 pw.print(prefix); pw.print("uid="); pw.println(getUid());
417 pw.print(prefix); pw.println("policies:");
421 pw.print(prefix); pw.print(" "); pw.println(pols.get(i).tag);
424 pw
2365 dump(FileDescriptor fd, PrintWriter pw, String[] args) argument
[all...]
H A DDeviceStorageMonitorService.java484 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
488 pw.println("Permission Denial: can't dump " + SERVICE + " from from pid="
494 pw.println("Current DeviceStorageMonitor state:");
495 pw.print(" mFreeMem="); pw.print(Formatter.formatFileSize(mContext, mFreeMem));
496 pw.print(" mTotalMemory=");
497 pw.println(Formatter.formatFileSize(mContext, mTotalMemory));
498 pw.print(" mFreeMemAfterLastCacheClear=");
499 pw.println(Formatter.formatFileSize(mContext, mFreeMemAfterLastCacheClear));
500 pw
[all...]
H A DDiskStatsService.java46 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
71 pw.print("Test-Error: ");
72 pw.println(error.toString());
74 pw.print("Latency: ");
75 pw.print(after - before);
76 pw.println("ms [512B Data Write]");
79 reportFreeSpace(Environment.getDataDirectory(), "Data", pw);
80 reportFreeSpace(Environment.getDownloadCacheDirectory(), "Cache", pw);
81 reportFreeSpace(new File("/system"), "System", pw);
87 private void reportFreeSpace(File path, String name, PrintWriter pw) { argument
[all...]
H A DDropBoxManagerService.java305 public synchronized void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
308 pw.println("Permission Denial: Can't dump DropBoxManagerService");
315 pw.println("Can't initialize: " + e);
398 pw.write(out.toString());
434 pw.write(out.toString());
H A DInputMethodManagerService.java4068 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
4072 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
4081 final Printer p = new PrintWriterPrinter(pw);
4120 pw.flush();
4132 pw.flush();
H A DLocationManagerService.java2003 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
2006 pw.println("Permission Denial: can't dump LocationManagerService from from pid="
2013 pw.println("Current Location Manager state:");
2014 pw.println(" Location Listeners:");
2016 pw.println(" " + receiver);
2018 pw.println(" Records by Provider:");
2020 pw.println(" " + entry.getKey() + ":");
2022 pw.println(" " + record);
2025 pw.println(" Last Known Locations:");
2029 pw
[all...]
H A DMountService.java2624 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
2626 pw.println("Permission Denial: can't dump ActivityManager from from pid="
2633 pw.println(" mObbMounts:");
2638 pw.print(" Key="); pw.println(e.getKey().toString());
2641 pw.print(" "); pw.println(obbState.toString());
2645 pw.println("");
2646 pw.println(" mObbPathToStateMap:");
2650 pw
[all...]
H A DNativeDaemonConnector.java470 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
471 mLocalLog.dump(fd, pw, args);
472 pw.println();
473 mResponseQueue.dump(fd, pw, args);
585 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
586 pw.println("Pending requests:");
589 pw.println(" Cmd " + pendingCmd.cmdNum + " - " + pendingCmd.request);
H A DNetworkManagementService.java1519 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
1522 pw.println("NetworkManagementService NativeDaemonConnector Log:");
1523 mConnector.dump(fd, pw, args);
1524 pw.println();
1526 pw.print("Bandwidth control enabled: "); pw.println(mBandwidthControlEnabled);
1529 pw.print("Active quota ifaces: "); pw.println(mActiveQuotas.toString());
1530 pw.print("Active alert ifaces: "); pw
[all...]
H A DNotificationManagerService.java338 void dump(PrintWriter pw, String prefix, Context baseContext) { argument
339 pw.println(prefix + this);
340 pw.println(prefix + " icon=0x" + Integer.toHexString(notification.icon)
342 pw.println(prefix + " pri=" + notification.priority);
343 pw.println(prefix + " score=" + this.score);
344 pw.println(prefix + " contentIntent=" + notification.contentIntent);
345 pw.println(prefix + " deleteIntent=" + notification.deleteIntent);
346 pw.println(prefix + " tickerText=" + notification.tickerText);
347 pw.println(prefix + " contentView=" + notification.contentView);
348 pw
390 dump(PrintWriter pw, String prefix) argument
1433 dump(FileDescriptor fd, PrintWriter pw, String[] args) argument
[all...]
H A DNsdService.java752 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
755 pw.println("Permission Denial: can't dump ServiceDiscoverService from from pid="
762 pw.println("Client Info");
763 pw.println(client);
766 mNsdStateMachine.dump(fd, pw, args);
H A DSamplingProfilerService.java98 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
101 pw.println("SamplingProfilerService:");
102 pw.println("Watching directory: " + SNAPSHOT_DIR);

Completed in 2330 milliseconds

12345678