Searched defs:in (Results 1 - 25 of 506) 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/core/java/android/os/
H A DPooledStringReader.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
21 * in conjunction with {@link android.os.PooledStringWriter}. This really needs
22 * to be pushed in to Parcel itself, but doing that is... complicated.
33 public PooledStringReader(Parcel in) { argument
34 mIn = in;
35 final int size = in.readInt();
/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterBlobArgument.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 KeymasterBlobArgument(int tag, Parcel in) { argument
41 blob = in.createByteArray();
H A DKeymasterBooleanArgument.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 KeymasterBooleanArgument(int tag, Parcel in) { argument
H A DKeymasterDateArgument.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 KeymasterDateArgument(int tag, Parcel in) { argument
41 date = new Date(in.readLong());
H A DKeymasterIntArgument.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 KeymasterIntArgument(int tag, Parcel in) { argument
43 value = in.readInt();
H A DKeymasterLongArgument.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 KeymasterLongArgument(int tag, Parcel in) { argument
41 value = 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/support/compat/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
52 int32_t mulRL(int left, int32_t in, uint32_t vRL) argument
57 asm( "smultb %[out], %[in], %[vRL] \n"
59 : [in]"%r"(in), [vRL]"r"(vRL)
62 asm( "smultt %[out], %[in], %[vRL] \n"
64 : [in]"%r"(in), [vRL]"r"(vRL)
70 return static_cast<int32_t>((static_cast<int64_t>(in) *
75 mulAdd(int16_t in, int16_t v, int32_t a) argument
90 mulAdd(int16_t in, int32_t v, int32_t a) argument
105 mulAdd(int32_t in, int32_t v, int32_t a) argument
[all...]
/frameworks/base/core/java/android/app/backup/
H A DBackupProgress.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 * Used in {@link BackupObserver#onUpdate(String, BackupProgress)}
33 * Expected size of data in full backup.
37 * Amount of backup data that is already saved in backup.
56 public BackupProgress createFromParcel(Parcel in) {
57 return new BackupProgress(in);
65 private BackupProgress(Parcel in) { argument
66 bytesExpected = in.readLong();
67 bytesTransferred = in
[all...]
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
74 public RestoreSet createFromParcel(Parcel in) {
75 return new RestoreSet(in);
83 private RestoreSet(Parcel in) { argument
84 name = in.readString();
85 device = in.readString();
86 token = in.readLong();
/frameworks/base/core/java/android/bluetooth/
H A DOobData.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
50 private OobData(Parcel in) { argument
51 securityManagerTk = in.createByteArray();
65 public OobData createFromParcel(Parcel in) {
66 return new OobData(in);
H A DSdpRecord.java4 * you may not use this file except in compliance with the License.
9 * Unless required by applicable law or agreed to in writing, software
40 public SdpRecord(Parcel in){ argument
41 this.mRawSize = in.readInt();
43 in.readByteArray(this.mRawData);
60 public SdpRecord createFromParcel(Parcel in) {
61 return new SdpRecord(in);
/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
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...]

Completed in 2950 milliseconds

1234567891011>>