Searched defs:in (Results 101 - 125 of 354) sorted by relevance

1234567891011>>

/frameworks/base/telephony/java/android/telephony/
H A DCellInfoWcdma.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 * Immutable cell information from a point in time.
117 private CellInfoWcdma(Parcel in) { argument
118 super(in);
119 mCellIdentityWcdma = CellIdentityWcdma.CREATOR.createFromParcel(in);
120 mCellSignalStrengthWcdma = CellSignalStrengthWcdma.CREATOR.createFromParcel(in);
126 public CellInfoWcdma createFromParcel(Parcel in) {
127 in.readInt(); // Skip past token, we know what it is
128 return createFromParcelBody(in);
138 createFromParcelBody(Parcel in) argument
[all...]
H A DDataConnectionRealTimeInfo.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
29 private long mTime; // Time the info was collected since boot in nanos;
61 private DataConnectionRealTimeInfo(Parcel in) { argument
62 mTime = in.readLong();
63 mDcPowerState = in.readInt();
95 public DataConnectionRealTimeInfo createFromParcel(Parcel in) {
96 return new DataConnectionRealTimeInfo(in);
H A DIccOpenLogicalChannelResponse.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 * STATUS_UNKNOWN_ERROR: Unknown error in open channel command.
63 private IccOpenLogicalChannelResponse(Parcel in) { argument
64 mChannel = in.readInt();
65 mStatus = in.readInt();
66 int arrayLength = in.readInt();
69 in.readByteArray(mSelectResponse);
117 public IccOpenLogicalChannelResponse createFromParcel(Parcel in) {
118 return new IccOpenLogicalChannelResponse(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/Compatibility/src/com/android/compatibilitytest/
H A DAppCompatibility.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
115 * @param in {@link ProcessErrorStateInfo} to parse.
118 private String getStackTrace(ProcessErrorStateInfo in) { argument
119 if (in == null) {
122 return in.stackTrace;
/frameworks/compile/mclinker/lib/Script/
H A DAssignment.cpp131 SectionMap::Output::reference in = script.sectionMap().back()->back(); local
133 if (in->dotAssignments().empty()) {
136 RpnExpr::buildHelperExpr(in->getSection()->getSectionData()->front());
141 in->dotAssignments().push_back(std::make_pair((Fragment*)NULL, assign));
144 Assignment& prevDotAssign = in->dotAssignments().back().second;
155 in->dotAssignments().push_back(
156 std::make_pair(in->getSection()->getSectionData()->front().getNextNode(),
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbLocation.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 * cell broadcasts saved in older versions of the database without location info.
71 public SmsCbLocation(Parcel in) { argument
72 mPlmn = in.readString();
73 mLac = in.readInt();
74 mCid = in.readInt();
169 * @param dest The Parcel in which the object should be written.
182 public SmsCbLocation createFromParcel(Parcel in) {
183 return new SmsCbLocation(in);
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DInput.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 Input(Parcel in) { argument
57 text = in.readString();
58 defaultText = in.readString();
59 icon = in.readParcelable(null);
60 minLen = in.readInt();
61 maxLen = in.readInt();
62 ucs2 = in.readInt() == 1 ? true : false;
63 packed = in
[all...]
H A DMenu.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
57 private Menu(Parcel in) { argument
58 title = in.readString();
59 titleIcon = in.readParcelable(null);
62 int size = in.readInt();
64 Item item = in.readParcelable(null);
67 defaultItem = in.readInt();
68 softKeyPreferred = in.readInt() == 1 ? true : false;
69 helpAvailable = in
[all...]
/frameworks/rs/driver/runtime/
H A Drs_matrix.c203 rsMatrixMultiply(const rs_matrix2x2 *m, float2 in) { argument
205 ret.x = (m->m[0] * in.x) + (m->m[2] * in.y);
206 ret.y = (m->m[1] * in.x) + (m->m[3] * in.y);
210 rsMatrixMultiply(rs_matrix2x2 *m, float2 in) { argument
211 return rsMatrixMultiply((const rs_matrix2x2 *)m, in);
215 rsMatrixMultiply(rs_matrix4x4 *m, float4 in) { argument
216 return rsMatrixMultiply((const rs_matrix4x4 *)m, in);
220 rsMatrixMultiply(rs_matrix4x4 *m, float3 in) { argument
225 rsMatrixMultiply(rs_matrix4x4 *m, float2 in) argument
230 rsMatrixMultiply(rs_matrix3x3 *m, float3 in) argument
235 rsMatrixMultiply(rs_matrix3x3 *m, float2 in) argument
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.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
24 class MediaPlayerBase; // in media/MediaPlayerInterface.h
36 // TestPlayerStub::setDataSource loads the library in the test url. 2
46 // typical usage in a java test:
98 virtual status_t invoke(const android::Parcel& in, android::Parcel *out) { argument
99 return mPlayer->invoke(in, out);
/frameworks/av/media/libstagefright/codecs/gsm/dec/
H A DSoftGSM.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
243 int16_t *out, uint8_t *in, size_t inSize) {
247 gsm_decode(handle, in, out);
248 in += 33;
252 gsm_decode(handle, in, out);
253 in += 32;
242 DecodeGSM(gsm handle, int16_t *out, uint8_t *in, size_t inSize) argument
/frameworks/base/core/java/android/app/backup/
H A DFileBackupHelperBase.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
84 boolean writeFile(File f, BackupDataInputStream in) { argument
91 result = writeFile_native(mPtr, f.getAbsolutePath(), in.mData.mBackupReader);
/frameworks/base/core/java/android/bluetooth/le/
H A DScanSettings.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
29 * Perform Bluetooth LE scan in low power mode. This is the default scan mode as it consumes the
35 * Perform Bluetooth LE scan in balanced power mode. Scan results are returned at a rate that
42 * running in the foreground.
129 private ScanSettings(Parcel in) { argument
130 mScanMode = in.readInt();
131 mCallbackType = in.readInt();
132 mScanResultType = in.readInt();
133 mReportDelayMillis = in
[all...]
/frameworks/base/core/java/android/content/
H A DClipDescription.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 * other piece of data; in that case the MIME type should be the type
124 * @return Returns true if one of the MIME types in the clip description
138 * all MIME types in the clip that match the given MIME type.
163 * Return the number of MIME types the clip is available in.
235 ClipDescription(Parcel in) { argument
236 mLabel = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
237 mMimeTypes = in.createStringArray();
H A DComponentName.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
31 * a component: the package (a String) it exists in, and the class (a String)
42 * @param pkg The name of the package that the component exists in. Can
100 * Return the class name, either fully qualified or in a shortened form
142 * class names contained in the ComponentName. You can later recover
203 * names that were encoded in <var>str</var>
276 * @param out The Parcel in which the ComponentName will be placed.
293 * @param in The Parcel from which to read the ComponentName
299 public static ComponentName readFromParcel(Parcel in) { argument
325 ComponentName(Parcel in) argument
334 ComponentName(String pkg, Parcel in) argument
[all...]
H A DDefaultDataHandler.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
31 * Inserts default data from InputStream, should be in XML format.
42 * Delete, it must be in order of uri, select, and arg:
61 * Insert multiple rows in to same table and same attributes:
87 public void insert(ContentResolver contentResolver, InputStream in) argument
90 Xml.parse(in, Xml.Encoding.UTF_8, this);
93 public void insert(ContentResolver contentResolver, String in) argument
96 Xml.parse(in, this);
/frameworks/base/core/java/android/gesture/
H A DGesture.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
101 * Calculates the total length of the gesture. When there are multiple strokes in
268 static Gesture deserialize(DataInputStream in) throws IOException { argument
272 gesture.mGestureID = in.readLong();
274 final int count = in.readInt();
277 gesture.addStroke(GestureStroke.deserialize(in));
284 public Gesture createFromParcel(Parcel in) {
286 final long gestureID = in.readLong();
289 new ByteArrayInputStream(in
[all...]
H A DGestureStore.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
122 * Get all the gesture entry names in the library
279 DataInputStream in = null;
281 in = new DataInputStream((stream instanceof BufferedInputStream) ? stream :
290 final short versionNumber = in.readShort();
293 readFormatV1(in);
302 if (closeStream) GestureUtils.closeStream(in);
306 private void readFormatV1(DataInputStream in) throws IOException { argument
311 // Number of entries in th
[all...]
H A DGestureStroke.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
219 static GestureStroke deserialize(DataInputStream in) throws IOException { argument
221 final int count = in.readInt();
225 points.add(GesturePoint.deserialize(in));
/frameworks/base/core/java/android/net/
H A DDhcpResults.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
124 public DhcpResults createFromParcel(Parcel in) {
126 readFromParcel(dhcpResults, in);
143 private static void readFromParcel(DhcpResults dhcpResults, Parcel in) { argument
144 StaticIpConfiguration.readFromParcel(dhcpResults, in);
145 dhcpResults.leaseDuration = in.readInt();
146 dhcpResults.serverAddress = NetworkUtils.unparcelInetAddress(in);
147 dhcpResults.vendorInfo = in.readString();
H A DNetworkPolicy.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
71 public NetworkPolicy(Parcel in) { argument
72 template = in.readParcelable(null);
73 cycleDay = in.readInt();
74 cycleTimezone = in.readString();
75 warningBytes = in.readLong();
76 limitBytes = in.readLong();
77 lastWarningSnooze = in.readLong();
78 lastLimitSnooze = in
[all...]
/frameworks/base/core/java/android/os/
H A DPersistableBundle.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 * Constructs a PersistableBundle containing the mappings passed in.
83 // First stuff everything in.
101 throw new IllegalArgumentException("Bad value in PersistableBundle key=" + key +
168 public PersistableBundle createFromParcel(Parcel in) {
169 return in.readPersistableBundle();
201 public Object readThisUnknownObjectXml(XmlPullParser in, String tag) argument
204 return restoreFromXml(in);
219 * Writes the PersistableBundle contents to a Parcel, typically in orde
234 restoreFromXml(XmlPullParser in) argument
[all...]
/frameworks/base/core/java/android/service/notification/
H A DStatusBarNotification.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
71 public StatusBarNotification(Parcel in) { argument
72 this.pkg = in.readString();
73 this.opPkg = in.readString();
74 this.id = in.readInt();
75 if (in.readInt() != 0) {
76 this.tag = in.readString();
80 this.uid = in.readInt();
81 this.initialPid = in
[all...]
/frameworks/base/core/java/android/util/
H A DRational.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 * <p>Increment each time the fields change in any way.</p>
142 * <p>The denominator may return {@code 0}, in which case the rational may represent
179 * <p>A finite value occurs when the denominator is not {@code 0}; in other words
219 * <li>Both have the same numerator and denominator in their reduced form</li>
280 // TODO: remove this duplicate function (used in CTS and the shim)
300 * @param numerator the numerator in a fraction
301 * @param denominator the denominator in a fraction
366 * identically to casting a floating point value to an {@code int}, in particula
512 readObject(java.io.ObjectInputStream in) argument
[all...]

Completed in 3054 milliseconds

1234567891011>>