Searched defs:pw (Results 151 - 175 of 329) sorted by last modified time

1234567891011>>

/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeComponent.java31 void dump(FileDescriptor fd, PrintWriter pw, String[] args); argument
H A DVolumeDialogComponent.java114 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
115 mController.dump(fd, pw, args);
116 mDialog.dump(pw);
H A DVolumeDialogController.java178 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
179 pw.println(VolumeDialogController.class.getSimpleName() + " state:");
180 pw.print(" mEnabled: "); pw.println(mEnabled);
181 pw.print(" mDestroyed: "); pw.println(mDestroyed);
182 pw.print(" mVolumePolicy: "); pw.println(mVolumePolicy);
183 pw.print(" mState: "); pw
[all...]
H A DVolumeUI.java97 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
98 pw.print("mEnabled="); pw.println(mEnabled);
100 pw.print("mVolumeControllerService="); pw.println(mVolumeControllerService.getComponent());
101 getVolumeComponent().dump(fd, pw, args);
H A DZenModePanel.java134 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
135 pw.println("ZenModePanel state:");
136 pw.print(" mCountdownConditionSupported="); pw.println(mCountdownConditionSupported);
137 pw.print(" mRequestingConditions="); pw.println(mRequestingConditions);
138 pw.print(" mAttached="); pw.println(mAttached);
139 pw.print(" mHidden="); pw
972 dump(FileDescriptor fd, PrintWriter pw, String[] args) argument
[all...]
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java1666 public void dump(FileDescriptor fd, final PrintWriter pw, String[] args) { argument
1669 pw.println("ACCESSIBILITY MANAGER (dumpsys accessibility)");
1670 pw.println();
1674 pw.append("User state[attributes:{id=" + userState.mUserId);
1675 pw.append(", currentUser=" + (userState.mUserId == mCurrentUserId));
1676 pw.append(", accessibilityEnabled=" + userState.mIsAccessibilityEnabled);
1677 pw.append(", touchExplorationEnabled=" + userState.mIsTouchExplorationEnabled);
1678 pw.append(", displayMagnificationEnabled="
1681 pw.append(", ");
1682 userState.mUiAutomationService.dump(fd, pw, arg
2607 dump(FileDescriptor fd, final PrintWriter pw, String[] args) argument
[all...]
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java449 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
457 pw.println("Providers:");
459 dumpProvider(mProviders.get(i), i, pw);
463 pw.println(" ");
464 pw.println("Widgets:");
466 dumpWidget(mWidgets.get(i), i, pw);
470 pw.println(" ");
471 pw.println("Hosts:");
473 dumpHost(mHosts.get(i), i, pw);
478 pw
1962 dumpProvider(Provider provider, int index, PrintWriter pw) argument
1984 dumpHost(Host host, int index, PrintWriter pw) argument
1992 dumpGrant(Pair<Integer, String> grant, int index, PrintWriter pw) argument
1998 dumpWidget(Widget widget, int index, PrintWriter pw) argument
[all...]
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java570 // Configuration of PBKDF2 that we use for generating pw hashes and intermediate keys
1011 Slog.e(TAG, "Unable to read backup pw version");
1017 Slog.w(TAG, "Error closing pw version files");
1030 // then the hex pw hash string
1037 Slog.e(TAG, "Unable to read saved backup pw hash");
1442 private SecretKey buildPasswordKey(String algorithm, String pw, byte[] salt, int rounds) { argument
1443 return buildCharArrayKey(algorithm, pw.toCharArray(), salt, rounds);
1459 private String buildPasswordHash(String algorithm, String pw, byte[] salt, int rounds) { argument
1460 SecretKey key = buildPasswordKey(algorithm, pw, salt, rounds);
1510 } // else the non-empty candidate does not match the empty stored pw
9594 dump(FileDescriptor fd, PrintWriter pw, String[] args) argument
9618 dumpAgents(PrintWriter pw) argument
9628 dumpInternal(PrintWriter pw) argument
[all...]
H A DTrampoline.java326 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
331 svc.dump(fd, pw, args);
333 pw.println("Inactive");
/frameworks/base/services/core/java/com/android/server/
H A DAlarmManagerService.java262 void dump(PrintWriter pw) { argument
263 pw.println(" Settings:");
265 pw.print(" "); pw.print(KEY_MIN_FUTURITY); pw.print("=");
266 TimeUtils.formatDuration(MIN_FUTURITY, pw);
267 pw.println();
269 pw.print(" "); pw.print(KEY_MIN_INTERVAL); pw
1179 dumpImpl(PrintWriter pw) argument
1791 dumpAlarmList(PrintWriter pw, ArrayList<Alarm> list, String prefix, String label, long nowRTC, long nowELAPSED, SimpleDateFormat sdf) argument
1813 dumpAlarmList(PrintWriter pw, ArrayList<Alarm> list, String prefix, long nowELAPSED, long nowRTC, SimpleDateFormat sdf) argument
2003 dump(PrintWriter pw, String prefix, long nowRTC, long nowELAPSED, SimpleDateFormat sdf) argument
[all...]
H A DAppOpsService.java1544 private void dumpHelp(PrintWriter pw) { argument
1545 pw.println("AppOps service (appops) dump options:");
1546 pw.println(" [-h] [CMD]");
1547 pw.println(" -h: print this help text.");
1548 pw.println("Commands:");
1549 pw.println(" write-settings");
1550 pw.println(" Immediately write pending changes to storage.");
1551 pw.println(" read-settings");
1552 pw.println(" Read the last written settings, replacing current state in RAM.");
1556 protected void dump(FileDescriptor fd, PrintWriter pw, Strin argument
[all...]
H A DBatteryService.java619 private void dumpInternal(PrintWriter pw, String[] args) { argument
622 pw.println("Current Battery Service state:");
624 pw.println(" (UPDATES STOPPED -- use 'reset' to restart)");
626 pw.println(" AC powered: " + mBatteryProps.chargerAcOnline);
627 pw.println(" USB powered: " + mBatteryProps.chargerUsbOnline);
628 pw.println(" Wireless powered: " + mBatteryProps.chargerWirelessOnline);
629 pw.println(" Max charging current: " + mBatteryProps.maxChargingCurrent);
630 pw.println(" status: " + mBatteryProps.batteryStatus);
631 pw.println(" health: " + mBatteryProps.batteryHealth);
632 pw
792 dump(FileDescriptor fd, PrintWriter pw, String[] args) argument
[all...]
H A DCommonTimeManagementService.java179 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
182 pw.println(String.format(
189 pw.println("Native Common Time service was not detected at startup. " +
195 pw.println("Current Common Time Management Service Config:");
196 pw.println(String.format(" Native service : %s",
199 pw.println(String.format(" Bound interface : %s",
201 pw.println(String.format(" Allow WiFi : %s", ALLOW_WIFI ? "yes" : "no"));
202 pw.println(String.format(" Allow Auto Disable : %s", AUTO_DISABLE ? "yes" : "no"));
203 pw.println(String.format(" Server Priority : %d", mEffectivePrio));
204 pw
[all...]
H A DConnectivityService.java591 public void dump(IndentingPrintWriter pw) { argument
592 pw.println("mLegacyTypeTracker:");
593 pw.increaseIndent();
594 pw.print("Supported types:");
596 if (mTypeLists[type] != null) pw.print(" " + type);
598 pw.println();
599 pw.println("Current state:");
600 pw.increaseIndent();
604 pw.println(type + " " + naiToString(nai));
607 pw
[all...]
H A DDeviceIdleController.java544 void dump(PrintWriter pw) { argument
545 pw.println(" Settings:");
547 pw.print(" "); pw.print(KEY_INACTIVE_TIMEOUT); pw.print("=");
548 TimeUtils.formatDuration(INACTIVE_TIMEOUT, pw);
549 pw.println();
551 pw.print(" "); pw.print(KEY_SENSING_TIMEOUT); pw
799 dump(FileDescriptor fd, PrintWriter pw, String[] args) argument
1640 dumpHelp(PrintWriter pw) argument
1664 dump(FileDescriptor fd, PrintWriter pw, String[] args) argument
[all...]
H A DDiskStatsService.java45 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
70 pw.print("Test-Error: ");
71 pw.println(error.toString());
73 pw.print("Latency: ");
74 pw.print(after - before);
75 pw.println("ms [512B Data Write]");
78 reportFreeSpace(Environment.getDataDirectory(), "Data", pw);
79 reportFreeSpace(Environment.getDownloadCacheDirectory(), "Cache", pw);
80 reportFreeSpace(new File("/system"), "System", pw);
86 private void reportFreeSpace(File path, String name, PrintWriter pw) { argument
[all...]
H A DDockObserver.java247 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
250 pw.println("Permission Denial: can't dump dock observer service from from pid="
260 pw.println("Current Dock Observer Service state:");
262 pw.println(" (UPDATES STOPPED -- use 'reset' to restart)");
264 pw.println(" reported state: " + mReportedDockState);
265 pw.println(" previous state: " + mPreviousDockState);
266 pw.println(" actual state: " + mActualDockState);
275 pw.println("Unknown set option: " + key);
278 pw.println("Bad value: " + value);
284 pw
[all...]
H A DDropBoxManagerService.java311 public synchronized void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
314 pw.println("Permission Denial: Can't dump DropBoxManagerService");
321 pw.println("Can't initialize: " + e);
404 pw.write(out.toString());
445 pw.write(out.toString());
H A DInputMethodManagerService.java3770 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
3774 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
3783 final Printer p = new PrintWriterPrinter(pw);
3827 pw.flush();
3839 pw.flush();
H A DLocationManagerService.java2613 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
2616 pw.println("Permission Denial: can't dump LocationManagerService from from pid="
2623 pw.println("Current Location Manager state:");
2624 pw.println(" Location Listeners:");
2626 pw.println(" " + receiver);
2628 pw.println(" Active Records by Provider:");
2630 pw.println(" " + entry.getKey() + ":");
2632 pw.println(" " + record);
2635 pw.println(" Historical Records by Provider:");
2640 pw
[all...]
H A DNativeDaemonConnector.java522 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
523 mLocalLog.dump(fd, pw, args);
524 pw.println();
525 mResponseQueue.dump(fd, pw, args);
642 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
643 pw.println("Pending requests:");
646 pw.println(" Cmd " + pendingCmd.cmdNum + " - " + pendingCmd.logCmd);
H A DNetworkManagementService.java2263 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
2266 pw.println("NetworkManagementService NativeDaemonConnector Log:");
2267 mConnector.dump(fd, pw, args);
2268 pw.println();
2270 pw.print("Bandwidth control enabled: "); pw.println(mBandwidthControlEnabled);
2271 pw.print("mMobileActivityFromRadio="); pw.print(mMobileActivityFromRadio);
2272 pw.print(" mLastPowerStateFromRadio="); pw
[all...]
H A DNsdService.java825 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
828 pw.println("Permission Denial: can't dump ServiceDiscoverService from from pid="
835 pw.println("Client Info");
836 pw.println(client);
839 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);
H A DTelephonyRegistry.java1344 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
1347 pw.println("Permission Denial: can't dump telephony.registry from from pid="
1353 pw.println("last known state:");
1355 pw.println(" Phone Id=" + i);
1356 pw.println(" mCallState=" + mCallState[i]);
1357 pw.println(" mCallIncomingNumber=" + mCallIncomingNumber[i]);
1358 pw.println(" mServiceState=" + mServiceState[i]);
1359 pw.println(" mSignalStrength=" + mSignalStrength[i]);
1360 pw.println(" mMessageWaiting=" + mMessageWaiting[i]);
1361 pw
[all...]

Completed in 324 milliseconds

1234567891011>>