Searched refs:in (Results 426 - 450 of 1327) sorted by relevance

<<11121314151617181920>>

/frameworks/support/v4/java/android/support/v4/app/
H A DINotificationSideChannel.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 notify(String packageName, int id, String tag, in Notification notification);
/frameworks/base/wifi/java/android/net/wifi/passpoint/
H A DWifiPasspointInfo.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
456 public WifiPasspointInfo createFromParcel(Parcel in) {
460 p.bssid = in.readString();
461 p.venueName = in.readString();
463 n = in.readInt();
468 auth.type = in.readInt();
469 auth.redirectUrl = in.readString();
474 n = in.readInt();
478 p.roamingConsortiumList.add(in
[all...]
/frameworks/base/media/java/android/media/
H A DMediaDescription.java61 private MediaDescription(Parcel in) { argument
62 mMediaId = in.readString();
63 mTitle = in.readCharSequence();
64 mSubtitle = in.readCharSequence();
65 mDescription = in.readCharSequence();
66 mIcon = in.readParcelable(null);
67 mIconUri = in.readParcelable(null);
68 mExtras = in.readBundle();
69 mMediaUri = in.readParcelable(null);
168 public MediaDescription createFromParcel(Parcel in) {
[all...]
/frameworks/base/services/core/java/com/android/server/net/
H A DIpConfigStore.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
151 loge("Failure in writing " + config + e);
173 DataInputStream in = null;
175 in = new DataInputStream(new BufferedInputStream(new FileInputStream(filePath)));
177 int version = in.readInt();
196 key = in.readUTF();
199 id = in.readInt();
201 ipAssignment = IpAssignment.valueOf(in.readUTF());
204 NetworkUtils.numericToInetAddress(in
[all...]
/frameworks/rs/cpp/
H A DScriptIntrinsics.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
82 void ScriptIntrinsicBlend::forEachClear(sp<Allocation> in, sp<Allocation> out) { argument
83 if (in->getType()->getElement()->isCompatible(mElement) == false ||
85 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "Invalid element in blend");
87 Script::forEach(0, in, out, nullptr, 0);
90 void ScriptIntrinsicBlend::forEachSrc(sp<Allocation> in, sp<Allocation> out) { argument
91 if (in->getType()->getElement()->isCompatible(mElement) == false ||
93 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "Invalid element in blend");
95 Script::forEach(1, in, ou
98 forEachDst(sp<Allocation> in, sp<Allocation> out) argument
106 forEachSrcOver(sp<Allocation> in, sp<Allocation> out) argument
114 forEachDstOver(sp<Allocation> in, sp<Allocation> out) argument
122 forEachSrcIn(sp<Allocation> in, sp<Allocation> out) argument
130 forEachDstIn(sp<Allocation> in, sp<Allocation> out) argument
138 forEachSrcOut(sp<Allocation> in, sp<Allocation> out) argument
146 forEachDstOut(sp<Allocation> in, sp<Allocation> out) argument
154 forEachSrcAtop(sp<Allocation> in, sp<Allocation> out) argument
162 forEachDstAtop(sp<Allocation> in, sp<Allocation> out) argument
170 forEachXor(sp<Allocation> in, sp<Allocation> out) argument
179 forEachMultiply(sp<Allocation> in, sp<Allocation> out) argument
188 forEachAdd(sp<Allocation> in, sp<Allocation> out) argument
196 forEachSubtract(sp<Allocation> in, sp<Allocation> out) argument
221 setInput(sp<Allocation> in) argument
258 forEach(sp<Allocation> in, sp<Allocation> out) argument
361 setInput(sp<Allocation> in) argument
402 setInput(sp<Allocation> in) argument
623 setInput(sp<Allocation> in) argument
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_imdct_synth.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
84 void pvmp3_imdct_synth(int32 in[SUBBANDS_NUMBER*FILTERBANK_BANDS],
/frameworks/base/core/java/android/app/
H A DIUiAutomationConnection.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
38 boolean injectInputEvent(in InputEvent event, boolean sync);
45 void executeShellCommand(String command, in ParcelFileDescriptor fd);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAudioConfig.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
69 public BluetoothAudioConfig createFromParcel(Parcel in) {
70 int sampleRate = in.readInt();
71 int channelConfig = in.readInt();
72 int audioFormat = in.readInt();
87 * Returns the sample rate in samples per second
/frameworks/base/core/java/android/content/
H A DUriPermission.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
49 public UriPermission(Parcel in) { argument
50 mUri = in.readParcelable(null);
51 mModeFlags = in.readInt();
52 mPersistedTime = in.readLong();
77 * Return the time when this permission was first persisted, in milliseconds
/frameworks/base/core/java/android/nfc/
H A DTransceiveResult.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
73 public TransceiveResult createFromParcel(Parcel in) {
74 int result = in.readInt();
78 int responseLength = in.readInt();
80 in.readByteArray(responseData);
/frameworks/base/core/java/android/os/
H A DMessenger.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
22 * processes, by creating a Messenger pointing to a Handler in one process,
37 * objects sent through this Messenger will appear in the Handler as if
100 public Messenger createFromParcel(Parcel in) {
101 IBinder target = in.readStrongBinder();
129 * @param in The Parcel containing the written Messenger.
134 public static Messenger readMessengerOrNullFromParcel(Parcel in) { argument
135 IBinder b = in.readStrongBinder();
H A DParcelableParcel.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 ParcelableParcel createFromParcel(Parcel in) {
64 return new ParcelableParcel(in, null);
67 public ParcelableParcel createFromParcel(Parcel in, ClassLoader loader) {
68 return new ParcelableParcel(in, loader);
H A DResultReceiver.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
76 * always asynchronously if the receiver has supplied a Handler in which
122 ResultReceiver(Parcel in) { argument
125 mReceiver = IResultReceiver.Stub.asInterface(in.readStrongBinder());
130 public ResultReceiver createFromParcel(Parcel in) {
131 return new ResultReceiver(in);
/frameworks/base/core/java/android/os/storage/
H A DStorageVolume.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 * This class may be deprecated in the future.
82 private StorageVolume(Parcel in) { argument
83 mId = in.readString();
84 mStorageId = in.readInt();
85 mPath = new File(in.readString());
86 mDescription = in.readString();
87 mPrimary = in.readInt() != 0;
88 mRemovable = in
[all...]
/frameworks/base/core/java/android/security/keymaster/
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
/frameworks/base/core/java/android/view/
H A DInputEvent.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
175 * in the {@link android.os.SystemClock#uptimeMillis} time base.
178 * in the {@link android.os.SystemClock#uptimeMillis} time base.
184 * in the {@link android.os.SystemClock#uptimeMillis} time base but with
187 * The value is in nanosecond precision but it may not have nanosecond accuracy.
191 * in the {@link android.os.SystemClock#uptimeMillis} time base but with
227 public InputEvent createFromParcel(Parcel in) {
228 int token = in.readInt();
230 return KeyEvent.createFromParcelBody(in);
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DLegacyVpnInfo.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
60 public LegacyVpnInfo createFromParcel(Parcel in) {
62 info.key = in.readString();
63 info.state = in.readInt();
64 info.intent = in.readParcelable(null);
/frameworks/base/location/java/com/android/internal/location/
H A DILocationProvider.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
37 void setRequest(in ProviderRequest request, in WorkSource ws);
/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/base/packages/Keyguard/scripts/
H A Dcopy_profile_icons.sh3 for user in `adb $* shell ls /data/system/users | grep -v xml`
7 for photo in `adb $* shell ls /data/system/users | grep -v xml`
/frameworks/base/telecomm/java/android/telecom/
H A DVoicemail.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 single voicemail stored in the voicemail content provider.
166 * The identifier of the voicemail in the content provider.
168 * This may be missing in the case of a new {@link Voicemail} that we plan to insert into the
186 /** The timestamp the voicemail was received, in millis since the epoch, zero if not set. */
191 /** Gets the duration of the voicemail in millis, or zero if the field is not set. */
289 public Voicemail createFromParcel(Parcel in) {
290 return new Voicemail(in);
299 private Voicemail(Parcel in) { argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DBatchedScanResult.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
79 public BatchedScanResult createFromParcel(Parcel in) {
81 result.truncated = (in.readInt() == 1);
82 int count = in.readInt();
84 result.scanResults.add(ScanResult.CREATOR.createFromParcel(in));
H A DWpsInfo.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
90 public WpsInfo createFromParcel(Parcel in) {
92 config.setup = in.readInt();
93 config.BSSID = in.readString();
94 config.pin = in.readString();
/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");

Completed in 1098 milliseconds

<<11121314151617181920>>