Searched defs:in (Results 201 - 225 of 486) sorted by relevance

1234567891011>>

/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityLte.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
204 private CellIdentityLte(Parcel in) { argument
205 mMcc = in.readInt();
206 mMnc = in.readInt();
207 mCi = in.readInt();
208 mPci = in.readInt();
209 mTac = in.readInt();
210 mEarfcn = in.readInt();
219 public CellIdentityLte createFromParcel(Parcel in) {
[all...]
H A DCellIdentityWcdma.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 // 28-bit UMTS Cell Identity described in TS 25.331, 0..268435455
41 // 9-bit UMTS Primary Scrambling Code described in TS 25.331, 0..511
127 * 28-bit UMTS Cell Identity described in TS 25.331, 0..268435455, Integer.MAX_VALUE if unknown
134 * @return 9-bit UMTS Primary Scrambling Code described in TS 25.331, 0..511, Integer.MAX_VALUE
205 private CellIdentityWcdma(Parcel in) { argument
206 mMcc = in.readInt();
207 mMnc = in.readInt();
208 mLac = in
[all...]
H A DCellInfo.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
23 * Immutable cell information from a point in time.
53 // Observation time stamped as type in nanoseconds since boot
83 /** Approximate time of this cell information in nanos since boot */
191 protected CellInfo(Parcel in) { argument
192 mRegistered = (in.readInt() == 1) ? true : false;
193 mTimeStampType = in.readInt();
194 mTimeStamp = in.readLong();
200 public CellInfo createFromParcel(Parcel in) {
[all...]
H A DCellSignalStrengthGsm.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 private int mSignalStrength; // Valid values are (0-31, 99) as defined in TS 27.007 8.5
36 private int mBitErrorRate; // bit error rate (0-7, 99) as defined in TS 27.007 8.5
131 // signal, its better to show 0 bars to the user in such cases.
169 // signal, its better to show 0 bars to the user in such cases.
224 private CellSignalStrengthGsm(Parcel in) { argument
225 mSignalStrength = in.readInt();
226 mBitErrorRate = in.readInt();
227 mTimingAdvance = in
[all...]
H A DCellSignalStrengthWcdma.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 private int mSignalStrength; // Valid values are (0-31, 99) as defined in TS 27.007 8.5
36 private int mBitErrorRate; // bit error rate (0-7, 99) as defined in TS 27.007 8.5
112 // signal, its better to show 0 bars to the user in such cases.
150 // signal, its better to show 0 bars to the user in such cases.
202 private CellSignalStrengthWcdma(Parcel in) { argument
203 mSignalStrength = in.readInt();
204 mBitErrorRate = in.readInt();
219 public CellSignalStrengthWcdma createFromParcel(Parcel in) {
[all...]
H A DPreciseCallState.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
28 * The following call information is included in returned PreciseCallState:
94 private PreciseCallState(Parcel in) { argument
95 mRingingCallState = in.readInt();
96 mForegroundCallState = in.readInt();
97 mBackgroundCallState = in.readInt();
98 mDisconnectCause = in.readInt();
99 mPreciseDisconnectCause = in.readInt();
257 public PreciseCallState createFromParcel(Parcel in) {
[all...]
H A DPreciseDataConnectionState.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
27 * The following data connection information is included in returned PreciseDataConnectionState:
79 private PreciseDataConnectionState(Parcel in) { argument
80 mState = in.readInt();
81 mNetworkType = in.readInt();
82 mAPNType = in.readString();
83 mAPN = in.readString();
84 mReason = in.readString();
85 mLinkProperties = (LinkProperties)in
[all...]
H A DVoLteServiceState.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 //Use int max, as -1 is a valid value in signal strength
118 public VoLteServiceState(Parcel in) { argument
119 if (DBG) log("Size of VoLteServiceState parcel:" + in.dataSize());
121 mSrvccState = in.readInt();
144 public VoLteServiceState createFromParcel(Parcel in) {
145 return new VoLteServiceState(in);
155 * specified in ril.h
156 * Set to invalid any field that is not in th
[all...]
/frameworks/base/telephony/java/android/telephony/cdma/
H A DCdmaSmsCbProgramResults.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 /** Program result: category already opted in. */
41 /** Program result: category already opted in. */
59 /** Language used for service category name (defined in BearerData.LANGUAGE_*). */
73 CdmaSmsCbProgramResults(Parcel in) { argument
74 mCategory = in.readInt();
75 mLanguage = in.readInt();
76 mCategoryResult = in.readInt();
82 * @param dest The Parcel in whic
[all...]
/frameworks/base/telephony/java/com/android/ims/
H A DImsConferenceState.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 * Provides the conference information (defined in RFC 4575) for IMS conference call.
50 * "pending" : Endpoint is not yet in the session, but it is anticipated that he/she will
51 * join in the near future.
53 * but the endpoint is not yet in the roster (probably being authenticated).
54 * "dialing-in" : Endpoint is dialing into the conference, not yet in the roster
60 * the conference mix nor is his/her media being mixed in the conference.
61 * "connected" : Endpoint is a participant in th
93 ImsConferenceState(Parcel in) argument
122 readFromParcel(Parcel in) argument
[all...]
H A DImsExternalCallState.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 * information received in Dialog Event Package can be
66 public ImsExternalCallState(Parcel in) { argument
67 mCallId = in.readInt();
69 mAddress = in.readParcelable(classLoader);
70 mIsPullable = (in.readInt() != 0);
71 mCallState = in.readInt();
72 mCallType = in.readInt();
73 mIsHeld = (in
[all...]
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
H A DProcessErrorsTest.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 * This smoke test is designed to check for crashes and ANRs in an attempt to quickly determine if
39 * all minimal functionality in the build is working properly.
52 * in the catch-all testCase.
113 * This test checks for asynchronously-caused errors (crashes or ANRs) and fails in case any
118 * that state here as a side-effect so that if two successive runs happen in the same process,
119 * the asynchronous errors in the second test run won't include errors produced during the first
129 // Reset state just in case we should get another set of runs in th
325 fromCollection(Collection<ProcessErrorStateInfo> in) argument
[all...]
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DNotificationBuilderTest.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
210 private static CharSequence subst(CharSequence in, char ch, CharSequence sub) { argument
212 SpannableStringBuilder edit = new SpannableStringBuilder(in);
/frameworks/base/tools/preload/
H A DMemoryUsage.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 // These values are in 1kB increments (not 4kB like you'd expect).
246 BufferedReader in = new BufferedReader(
248 String line = in.readLine();
256 in.close();
274 private static void copy(InputStream in, OutputStream out) { argument
278 while ((read = in.read(buffer)) > -1) {
286 /** Measures memory usage information and stores it in the model. */
/frameworks/native/services/surfaceflinger/
H A DGpuService.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
40 int in = data.readFileDescriptor(); local
48 return shellCommand(in, out, err, args);
67 status_t GpuService::shellCommand(int /*in*/, int out, int err,
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgramCache.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
52 friend Formatter& operator << (Formatter& out, const char* in) { argument
56 out.mString.append(in);
60 friend inline Formatter& operator << (Formatter& out, const String8& in) { argument
61 return operator << (out, in.string());
115 ALOGD("shader cache generated - %u shaders in %f ms\n", shaderCount, compileTimeMs);
160 // default precision is required-ish in fragment shaders
230 // look-up the program in the cache
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapEventReport.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 * This object will be received in {@link BluetoothMasClient#EVENT_EVENT_REPORT}
96 // msg_type, in such case leave it as null rather than throw
129 * <code>type</code> application parameter in MAP specification
136 * @return value corresponding to <code>handle</code> parameter in MAP
144 * @return value corresponding to <code>folder</code> parameter in MAP
152 * @return value corresponding to <code>old_folder</code> parameter in MAP
161 * <code>msg_type</code> application parameter in MAP specification
184 static BluetoothMapEventReport fromStream(DataInputStream in) { argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DOMAConstants.java52 public static String deserializeString(InputStream in) throws IOException { argument
55 byte b = (byte) in.read();
67 int amount = in.read(octets, offset, octets.length - offset);
75 public static String readURN(InputStream in) throws IOException { argument
79 byte b = (byte) in.read();
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbEtwsInfo.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 * Supported values for each element are defined in 3GPP TS 23.041.
53 /** One of the ETWS warning type constants defined in this class. */
85 SmsCbEtwsInfo(Parcel in) { argument
86 mWarningType = in.readInt();
87 mEmergencyUserAlert = (in.readInt() != 0);
88 mActivatePopup = (in.readInt() != 0);
89 mPrimary = (in.readInt() != 0);
90 mWarningSecurityInformation = in
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCommandDetails.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
51 public CommandDetails(Parcel in) { argument
52 compRequired = in.readInt() != 0;
53 commandNumber = in.readInt();
54 typeOfCommand = in.readInt();
55 commandQualifier = in.readInt();
69 public CommandDetails createFromParcel(Parcel in) {
70 return new CommandDetails(in);
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicLUT.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
62 const uchar *in = (uchar *)info->inPtr[0]; local
72 out[0] = tr[in[0]];
73 out[1] = tg[in[1]];
74 out[2] = tb[in[2]];
75 out[3] = ta[in[3]];
76 in += 4;
/frameworks/rs/driver/runtime/arch/
H A Dgeneric.c5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
704 rsMatrixMultiply(const rs_matrix4x4 *m, float4 in) { argument
706 ret.x = (m->m[0] * in.x) + (m->m[4] * in.y) + (m->m[8] * in.z) + (m->m[12] * in.w);
707 ret.y = (m->m[1] * in.x) + (m->m[5] * in.y) + (m->m[9] * in
714 rsMatrixMultiply(const rs_matrix4x4 *m, float3 in) argument
724 rsMatrixMultiply(const rs_matrix4x4 *m, float2 in) argument
734 rsMatrixMultiply(const rs_matrix3x3 *m, float3 in) argument
743 rsMatrixMultiply(const rs_matrix3x3 *m, float2 in) argument
[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/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPersistentFocusWrapper.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
98 // Select a child in requestFocus
131 SavedState(Parcel in) { argument
132 super(in);
133 mSelectedPosition = in.readInt();
149 public SavedState createFromParcel(Parcel in) {
150 return new SavedState(in);
/frameworks/support/v4/api21/android/support/v4/media/
H A DMediaDescriptionCompatApi21.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 static Object fromParcel(Parcel in) { argument
59 return MediaDescription.CREATOR.createFromParcel(in);

Completed in 322 milliseconds

1234567891011>>