Searched defs:out (Results 126 - 150 of 520) sorted by last modified time

1234567891011>>

/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsRecorder.java373 public void write(OutputStream out) throws IOException { argument
374 mCollection.write(new DataOutputStream(out));
410 public void write(OutputStream out) throws IOException { argument
411 mTemp.write(new DataOutputStream(out));
/frameworks/base/services/core/java/com/android/server/notification/
H A DRankingHelper.java192 public void writeXml(XmlSerializer out, boolean forBackup) throws IOException { argument
193 out.startTag(null, TAG_RANKING);
194 out.attribute(null, ATT_VERSION, Integer.toString(XML_VERSION));
206 out.startTag(null, TAG_PACKAGE);
207 out.attribute(null, ATT_NAME, r.pkg);
209 out.attribute(null, ATT_IMPORTANCE, Integer.toString(r.importance));
212 out.attribute(null, ATT_PRIORITY, Integer.toString(r.priority));
215 out.attribute(null, ATT_VISIBILITY, Integer.toString(r.visibility));
219 out.attribute(null, ATT_UID, Integer.toString(r.uid));
222 out
[all...]
H A DZenModeHelper.java554 public void writeXml(XmlSerializer out, boolean forBackup) throws IOException { argument
561 mConfigs.valueAt(i).writeXml(out);
/frameworks/base/services/core/java/com/android/server/pm/
H A DOtaDexoptService.java79 public void onShellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err, argument
82 this, in, out, err, args, resultReceiver);
H A DPackageInstallerService.java429 XmlSerializer out = new FastXmlSerializer();
430 out.setOutput(fos, StandardCharsets.UTF_8.name());
431 out.startDocument(null, true);
432 out.startTag(null, TAG_SESSIONS);
436 writeSessionLocked(out, session);
438 out.endTag(null, TAG_SESSIONS);
439 out.endDocument();
449 private void writeSessionLocked(XmlSerializer out, PackageInstallerSession session) argument
453 out.startTag(null, TAG_SESSION);
455 writeIntAttribute(out, ATTR_SESSION_I
508 writeGrantedRuntimePermissions(XmlSerializer out, String[] grantedRuntimePermissions) argument
[all...]
H A DPackageManagerService.java1173 BufferedOutputStream out = new BufferedOutputStream(f);
1180 out.write(sb.toString().getBytes(StandardCharsets.US_ASCII));
1193 out.write(sb.toString().getBytes(StandardCharsets.US_ASCII));
1195 out.flush();
1416 // waiting for connection. Bail out.
1538 int i = 0; // filling out the above arrays
1691 Slog.i(TAG, "Verification timed out for " + originUri);
2068 // We could have touched GID membership, so flush out packages.list
3269 String[] out = new String[names.length];
3274 out[
10848 dumpFilter(PrintWriter out, String prefix, PackageParser.ActivityIntentInfo filter) argument
10863 dumpFilterLabel(PrintWriter out, String prefix, Object label, int count) argument
11046 dumpFilter(PrintWriter out, String prefix, PackageParser.ServiceIntentInfo filter) argument
11061 dumpFilterLabel(PrintWriter out, String prefix, Object label, int count) argument
11265 dumpFilter(PrintWriter out, String prefix, PackageParser.ProviderIntentInfo filter) argument
11281 dumpFilterLabel(PrintWriter out, String prefix, Object label, int count) argument
18159 onShellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err, String[] args, ResultReceiver resultReceiver) argument
[all...]
H A DPreferredComponent.java244 public void dump(PrintWriter out, String prefix, Object ident) { argument
245 out.print(prefix); out.print(
247 out.print(' ');
248 out.println(mShortComponent);
249 out.print(prefix); out.print(" mMatch=0x");
250 out.print(Integer.toHexString(mMatch));
251 out.print(" mAlways="); out
[all...]
H A DPreferredIntentResolver.java36 protected void dumpFilter(PrintWriter out, String prefix, argument
38 filter.mPref.dump(out, prefix, filter);
H A DSettings.java523 // < 0 means we couldn't assign a userid; fall out and return
782 // If this is not a system app, it starts out stopped.
3361 private void readPermissionsLPw(ArrayMap<String, BasePermission> out, XmlPullParser parser) argument
3378 BasePermission bp = out.get(name);
3396 out.put(bp.name, bp);
5012 FileOutputStream out = null;
5014 out = destination.startWrite();
5017 serializer.setOutput(out, StandardCharsets.UTF_8.name());
5096 destination.finishWrite(out);
5105 destination.failWrite(out);
[all...]
H A DShortcutLauncher.java148 public void saveToXml(XmlSerializer out, boolean forBackup) argument
155 out.startTag(null, TAG_ROOT);
156 ShortcutService.writeAttr(out, ATTR_PACKAGE_NAME, getPackageName());
157 ShortcutService.writeAttr(out, ATTR_LAUNCHER_USER_ID, getPackageUserId());
158 getPackageInfo().saveToXml(out);
167 out.startTag(null, TAG_PACKAGE);
168 ShortcutService.writeAttr(out, ATTR_PACKAGE_NAME, pu.packageName);
169 ShortcutService.writeAttr(out, ATTR_PACKAGE_USER_ID, pu.userId);
174 ShortcutService.writeTagValue(out, TAG_PIN, ids.valueAt(j));
176 out
[all...]
H A DShortcutPackage.java553 public void saveToXml(@NonNull XmlSerializer out, boolean forBackup) argument
561 out.startTag(null, TAG_ROOT);
563 ShortcutService.writeAttr(out, ATTR_NAME, getPackageName());
564 ShortcutService.writeAttr(out, ATTR_DYNAMIC_COUNT, mDynamicShortcutCount);
565 ShortcutService.writeAttr(out, ATTR_CALL_COUNT, mApiCallCount);
566 ShortcutService.writeAttr(out, ATTR_LAST_RESET, mLastResetTime);
567 getPackageInfo().saveToXml(out);
570 saveShortcut(out, mShortcuts.valueAt(j), forBackup);
573 out.endTag(null, TAG_ROOT);
576 private static void saveShortcut(XmlSerializer out, ShortcutInf argument
[all...]
H A DShortcutPackageInfo.java137 public void saveToXml(XmlSerializer out) throws IOException { argument
139 out.startTag(null, TAG_ROOT);
141 ShortcutService.writeAttr(out, ATTR_VERSION, mVersionCode);
142 ShortcutService.writeAttr(out, ATTR_SHADOW, mIsShadow);
145 out.startTag(null, TAG_SIGNATURE);
146 ShortcutService.writeAttr(out, ATTR_SIGNATURE_HASH, Base64.encode(mSigHashes.get(i)));
147 out.endTag(null, TAG_SIGNATURE);
149 out.endTag(null, TAG_ROOT);
H A DShortcutPackageItem.java128 public abstract void saveToXml(@NonNull XmlSerializer out, boolean forBackup) argument
H A DShortcutService.java618 static void writeTagValue(XmlSerializer out, String tag, String value) throws IOException { argument
621 out.startTag(null, tag);
622 out.attribute(null, ATTR_VALUE, value);
623 out.endTag(null, tag);
626 static void writeTagValue(XmlSerializer out, String tag, long value) throws IOException { argument
627 writeTagValue(out, tag, Long.toString(value));
630 static void writeTagValue(XmlSerializer out, String tag, ComponentName name) throws IOException { argument
632 writeTagValue(out, tag, name.flattenToString());
635 static void writeTagExtra(XmlSerializer out, String tag, PersistableBundle bundle) argument
639 out
644 writeAttr(XmlSerializer out, String name, String value) argument
650 writeAttr(XmlSerializer out, String name, long value) argument
654 writeAttr(XmlSerializer out, String name, boolean value) argument
660 writeAttr(XmlSerializer out, String name, ComponentName comp) argument
665 writeAttr(XmlSerializer out, String name, Intent intent) argument
2331 onShellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err, String[] args, ResultReceiver resultReceiver) argument
[all...]
H A DShortcutUser.java233 public void saveToXml(ShortcutService s, XmlSerializer out, boolean forBackup) argument
235 out.startTag(null, TAG_ROOT);
237 ShortcutService.writeAttr(out, ATTR_KNOWN_LOCALE_CHANGE_SEQUENCE_NUMBER,
240 ShortcutService.writeTagValue(out, TAG_LAUNCHER,
247 saveShortcutPackageItem(s, out, mLaunchers.valueAt(i), forBackup);
253 saveShortcutPackageItem(s, out, mPackages.valueAt(i), forBackup);
257 out.endTag(null, TAG_ROOT);
260 private void saveShortcutPackageItem(ShortcutService s, XmlSerializer out, argument
270 spi.saveToXml(out, forBackup);
H A DUserManagerService.java461 // Prune out any partially created, partially removed and ephemeral users.
1327 // calling listeners out-of-order, thus "LR".
3064 public void onShellCommand(FileDescriptor in, FileDescriptor out, argument
3066 (new Shell()).exec(this, in, out, err, args, resultReceiver);
/frameworks/base/services/core/java/com/android/server/statusbar/
H A DStatusBarManagerService.java72 // encompasses lights-out mode and other flags defined on View
836 public void onShellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err, argument
839 this, in, out, err, args, resultReceiver);
/frameworks/base/services/core/java/com/android/server/wallpaper/
H A DWallpaperManagerService.java433 Slog.v(TAG, " out: w=" + finalCrop.getWidth()
1743 XmlSerializer out = new FastXmlSerializer();
1746 out.setOutput(stream, StandardCharsets.UTF_8.name());
1747 out.startDocument(null, true);
1753 writeWallpaperAttributes(out, "wp", wallpaper);
1757 writeWallpaperAttributes(out, "kwp", wallpaper);
1760 out.endDocument();
1772 private void writeWallpaperAttributes(XmlSerializer out, String tag, WallpaperData wallpaper) argument
1774 out.startTag(null, tag);
1775 out
[all...]
/frameworks/base/services/core/java/com/android/server/webkit/
H A DWebViewUpdateService.java73 // the package that is being replaced we early-out here so that we don't
142 public void onShellCommand(FileDescriptor in, FileDescriptor out, argument
145 this, in, out, err, args, resultReceiver);
/frameworks/base/services/core/java/com/android/server/wm/
H A DDisplayContent.java215 void getLogicalDisplayRect(Rect out) { argument
226 out.set(left, top, left + width, top + height);
229 void getContentRect(Rect out) { argument
230 out.set(mContentRect);
H A DTask.java278 void getTempInsetBounds(Rect out) { argument
279 out.set(mTempInsetBounds);
429 void getBounds(Rect out) { argument
433 out.set(mBounds);
439 mStack.getDisplayContent().getLogicalDisplayRect(out);
451 * @param out Rect containing the max visible bounds.
454 boolean getMaxVisibleBounds(Rect out) { argument
467 out.set(win.mVisibleFrame);
471 if (win.mVisibleFrame.left < out.left) {
472 out
489 getDimBounds(Rect out) argument
[all...]
H A DTaskPositioner.java532 public void getDimBounds(Rect out) { argument
H A DTaskStack.java309 void getRawBounds(Rect out) { argument
310 out.set(mBounds);
324 public void getBounds(Rect out) { argument
331 out.set(mAdjustedBounds);
333 out.set(mBounds);
341 mDisplayContent.getLogicalDisplayRect(out);
346 public void getDimBounds(Rect out) { argument
347 getBounds(out);
558 // We force windows out of SCALING_MODE_FREEZE
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java693 void writeToXml(XmlSerializer out) argument
695 out.startTag(null, TAG_POLICIES);
696 info.writePoliciesToXml(out);
697 out.endTag(null, TAG_POLICIES);
699 out.startTag(null, TAG_PASSWORD_QUALITY);
700 out.attribute(null, ATTR_VALUE, Integer.toString(passwordQuality));
701 out.endTag(null, TAG_PASSWORD_QUALITY);
703 out.startTag(null, TAG_MIN_PASSWORD_LENGTH);
704 out.attribute(null, ATTR_VALUE, Integer.toString(minimumPasswordLength));
705 out
899 writePackageListToXml(XmlSerializer out, String outerTag, List<String> packageList) argument
[all...]
H A DOwners.java504 final XmlSerializer out = new FastXmlSerializer();
505 out.setOutput(outputStream, StandardCharsets.UTF_8.name());
508 out.startDocument(null, true);
509 out.startTag(null, TAG_ROOT);
512 writeInner(out);
515 out.endTag(null, TAG_ROOT);
516 out.endDocument();
517 out.flush();
582 abstract void writeInner(XmlSerializer out) throws IOException; argument
599 void writeInner(XmlSerializer out) throw argument
663 writeInner(XmlSerializer out) argument
716 writeToXml(XmlSerializer out, String tag) argument
[all...]

Completed in 929 milliseconds

1234567891011>>