Searched defs:in (Results 76 - 100 of 591) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/hardware/camera2/utils/
H A DSubmitInfo.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 SubmitInfo createFromParcel(Parcel in) {
50 return new SubmitInfo(in);
59 private SubmitInfo(Parcel in) { argument
60 readFromParcel(in);
74 public void readFromParcel(Parcel in) { argument
75 mRequestId = in.readInt();
76 mLastFrameNumber = in.readLong();
/frameworks/base/core/java/android/net/
H A DNetworkQuotaInfo.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 NetworkQuotaInfo(Parcel in) { argument
43 mEstimatedBytes = in.readLong();
44 mSoftLimitBytes = in.readLong();
45 mHardLimitBytes = in.readLong();
74 public NetworkQuotaInfo createFromParcel(Parcel in) {
75 return new NetworkQuotaInfo(in);
H A DWifiKey.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 * be in the form of a six-byte MAC address: {@code XX:XX:XX:XX:XX:XX}, where each X is a
62 * This should be in the form of a six-byte MAC address: {@code XX:XX:XX:XX:XX:XX},
77 private WifiKey(Parcel in) { argument
78 ssid = in.readString();
79 bssid = in.readString();
116 public WifiKey createFromParcel(Parcel in) {
117 return new WifiKey(in);
/frameworks/base/core/java/android/net/metrics/
H A DDefaultNetworkEvent.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 * An event recorded by ConnectivityService when there is a change in the default network.
31 // defined in NetworkCapabilities.java.
48 private DefaultNetworkEvent(Parcel in) { argument
49 this.netId = in.readInt();
50 this.transportTypes = in.createIntArray();
51 this.prevNetId = in.readInt();
52 this.prevIPv4 = (in.readByte() > 0);
53 this.prevIPv6 = (in
[all...]
/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 DShellCallback.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 ShellCallback(Parcel in) { argument
102 mShellCallback = IShellCallback.Stub.asInterface(in.readStrongBinder());
107 public ShellCallback createFromParcel(Parcel in) {
108 return new ShellCallback(in);
/frameworks/base/core/java/android/os/health/
H A DTimerStat.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
26 * When possible, the other APIs in this package avoid requiring a TimerStat
39 public TimerStat createFromParcel(Parcel in) {
40 return new TimerStat(in);
69 public TimerStat(Parcel in) { argument
70 mCount = in.readInt();
71 mTime = in.readLong();
104 * Set the time for this timer in milliseconds.
111 * Get the time for this timer in millisecond
[all...]
/frameworks/base/core/java/android/view/
H A DDragAndDropPermissions.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 * {@link Activity#onSaveInstanceState} bundle and later retrieved in order to manually release
144 private DragAndDropPermissions(Parcel in) { argument
145 mDragAndDropPermissions = IDragAndDropPermissions.Stub.asInterface(in.readStrongBinder());
146 mTransientToken = in.readStrongBinder();
/frameworks/base/media/java/android/media/projection/
H A DMediaProjectionInfo.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 MediaProjectionInfo(Parcel in) { argument
36 mPackageName = in.readString();
37 mUserHandle = UserHandle.readFromParcel(in);
84 public MediaProjectionInfo createFromParcel(Parcel in) {
85 return new MediaProjectionInfo (in);
/frameworks/base/media/java/android/media/tv/
H A DTvContentRatingSystemInfo.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
86 public TvContentRatingSystemInfo createFromParcel(Parcel in) {
87 return new TvContentRatingSystemInfo(in);
96 private TvContentRatingSystemInfo(Parcel in) { argument
97 mXmlUri = in.readParcelable(null);
98 mApplicationInfo = in.readParcelable(null);
/frameworks/base/media/jni/
H A Dandroid_media_ResampleInputStream.cpp6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
89 short in[BUF_SIZE]; local
90 env->GetByteArrayRegion(jIn, jInOffset, (jNpoints * 2 + nFir21 - 1) * 2, (jbyte*)in);
97 const short* inp = &in[i * 2];
/frameworks/base/packages/Osu/src/com/android/anqp/
H A DI18Name.java14 * A generic Internationalized name used in ANQP elements as specified in 802.11-2012 and
83 public I18Name(Parcel in) throws IOException { argument
84 mLanguage = in.readString();
85 mText = in.readString();
/frameworks/base/packages/Osu/src/com/android/hotspot2/app/
H A DOSUData.java38 private OSUData(Parcel in) { argument
39 mName = in.readString();
40 mServiceDescription = in.readString();
41 int iconSize = in.readInt();
43 in.readByteArray(mIconData);
44 mId = in.readInt();
48 public OSUData createFromParcel(Parcel in) {
49 return new OSUData(in);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDetailClipper.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 void animateCircularClip(int x, int y, boolean in, AnimatorListener listener) { argument
56 if (in) {
65 if (in) {
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
H A DStackOverflowXmlParser.java5 * in compliance with the License. You may obtain a copy of the License at
9 * Unless required by applicable law or agreed to in writing, software distributed under the License
30 * where each list element represents a single entry (post) in the XML feed.
37 public List<Entry> parse(InputStream in) throws XmlPullParserException, IOException { argument
41 parser.setInput(in, null);
45 in.close();
68 // This class represents a single entry (post) in the XML feed.
108 // Processes title tags in the feed.
116 // Processes link tags in the feed.
132 // Processes summary tags in th
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DRandomBlock.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 private static RandomBlock fromStream(InputStream in) throws IOException { argument
56 int result = in.read(retval.block, total, BLOCK_SIZE - total);
/frameworks/base/services/coverage/java/com/android/server/coverage/
H A DCoverageService.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
58 public void onShellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err, argument
60 new CoverageCommand().exec(this, in, out, err, args, callback, resultReceiver);
/frameworks/base/services/usage/java/com/android/server/usage/
H A DUsageStatsXml.java5 * use this file except in compliance with the License. You may obtain a copy
10 * Unless required by applicable law or agreed to in writing, software
44 // would be appended more than once to a checked-in file, causing a crash
60 FileInputStream in = file.openRead();
63 read(in, statsOut);
67 in.close();
90 static void read(InputStream in, IntervalStats statsOut) throws IOException { argument
93 parser.setInput(in, "utf-8");
/frameworks/base/telecomm/java/android/telecom/
H A DParcelableRttCall.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 protected ParcelableRttCall(Parcel in) { argument
48 mRttMode = in.readInt();
49 mTransmitStream = in.readParcelable(ParcelFileDescriptor.class.getClassLoader());
50 mReceiveStream = in.readParcelable(ParcelFileDescriptor.class.getClassLoader());
55 public ParcelableRttCall createFromParcel(Parcel in) {
56 return new ParcelableRttCall(in);
/frameworks/base/telephony/java/com/android/ims/
H A DImsCallForwardInfo.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
44 public ImsCallForwardInfo(Parcel in) { argument
45 readFromParcel(in);
73 private void readFromParcel(Parcel in) { argument
74 mCondition = in.readInt();
75 mStatus = in.readInt();
76 mToA = in.readInt();
77 mNumber = in.readString();
78 mTimeSeconds = in
[all...]
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
42 public ImsSsInfo(Parcel in) { argument
43 readFromParcel(in);
62 private void readFromParcel(Parcel in) { argument
63 mStatus = in.readInt();
64 mIcbNum = in.readString();
70 public ImsSsInfo createFromParcel(Parcel in) {
71 return new ImsSsInfo(in);
H A DImsSuppServiceNotification.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 public ImsSuppServiceNotification(Parcel in) { argument
51 readFromParcel(in);
80 private void readFromParcel(Parcel in) { argument
81 notificationType = in.readInt();
82 code = in.readInt();
83 index = in.readInt();
84 type = in.readInt();
85 number = in
[all...]
/frameworks/base/tools/aapt2/io/
H A DUtil.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
24 bool CopyInputStreamToArchive(IAaptContext* context, InputStream* in, const std::string& out_path, argument
30 if (!writer->WriteFile(out_path, compression_flags, in)) {
76 bool Copy(OutputStream* out, InputStream* in) { argument
79 while (in->Next(&in_buffer, &in_len)) {
89 in->BackUp(in_len - bytes_to_copy);
91 return !in->HadError();
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DDeletedEphemeralSsidsStoreData.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
54 public void deserializeData(XmlPullParser in, int outerTagDepth, boolean shared) argument
60 while (!XmlUtil.isNextSectionEnd(in, outerTagDepth)) {
62 Object value = XmlUtil.readCurrentValue(in, valueName);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DDuration.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 private Duration(Parcel in) { argument
57 timeInterval = in.readInt();
58 timeUnit = TimeUnit.values()[in.readInt()];
74 public Duration createFromParcel(Parcel in) {
75 return new Duration(in);

Completed in 473 milliseconds

1234567891011>>