Searched defs:in (Results 26 - 50 of 486) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/net/
H A DNetworkState.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
48 public NetworkState(Parcel in) { argument
49 networkInfo = in.readParcelable(null);
50 linkProperties = in.readParcelable(null);
51 networkCapabilities = in.readParcelable(null);
52 network = in.readParcelable(null);
53 subscriberId = in.readString();
54 networkId = in.readString();
74 public NetworkState createFromParcel(Parcel in) {
[all...]
H A DScoredNetwork.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
63 * indicates to the system not to request scores for this network in the future, although
78 * indicates to the system not to request scores for this network in the future, although
89 private ScoredNetwork(Parcel in) { argument
90 networkKey = NetworkKey.CREATOR.createFromParcel(in);
91 if (in.readByte() == 1) {
92 rssiCurve = RssiCurve.CREATOR.createFromParcel(in);
96 meteredHint = in.readByte() != 0;
142 public ScoredNetwork createFromParcel(Parcel in) {
[all...]
/frameworks/base/core/java/android/net/metrics/
H A DDhcpClientEvent.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
36 private DhcpClientEvent(Parcel in) { argument
37 this.ifName = in.readString();
38 this.msg = in.readString();
57 public DhcpClientEvent createFromParcel(Parcel in) {
58 return new DhcpClientEvent(in);
H A DDnsEvent.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
33 // are fewer than 255 errno values. So we store the result code in a byte as well.
47 private DnsEvent(Parcel in) { argument
48 this.netId = in.readInt();
49 this.eventTypes = in.createByteArray();
50 this.returnCodes = in.createByteArray();
51 this.latenciesMs = in.createIntArray();
73 public DnsEvent createFromParcel(Parcel in) {
74 return new DnsEvent(in);
[all...]
/frameworks/base/core/java/android/nfc/
H A DApduList.java30 public ApduList createFromParcel(Parcel in) {
31 return new ApduList(in);
40 private ApduList(Parcel in) { argument
41 int count = in.readInt();
45 int length = in.readInt();
47 in.readByteArray(cmd);
/frameworks/base/core/java/android/os/
H A DCpuUsageInfo.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
28 public CpuUsageInfo createFromParcel(Parcel in) {
29 return new CpuUsageInfo(in);
43 private CpuUsageInfo(Parcel in) { argument
44 readFromParcel(in);
48 * Gets the active time in milliseconds since the system last booted.
50 * @return Active time in milliseconds.
57 * Gets the total time in milliseconds that the CPU has been enabled since the system last
60 * @return Total time in millisecond
77 readFromParcel(Parcel in) argument
[all...]
/frameworks/base/core/java/android/os/health/
H A DHealthStatsParceler.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
32 * accessed in the same process as the writer.
34 * The HealthStatsWriter passed in the constructor is retained, so don't
44 public HealthStatsParceler createFromParcel(Parcel in) {
45 return new HealthStatsParceler(in);
57 public HealthStatsParceler(Parcel in) { argument
58 mHealthStats = new HealthStats(in);
/frameworks/base/core/java/android/security/
H A DKeystoreArguments.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
24 * This must be kept in sync with the deserialization code in system/security/keystore.
32 public KeystoreArguments createFromParcel(Parcel in) {
33 return new KeystoreArguments(in);
48 private KeystoreArguments(Parcel in) { argument
49 readFromParcel(in);
64 private void readFromParcel(Parcel in) { argument
65 int length = in
[all...]
/frameworks/base/core/java/android/security/keymaster/
H A DExportResult.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
32 public ExportResult createFromParcel(Parcel in) {
33 return new ExportResult(in);
41 protected ExportResult(Parcel in) { argument
42 resultCode = in.readInt();
43 exportData = in.createByteArray();
H A DKeymasterBlob.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
33 public KeymasterBlob createFromParcel(Parcel in) {
34 return new KeymasterBlob(in);
42 protected KeymasterBlob(Parcel in) { argument
43 blob = in.createByteArray();
H A DKeymasterCertificateChain.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
28 * Serialization code for this must be kept in sync with system/security/keystore
37 public KeymasterCertificateChain createFromParcel(Parcel in) {
38 return new KeymasterCertificateChain(in);
53 private KeymasterCertificateChain(Parcel in) { argument
54 readFromParcel(in);
73 public void readFromParcel(Parcel in) { argument
74 int length = in.readInt();
77 mCertificates.add(in
[all...]
H A DOperationResult.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
39 public OperationResult createFromParcel(Parcel in) {
40 return new OperationResult(in);
60 protected OperationResult(Parcel in) { argument
61 resultCode = in.readInt();
62 token = in.readStrongBinder();
63 operationHandle = in.readLong();
64 inputConsumed = in.readInt();
65 output = in
[all...]
/frameworks/base/core/java/android/util/
H A DBackupUtils.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
42 public static String readString(DataInputStream in) throws IOException { argument
43 return (in.readByte() == NOT_NULL) ? in.readUTF() : null;
/frameworks/base/core/java/android/view/
H A DAppTransitionAnimationSpec.java27 public AppTransitionAnimationSpec(Parcel in) { argument
28 taskId = in.readInt();
29 bitmap = in.readParcelable(null);
30 rect = in.readParcelable(null);
48 public AppTransitionAnimationSpec createFromParcel(Parcel in) {
49 return new AppTransitionAnimationSpec(in);
/frameworks/base/core/java/android/webkit/
H A DWebViewProviderInfo.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
43 public WebViewProviderInfo createFromParcel(Parcel in) {
44 return new WebViewProviderInfo(in);
52 private WebViewProviderInfo(Parcel in) { argument
53 packageName = in.readString();
54 description = in.readString();
55 availableByDefault = (in.readInt() > 0);
56 isFallback = (in.readInt() > 0);
57 signatures = in
[all...]
H A DWebViewProviderResponse.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
34 public WebViewProviderResponse createFromParcel(Parcel in) {
35 return new WebViewProviderResponse(in);
43 private WebViewProviderResponse(Parcel in) { argument
44 packageInfo = in.readTypedObject(PackageInfo.CREATOR);
45 status = in.readInt();
/frameworks/base/core/java/com/android/internal/content/
H A DReferrerIntent.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
38 ReferrerIntent(Parcel in) { argument
39 readFromParcel(in);
40 mReferrer = in.readString();
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DInMatcher.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
28 * A {@link Matcher} class for checking if value contained in a {@link Collection} or array.
62 description.appendText("in(").appendValue(mValues).appendText(")");
66 public static <T> Matcher<T> in(T... operand) { method in class:InMatcher
71 public static <T> Matcher<T> in(Collection<T> operand) { method in class:InMatcher
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DSOAPParser.java51 public SOAPParser(InputStream in) argument
56 XMLParser parser = new XMLParser(in);
59 in.close();
116 <xsd:documentation>When the mobile device receives this command, it launches its default browser to the URI contained in this element. The URI must use HTTPS as the protocol and must contain an FQDN.</xsd:documentation>
131 <xsd:documentation>The issuer name of an acceptable provider-issued certificate. The text of this element is formatted in accordance with the Issuer Name field in RFC-3280. This element is present only when acceptProviderCerts is true.</xsd:documentation>
149 <xsd:documentation>When this boolean is true, X509v3 certificates issued by providers identified in the providerIssuerName child element(s) are acceptable for mobile device authentication.</xsd:documentation>
157 <xsd:documentation>Command to mobile to upload the MO named in the moURN attribute to the SPP server.</xsd:documentation>
165 <xsd:documentation>Element to allow the addition of new commands in the future.</xsd:documentation>
174 <xsd:documentation>This command causes an management object in th
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DDcParamObject.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
30 public DcParamObject(Parcel in) { argument
31 readFromParcel(in);
42 private void readFromParcel(Parcel in) { argument
43 mSubId = in.readInt();
47 public DcParamObject createFromParcel(Parcel in) {
48 return new DcParamObject(in);
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
H A DMediaItem.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
33 private MediaItem(Parcel in) { argument
34 mBundle = in.readBundle();
65 public MediaItem createFromParcel(Parcel in) {
66 return new MediaItem(in);
/frameworks/base/wifi/java/android/net/wifi/
H A DRssiPacketCountInfo.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
43 private RssiPacketCountInfo(Parcel in) { argument
44 rssi = in.readInt();
45 txgood = in.readInt();
46 txbad = in.readInt();
47 rxgood = in.readInt();
66 public RssiPacketCountInfo createFromParcel(Parcel in) {
67 return new RssiPacketCountInfo(in);
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DIntFloat.java11 public IntFloat createFromParcel(Parcel in) {
12 return new IntFloat(in);
23 private IntFloat(Parcel in) { argument
24 readFromParcel(in);
36 public void readFromParcel(Parcel in) { argument
37 index = in.readInt();
38 value = in.readFloat();
H A DStringFloat.java12 public StringFloat createFromParcel(Parcel in) {
13 return new StringFloat(in);
29 private StringFloat(Parcel in) { argument
30 readFromParcel(in);
42 public void readFromParcel(Parcel in) { argument
43 key = in.readString();
44 value = in.readFloat();
H A DStringString.java12 public StringString createFromParcel(Parcel in) {
13 return new StringString(in);
24 private StringString(Parcel in) { argument
25 readFromParcel(in);
37 public void readFromParcel(Parcel in) { argument
38 key = in.readString();
39 value = in.readString();

Completed in 6527 milliseconds

1234567891011>>