Searched defs:in (Results 1 - 25 of 354) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/content/
H A DContentInsertHandler.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 * @param in InputStream
38 public void insert(ContentResolver contentResolver, InputStream in) argument
44 * @param in input string
47 public void insert(ContentResolver contentResolver, String in) argument
/frameworks/base/core/java/android/gesture/
H A DGesturePoint.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 static GesturePoint deserialize(DataInputStream in) throws IOException { argument
40 final float x = in.readFloat();
41 final float y = in.readFloat();
43 final long timeStamp = in.readLong();
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DDurable.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 public void read(DataInputStream in) throws IOException; argument
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapFolderListing.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 BluetoothMapFolderListing(InputStream in) { argument
37 parse(in);
40 public void parse(InputStream in) { argument
44 xpp.setInput(in, "utf-8");
H A DBluetoothMapMessagesListing.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 public BluetoothMapMessagesListing(InputStream in) { argument
39 parse(in);
42 public void parse(InputStream in) { argument
46 xpp.setInput(in, "utf-8");
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapVcardListing.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 BluetoothPbapVcardListing(InputStream in) throws IOException { argument
36 parse(in);
39 private void parse(InputStream in) throws IOException { argument
43 parser.setInput(in, "UTF-8");
/frameworks/support/v4/honeycomb_mr2/android/support/v4/os/
H A DParcelableCompatCreatorCallbacks.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 * @param in The Parcel to read the object's data from.
34 * @param loader The ClassLoader that this object is being created in.
37 public T createFromParcel(Parcel in, ClassLoader loader); argument
/frameworks/av/services/audioflinger/
H A DAudioResamplerFirOps.h5 * 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 int32_t mulRL(int left, int32_t in, uint32_t vRL) argument
53 asm( "smultb %[out], %[in], %[vRL] \n"
55 : [in]"%r"(in), [vRL]"r"(vRL)
58 asm( "smultt %[out], %[in], %[vRL] \n"
60 : [in]"%r"(in), [vRL]"r"(vRL)
66 return static_cast<int32_t>((static_cast<int64_t>(in) *
71 mulAdd(int16_t in, int16_t v, int32_t a) argument
86 mulAdd(int16_t in, int32_t v, int32_t a) argument
101 mulAdd(int32_t in, int32_t v, int32_t a) argument
[all...]
/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();
/frameworks/base/core/java/android/app/backup/
H A DRestoreSet.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
75 public RestoreSet createFromParcel(Parcel in) {
76 return new RestoreSet(in);
84 private RestoreSet(Parcel in) { argument
85 name = in.readString();
86 device = in.readString();
87 token = in.readLong();
/frameworks/base/core/java/android/content/pm/
H A DKeySet.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 * Represents a {@code KeySet} that has been declared in the AndroidManifest.xml
72 * @param in The parcel containing the KeySet
89 private static KeySet readFromParcel(Parcel in) { argument
90 IBinder token = in.readStrongBinder();
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");
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);
/frameworks/base/core/java/android/database/
H A DBulkCursorDescriptor.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 BulkCursorDescriptor createFromParcel(Parcel in) {
34 d.readFromParcel(in);
69 public void readFromParcel(Parcel in) { argument
70 cursor = BulkCursorNative.asInterface(in.readStrongBinder());
71 columnNames = in.readStringArray();
72 wantsAllOnMoveCalls = in.readInt() != 0;
73 count = in.readInt();
74 if (in
[all...]
/frameworks/base/core/java/android/hardware/
H A DCameraInfo.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 void readFromParcel(Parcel in) { argument
44 info.facing = in.readInt();
45 info.orientation = in.readInt();
51 public CameraInfo createFromParcel(Parcel in) {
53 info.readFromParcel(in);
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DLongParcelable.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 public LongParcelable createFromParcel(Parcel in) {
39 return new LongParcelable(in);
48 private LongParcelable(Parcel in) { argument
49 readFromParcel(in);
62 public void readFromParcel(Parcel in) { argument
63 number = in.readLong();
/frameworks/base/core/java/android/net/
H A DNetworkKey.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 // itself. However, because no such cross-type identifier currently exists in the Android framework,
63 private NetworkKey(Parcel in) { argument
64 type = in.readInt();
67 wifiKey = WifiKey.CREATOR.createFromParcel(in);
112 // Don't throw an exception here in case someone is logging this object in a catch
121 public NetworkKey createFromParcel(Parcel in) {
122 return new NetworkKey(in);
[all...]
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
47 public NetworkState(Parcel in) { argument
48 networkInfo = in.readParcelable(null);
49 linkProperties = in.readParcelable(null);
50 networkCapabilities = in.readParcelable(null);
51 network = in.readParcelable(null);
52 subscriberId = in.readString();
53 networkId = in.readString();
73 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
53 * indicates to the system not to request scores for this network in the future, although
61 private ScoredNetwork(Parcel in) { argument
62 networkKey = NetworkKey.CREATOR.createFromParcel(in);
63 if (in.readByte() == 1) {
64 rssiCurve = RssiCurve.CREATOR.createFromParcel(in);
110 public ScoredNetwork createFromParcel(Parcel in) {
111 return new ScoredNetwork(in);
/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/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/services/core/java/com/android/server/net/
H A DNetworkIdentitySet.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
41 public NetworkIdentitySet(DataInputStream in) throws IOException { argument
42 final int version = in.readInt();
43 final int size = in.readInt();
46 final int ignored = in.readInt();
48 final int type = in.readInt();
49 final int subType = in.readInt();
50 final String subscriberId = readOptionalString(in);
53 networkId = readOptionalString(in);
89 readOptionalString(DataInputStream in) argument
[all...]
/frameworks/base/telephony/java/com/android/ims/
H A DImsSsInfo.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
41 public ImsSsInfo(Parcel in) { argument
42 readFromParcel(in);
60 private void readFromParcel(Parcel in) { argument
61 mStatus = in.readInt();
67 public ImsSsInfo createFromParcel(Parcel in) {
68 return new ImsSsInfo(in);
/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);

Completed in 607 milliseconds

1234567891011>>