Searched defs:out (Results 151 - 175 of 520) sorted by path

1234567891011>>

/frameworks/base/core/java/android/net/metrics/
H A DNetworkEvent.java56 public void writeToParcel(Parcel out, int flags) { argument
57 out.writeInt(netId);
58 out.writeInt(eventType);
59 out.writeLong(durationMs);
H A DValidationProbeEvent.java59 public void writeToParcel(Parcel out, int flags) { argument
60 out.writeInt(netId);
61 out.writeLong(durationMs);
62 out.writeInt(probeType);
63 out.writeInt(returnCode);
/frameworks/base/core/java/android/nfc/
H A DTag.java390 /*package*/ static void writeBytesWithNull(Parcel out, byte[] b) { argument
392 out.writeInt(-1);
395 out.writeInt(b.length);
396 out.writeByteArray(b);
/frameworks/base/core/java/android/nfc/cardemulation/
H A DAidGroup.java104 StringBuilder out = new StringBuilder("Category: " + category +
107 out.append(aid);
108 out.append(", ");
110 return out.toString();
188 public void writeAsXml(XmlSerializer out) throws IOException { argument
189 out.startTag(null, "aid-group");
190 out.attribute(null, "category", category);
192 out.startTag(null, "aid");
193 out.attribute(null, "value", aid);
194 out
[all...]
/frameworks/base/core/java/android/os/
H A DBatteryStats.java182 * Old version, we hit 9 and ran out of room, need to remove.
462 * Time this uid has any process with a started out bound foreground service, but
553 * the sensor HAL, and therefore out of our control
717 private void appendHex(long val, int topOffset, StringBuilder out) { argument
727 out.append((char)('0' + digit));
729 out.append((char)('a' + digit - 10));
734 public void encodeEntryAt(int index, StringBuilder out) { argument
744 case Display.STATE_OFF: out.append('f'); break;
745 case Display.STATE_ON: out.append('o'); break;
746 case Display.STATE_DOZE: out
965 writeToParcel(Parcel out) argument
1088 writeToParcel(Parcel out) argument
1635 getNextHistoryLocked(HistoryItem out) argument
1641 getNextOldHistoryLocked(HistoryItem out) argument
2430 writeToParcelWithoutUids(Parcel out, int flags) argument
2432 formatTimeRaw(StringBuilder out, long seconds) argument
[all...]
H A DBinder.java361 ParcelFileDescriptor out = data.readFileDescriptor();
366 if (out != null) {
368 out.getFileDescriptor(),
369 err != null ? err.getFileDescriptor() : out.getFileDescriptor(),
374 IoUtils.closeQuietly(out);
459 * @param out The raw file descriptor that normal command messages should be written to.
466 public void shellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err, argument
468 onShellCommand(in, out, err, args, resultReceiver);
479 public void onShellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err, argument
481 FileOutputStream fout = new FileOutputStream(err != null ? err : out);
652 shellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err, String[] args, ResultReceiver resultReceiver) argument
[all...]
H A DCpuUsageInfo.java72 public void writeToParcel(Parcel out, int flags) { argument
73 out.writeLong(mActive);
74 out.writeLong(mTotal);
H A DDropBoxManager.java243 public void writeToParcel(Parcel out, int flags) { argument
244 out.writeString(mTag);
245 out.writeLong(mTimeMillis);
247 out.writeInt(mFlags & ~HAS_BYTE_ARRAY); // Clear bit just to be safe
248 mFileDescriptor.writeToParcel(out, flags);
250 out.writeInt(mFlags | HAS_BYTE_ARRAY);
251 out.writeByteArray(mData);
H A DIBinder.java70 * <p>When working with remote objects, you often want to find out when they
220 * @param out The raw file descriptor that normal command messages should be written to.
226 public void shellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err, argument
H A DMessenger.java94 public void writeToParcel(Parcel out, int flags) { argument
95 out.writeStrongBinder(mTarget.asBinder());
116 * @param out Where to write the Messenger.
119 Parcel out) {
120 out.writeStrongBinder(messenger != null ? messenger.mTarget.asBinder()
118 writeMessengerOrNullToParcel(Messenger messenger, Parcel out) argument
H A DParcelFileDescriptor.java961 public void writeToParcel(Parcel out, int flags) { argument
964 mWrapped.writeToParcel(out, flags);
970 out.writeInt(1);
971 out.writeFileDescriptor(mFd);
972 out.writeFileDescriptor(mCommFd);
974 out.writeInt(0);
975 out.writeFileDescriptor(mFd);
H A DPersistableBundle.java205 public void writeUnknownObject(Object v, String name, XmlSerializer out) argument
208 out.startTag(null, TAG_PERSISTABLEMAP);
209 out.attribute(null, "name", name);
210 ((PersistableBundle) v).saveToXml(out);
211 out.endTag(null, TAG_PERSISTABLEMAP);
218 public void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException { argument
220 XmlUtils.writeMapXml(mMap, out, this);
H A DPooledStringWriter.java51 public PooledStringWriter(Parcel out) { argument
52 mOut = out;
54 mStart = out.dataPosition();
55 out.writeInt(0); // reserve space for final pool size.
H A DResultReceiver.java113 public void writeToParcel(Parcel out, int flags) { argument
118 out.writeStrongBinder(mReceiver.asBinder());
H A DShellCommand.java57 public void init(Binder target, FileDescriptor in, FileDescriptor out, FileDescriptor err, argument
61 mOut = out;
76 public int exec(Binder target, FileDescriptor in, FileDescriptor out, FileDescriptor err, argument
87 init(target, in, out, err, args, start);
H A DUserHandle.java177 * Returns the app id (or base uid) for a given uid, stripping out the user id from it.
216 * Generate a text representation of the uid, breaking out its individual
241 * Generate a text representation of the uid, breaking out its individual
252 * Generate a text representation of the uid, breaking out its individual
365 public void writeToParcel(Parcel out, int flags) { argument
366 out.writeInt(mHandle);
374 * @param out The Parcel in which the UserHandle will be placed.
378 public static void writeToParcel(UserHandle h, Parcel out) { argument
380 h.writeToParcel(out, 0);
382 out
[all...]
/frameworks/base/core/java/android/os/health/
H A DHealthStatsParceler.java65 public void writeToParcel(Parcel out, int flags) { argument
68 mWriter.flattenToParcel(out);
H A DHealthStatsWriter.java163 public void flattenToParcel(Parcel out) { argument
167 out.writeString(mConstants.getDataType());
170 out.writeInt(countBooleanArray(mTimerFields));
174 out.writeInt(keys[i]);
175 out.writeInt(mTimerCounts[i]);
176 out.writeLong(mTimerTimes[i]);
181 out.writeInt(countBooleanArray(mMeasurementFields));
185 out.writeInt(keys[i]);
186 out.writeLong(mMeasurementValues[i]);
191 out
252 writeHealthStatsWriterMap(Parcel out, ArrayMap<String,HealthStatsWriter> map) argument
265 writeParcelableMap(Parcel out, ArrayMap<String,T> map) argument
278 writeLongsMap(Parcel out, ArrayMap<String,Long> map) argument
[all...]
H A DTimerStat.java84 public void writeToParcel(Parcel out, int flags) { argument
85 out.writeInt(mCount);
86 out.writeLong(mTime);
/frameworks/base/core/java/android/security/
H A DKeystoreArguments.java53 public void writeToParcel(Parcel out, int flags) { argument
55 out.writeInt(0);
57 out.writeInt(args.length);
59 out.writeByteArray(arg);
/frameworks/base/core/java/android/security/keymaster/
H A DExportResult.java52 public void writeToParcel(Parcel out, int flags) { argument
53 out.writeInt(resultCode);
54 out.writeByteArray(exportData);
H A DKeyCharacteristics.java59 public void writeToParcel(Parcel out, int flags) { argument
60 swEnforced.writeToParcel(out, flags);
61 hwEnforced.writeToParcel(out, flags);
H A DKeymasterArgument.java73 public abstract void writeValue(Parcel out); argument
81 public void writeToParcel(Parcel out, int flags) { argument
82 out.writeInt(tag);
83 writeValue(out);
H A DKeymasterArguments.java147 throw new IllegalArgumentException("Int tag value out of range: " + value);
205 throw new IllegalArgumentException("Long tag value out of range: " + value);
293 throw new IllegalArgumentException("Date tag value out of range: " + value);
357 public void writeToParcel(Parcel out, int flags) { argument
358 out.writeTypedList(mArguments);
H A DKeymasterBlob.java52 public void writeToParcel(Parcel out, int flags) { argument
53 out.writeByteArray(blob);

Completed in 8177 milliseconds

1234567891011>>