Searched refs:in (Results 226 - 250 of 723) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/content/pm/
H A DMacAuthenticatedInputStream.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
35 public MacAuthenticatedInputStream(InputStream in, Mac mac) { argument
36 super(in);
H A DLimitedLengthInputStream.java22 * Current offset in the stream.
27 * @param in underlying stream to wrap
32 public LimitedLengthInputStream(InputStream in, long offset, long length) throws IOException { argument
33 super(in);
35 if (in == null) {
36 throw new IOException("in == null");
/frameworks/base/core/java/android/ddm/
H A DDdmHandleExit.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 * Register for the messages we're interested in.
67 ByteBuffer in = wrapChunk(request);
69 int statusCode = in.getInt();
H A DDdmHandleProfiling.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
45 * Register for the messages we're interested in.
95 ByteBuffer in = wrapChunk(request);
97 int bufferSize = in.getInt();
98 int flags = in.getInt();
99 int len = in.getInt();
100 String fileName = getString(in, len);
137 ByteBuffer in = wrapChunk(request);
139 int bufferSize = in
[all...]
/frameworks/base/core/java/android/net/
H A DINetworkStatsService.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
31 long getNetworkTotalBytes(in NetworkTemplate template, long start, long end);
41 /** Mark given UID as being in foreground for stats purposes. */
H A DLinkAddress.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
65 * in {@code obj}. Two addresses are equal if their InetAddress and prefixLength
131 public LinkAddress createFromParcel(Parcel in) {
134 if (in.readByte() == 1) {
136 address = InetAddress.getByAddress(in.createByteArray());
137 prefixLength = in.readInt();
H A DNetworkInfo.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
67 /** Awaiting response from DHCP server in order to assign IP address information. */
88 * This is the map described in the Javadoc comment above. The positions
170 * info in this {@code NetworkInfo} pertains.
222 * Indicates whether network connectivity exists or is in the process
227 * @return {@code true} if network connectivity exists or is in the process
307 * @return {@code true} if roaming is in effect, {@code false} otherwise.
443 public NetworkInfo createFromParcel(Parcel in) {
444 int netType = in
[all...]
/frameworks/base/core/java/android/view/
H A DAbsSavedState.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
77 public AbsSavedState createFromParcel(Parcel in) {
78 Parcelable superState = in.readParcelable(null);
H A DInputChannel.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
25 * a window in another process. It is Parcelable so that it can be sent
115 * as an out parameter in a binder call.
130 public void readFromParcel(Parcel in) { argument
131 if (in == null) {
132 throw new IllegalArgumentException("in must not be null");
135 nativeReadFromParcel(in);
/frameworks/base/core/java/com/android/internal/view/
H A DIInputContextCallback.aidl5 * 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 void setExtractedText(in ExtractedText extractedText, int seq);
/frameworks/base/core/java/com/android/internal/widget/
H A DIRemoteViewsFactory.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
26 oneway void onDestroy(in Intent intent);
/frameworks/base/services/java/com/android/server/net/
H A DNetworkStatsCollection.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
100 * Return first atomic bucket in this collection, which is more conservative
132 * Combine all {@link NetworkStatsHistory} in this collection which match
141 * Combine all {@link NetworkStatsHistory} in this collection which match
160 * Summarize all {@link NetworkStatsHistory} in this collection which match
224 * Record all {@link NetworkStatsHistory} contained in the given collection
255 public void read(InputStream in) throws IOException { argument
256 read(new DataInputStream(in));
259 public void read(DataInputStream in) throw argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityCdma.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 * Longitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0.
39 * It is represented in units of 0.25 seconds and ranges from -2592000
45 * Latitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0.
46 * It is represented in units of 0.25 seconds and ranges from -1296000
118 * specified in 3GPP2 C.S0005-A v6.0. It is represented in units
129 * specified in 3GPP2 C.S0005-A v6.0. It is represented in unit
194 CellIdentityCdma(Parcel in) argument
[all...]
H A DCellIdentityLte.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
174 private CellIdentityLte(Parcel in) { argument
175 mMcc = in.readInt();
176 mMnc = in.readInt();
177 mCi = in.readInt();
178 mPci = in.readInt();
179 mTac = in.readInt();
188 public CellIdentityLte createFromParcel(Parcel in) {
189 return new CellIdentityLte(in);
[all...]
H A DNeighboringCellInfo.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
52 * CID in 16 bits format in GSM. Return UNKNOWN_CID in UMTS and CMDA.
56 * LAC in 16 bits format in GSM. Return UNKNOWN_CID in UMTS and CMDA.
60 * Primary Scrambling Code in 9 bits format in UMT
162 NeighboringCellInfo(Parcel in) argument
[all...]
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DTestArgs.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
56 public TestArgs createFromParcel(Parcel in) {
57 return new TestArgs(in);
/frameworks/base/tests/HugeBackup/
H A DAndroid.mk6 # Only compile source java files in this apk.
/frameworks/base/tests/backup/
H A Dtest_backup.sh6 # you may not use this file except in compliance with the License.
11 # Unless required by applicable law or agreed to in writing, software
21 # figure out what packages are participating in backup
26 # wipe data for the package participating in backup
27 for pkg in $b_pkgs; do
/frameworks/base/media/java/android/media/
H A DAudioRoutesInfo.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 public AudioRoutesInfo createFromParcel(Parcel in) {
64 return new AudioRoutesInfo(in);
/frameworks/base/policy/
H A DAndroid.mk13 # additionally, build unit tests in a separate .apk
/frameworks/base/core/java/android/accessibilityservice/
H A DIAccessibilityServiceConnection.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
31 void setServiceInfo(in AccessibilityServiceInfo info);
55 * The match is case insensitive containment. The search is performed in the window
77 * is performed in the window whose id is specified and starts from the node whose
99 * focus type. The search is performed in the window whose id is specified and starts from
120 * focus in the given direction. The search is performed in the window whose id is
130 * @param direction The direction in which to search for focusable.
158 int action, in Bundl
[all...]
/frameworks/base/core/java/android/hardware/display/
H A DWifiDisplay.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
40 public WifiDisplay createFromParcel(Parcel in) {
41 String deviceAddress = in.readString();
42 String deviceName = in.readString();
43 String deviceAlias = in.readString();
82 * The alias should be used in the UI whenever available. It is the value
91 * Gets the name to show in the UI.
/frameworks/compile/libbcc/runtime/test/Unit/
H A Dtest19 for ARCH in $ARCHS; do
24 for FILE in $(ls *.c); do
28 # prefer our implementation over the ones in libSystem.dylib
/frameworks/compile/linkloader/
H A DSConstruct5 # you may not use this file except in compliance with the License.
10 # Unless required by applicable law or agreed to in writing, software
60 if not mode in configs:
64 if not toolset in toolsets:
/frameworks/base/core/java/android/accounts/
H A DAccount.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 * Value type that represents an Account in the {@link AccountManager}. This object is
57 public Account(Parcel in) { argument
58 this.name = in.readString();
59 this.type = in.readString();

Completed in 248 milliseconds

1234567891011>>