Searched defs:out (Results 126 - 150 of 520) sorted by path

1234567891011>>

/frameworks/base/core/java/android/hardware/camera2/utils/
H A DTypeReference.java369 private static void toString(Type type, StringBuilder out) { argument
374 out.append(((TypeVariable<?>)type).getName());
378 out.append(klass.getName());
379 toString(klass.getTypeParameters(), out);
384 out.append(((Class<?>)p.getRawType()).getName());
385 toString(p.getActualTypeArguments(), out);
389 toString(gat.getGenericComponentType(), out);
390 out.append("[]");
393 out.append(type.toString());
397 private static void toString(Type[] types, StringBuilder out) { argument
[all...]
/frameworks/base/core/java/android/hardware/fingerprint/
H A DFingerprint.java76 public void writeToParcel(Parcel out, int flags) { argument
77 out.writeString(mName.toString());
78 out.writeInt(mGroupId);
79 out.writeInt(mFingerId);
80 out.writeLong(mDeviceId);
/frameworks/base/core/java/android/hardware/location/
H A DContextHubInfo.java391 public void writeToParcel(Parcel out, int flags) { argument
392 out.writeInt(mId);
393 out.writeString(mName);
394 out.writeString(mVendor);
395 out.writeString(mToolchain);
396 out.writeInt(mPlatformVersion);
397 out.writeInt(mToolchainVersion);
398 out.writeInt(mStaticSwVersion);
399 out.writeFloat(mPeakMips);
400 out
[all...]
H A DContextHubMessage.java117 public void writeToParcel(Parcel out, int flags) { argument
118 out.writeInt(mType);
119 out.writeInt(mVersion);
120 out.writeInt(mData.length);
121 out.writeByteArray(mData);
H A DNanoApp.java306 public void writeToParcel(Parcel out, int flags) { argument
314 out.writeString(mPublisher);
315 out.writeString(mName);
316 out.writeInt(mAppId);
317 out.writeInt(mAppVersion);
318 out.writeInt(mNeededReadMemBytes);
319 out.writeInt(mNeededWriteMemBytes);
320 out.writeInt(mNeededExecMemBytes);
322 out.writeInt(mNeededSensors.length);
323 out
[all...]
H A DNanoAppFilter.java92 public void writeToParcel(Parcel out, int flags) { argument
94 out.writeLong(mAppId);
95 out.writeInt(mAppVersion);
96 out.writeInt(mVersionRestrictionMask);
97 out.writeLong(mAppIdVendorMask);
H A DNanoAppInstanceInfo.java304 public void writeToParcel(Parcel out, int flags) { argument
305 out.writeString(mPublisher);
306 out.writeString(mName);
307 out.writeLong(mAppId);
308 out.writeInt(mAppVersion);
309 out.writeInt(mContexthubId);
310 out.writeInt(mNeededReadMemBytes);
311 out.writeInt(mNeededWriteMemBytes);
312 out.writeInt(mNeededExecMemBytes);
315 out
[all...]
/frameworks/base/core/java/android/hardware/radio/
H A DRadioMetadata.java178 public void writeToParcel(Parcel out, int flags) { argument
179 out.writeLong(mUtcEpochSeconds);
180 out.writeInt(mTimezoneOffsetMinutes);
/frameworks/base/core/java/android/hardware/usb/
H A DUsbRequest.java136 boolean out = (mEndpoint.getDirection() == UsbConstants.USB_DIR_OUT);
139 result = native_queue_direct(buffer, length, out);
141 result = native_queue_array(buffer.array(), length, out);
154 boolean out = (mEndpoint.getDirection() == UsbConstants.USB_DIR_OUT);
159 bytesRead = native_dequeue_array(mBuffer.array(), mLength, out);
180 private native boolean native_queue_array(byte[] buffer, int length, boolean out); argument
181 private native int native_dequeue_array(byte[] buffer, int length, boolean out); argument
182 private native boolean native_queue_direct(ByteBuffer buffer, int length, boolean out); argument
/frameworks/base/core/java/android/net/
H A DCaptivePortal.java50 public void writeToParcel(Parcel out, int flags) { argument
51 out.writeStrongBinder(mBinder);
H A DNetworkKey.java36 // etc.) so that clients can pull out these details depending on the type of network.
80 public void writeToParcel(Parcel out, int flags) { argument
81 out.writeInt(type);
84 wifiKey.writeToParcel(out, flags);
H A DNetworkMisc.java77 public void writeToParcel(Parcel out, int flags) { argument
78 out.writeInt(allowBypass ? 1 : 0);
79 out.writeInt(explicitlySelected ? 1 : 0);
80 out.writeInt(acceptUnvalidated ? 1 : 0);
81 out.writeString(subscriberId);
H A DNetworkQuotaInfo.java66 public void writeToParcel(Parcel out, int flags) { argument
67 out.writeLong(mEstimatedBytes);
68 out.writeLong(mSoftLimitBytes);
69 out.writeLong(mHardLimitBytes);
H A DNetworkState.java63 public void writeToParcel(Parcel out, int flags) { argument
64 out.writeParcelable(networkInfo, flags);
65 out.writeParcelable(linkProperties, flags);
66 out.writeParcelable(networkCapabilities, flags);
67 out.writeParcelable(network, flags);
68 out.writeString(subscriberId);
69 out.writeString(networkId);
H A DNetworkStatsHistory.java136 public void writeToParcel(Parcel out, int flags) { argument
137 out.writeLong(bucketDuration);
138 writeLongArray(out, bucketStart, bucketCount);
139 writeLongArray(out, activeTime, bucketCount);
140 writeLongArray(out, rxBytes, bucketCount);
141 writeLongArray(out, rxPackets, bucketCount);
142 writeLongArray(out, txBytes, bucketCount);
143 writeLongArray(out, txPackets, bucketCount);
144 writeLongArray(out, operations, bucketCount);
145 out
190 writeToStream(DataOutputStream out) argument
701 writeVarLong(DataOutputStream out, long value) argument
724 writeVarLongArray(DataOutputStream out, long[] values, int size) argument
755 writeLongArray(Parcel out, long[] values, int size) argument
[all...]
H A DRssiCurve.java119 public void writeToParcel(Parcel out, int flags) { argument
120 out.writeInt(start);
121 out.writeInt(bucketWidth);
122 out.writeInt(rssiBuckets.length);
123 out.writeByteArray(rssiBuckets);
124 out.writeInt(activeNetworkRssiBoost);
H A DScoredNetwork.java64 * the scorer may choose to issue an out-of-band update at any time.
79 * the scorer may choose to issue an out-of-band update at any time.
105 public void writeToParcel(Parcel out, int flags) { argument
106 networkKey.writeToParcel(out, flags);
108 out.writeByte((byte) 1);
109 rssiCurve.writeToParcel(out, flags);
111 out.writeByte((byte) 0);
113 out.writeByte((byte) (meteredHint ? 1 : 0));
H A DUri.java700 * Parses an authority out of the given URI string.
737 * Parses a path out of this given URI string.
1091 // Parse out user info and then port.
1790 * @param out parcel to write to
1793 public static void writeToParcel(Parcel out, Uri uri) { argument
1795 out.writeInt(NULL_TYPE_ID);
1797 uri.writeToParcel(out, 0);
H A DWifiKey.java88 public void writeToParcel(Parcel out, int flags) { argument
89 out.writeString(ssid);
90 out.writeString(bssid);
/frameworks/base/core/java/android/net/metrics/
H A DDefaultNetworkEvent.java57 public void writeToParcel(Parcel out, int flags) { argument
58 out.writeInt(netId);
59 out.writeIntArray(transportTypes);
60 out.writeInt(prevNetId);
61 out.writeByte(prevIPv4 ? (byte) 1 : (byte) 0);
62 out.writeByte(prevIPv6 ? (byte) 1 : (byte) 0);
H A DDhcpClientEvent.java41 public void writeToParcel(Parcel out, int flags) { argument
42 out.writeString(ifName);
43 out.writeString(msg);
H A DDhcpErrorEvent.java74 public void writeToParcel(Parcel out, int flags) { argument
75 out.writeString(ifName);
76 out.writeInt(errorCode);
H A DDnsEvent.java55 public void writeToParcel(Parcel out, int flags) { argument
56 out.writeInt(netId);
57 out.writeByteArray(eventTypes);
58 out.writeByteArray(returnCodes);
59 out.writeIntArray(latenciesMs);
H A DIpManagerEvent.java52 public void writeToParcel(Parcel out, int flags) { argument
53 out.writeString(ifName);
54 out.writeInt(eventType);
55 out.writeLong(durationMs);
H A DIpReachabilityEvent.java54 public void writeToParcel(Parcel out, int flags) { argument
55 out.writeString(ifName);
56 out.writeInt(eventType);

Completed in 1307 milliseconds

1234567891011>>