Searched refs:in (Results 201 - 225 of 856) sorted by relevance

1234567891011>>

/frameworks/base/telephony/java/android/telephony/
H A DCellInfoGsm.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 CellInfoGsm(Parcel in) { argument
118 super(in);
119 mCellIdentityGsm = CellIdentityGsm.CREATOR.createFromParcel(in);
120 mCellSignalStrengthGsm = CellSignalStrengthGsm.CREATOR.createFromParcel(in);
126 public CellInfoGsm 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 DCellInfoLte.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.
122 private CellInfoLte(Parcel in) { argument
123 super(in);
124 mCellIdentityLte = CellIdentityLte.CREATOR.createFromParcel(in);
125 mCellSignalStrengthLte = CellSignalStrengthLte.CREATOR.createFromParcel(in);
132 public CellInfoLte createFromParcel(Parcel in) {
133 in.readInt(); // Skip past token, we know what it is
134 return createFromParcelBody(in);
144 createFromParcelBody(Parcel in) argument
[all...]
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...]
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbCmasInfo.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 * Supported values for each element are defined in TIA-1149-0-1 (CMAS over CDMA) and
31 // CMAS message class (in GSM/UMTS message identifier or CDMA service category).
57 // CMAS alert category (in CDMA type 1 elements record).
101 // CMAS response type (in CDMA type 1 elements record).
103 /** CMAS response type: Take shelter in place. */
121 /** CMAS response type: Evaluate the information in this message (not for public warnings). */
133 // 4-bit CMAS severity (in GSM/UMTS message identifier or CDMA type 1 elements record).
148 // CMAS urgency (in GS
208 SmsCbCmasInfo(Parcel in) argument
[all...]
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/base/core/java/android/hardware/usb/
H A DUsbEndpoint.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
139 public UsbEndpoint createFromParcel(Parcel in) {
140 int address = in.readInt();
141 int attributes = in.readInt();
142 int maxPacketSize = in.readInt();
143 int interval = in.readInt();
/frameworks/base/core/java/com/android/internal/net/
H A DVpnProfile.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 VpnProfile(Parcel in) { argument
74 key = in.readString();
75 name = in.readString();
76 type = in.readInt();
77 server = in.readString();
78 username = in.readString();
79 password = in.readString();
80 dnsServers = in
[all...]
H A DVpnConfig.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 * A simple container used to carry information in VpnBuilder, VpnDialogs,
125 public VpnConfig createFromParcel(Parcel in) {
127 config.user = in.readString();
128 config.interfaze = in.readString();
129 config.session = in.readString();
130 config.mtu = in.readInt();
131 in.readTypedList(config.addresses, LinkAddress.CREATOR);
132 in
[all...]
/frameworks/base/location/java/android/location/
H A DGeocoderParams.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
30 * logging. This information is kept in a separate class to allow for
69 public GeocoderParams createFromParcel(Parcel in) {
71 String language = in.readString();
72 String country = in.readString();
73 String variant = in.readString();
75 gp.mPackageName = in.readString();
H A DAddress.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 * Returns the largest index currently in use to specify an address line.
477 public Address createFromParcel(Parcel in) {
478 String language = in.readString();
479 String country = in.readString();
485 int N = in.readInt();
489 int index = in.readInt();
490 String line = in.readString();
499 a.mFeatureName = in
[all...]
/frameworks/base/location/java/com/android/internal/location/
H A DProviderRequest.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 ProviderRequest createFromParcel(Parcel in) {
51 request.reportLocation = in.readInt() == 1;
52 request.interval = in.readLong();
53 int count = in.readInt();
55 request.locationRequests.add(LocationRequest.CREATOR.createFromParcel(in));
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pInfo.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
82 public WifiP2pInfo createFromParcel(Parcel in) {
84 info.groupFormed = (in.readByte() == 1);
85 info.isGroupOwner = (in.readByte() == 1);
86 if (in.readByte() == 1) {
88 info.groupOwnerAddress = InetAddress.getByAddress(in.createByteArray());
/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);
H A DCatCmdMessage.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
106 public CatCmdMessage(Parcel in) { argument
107 mCmdDet = in.readParcelable(null);
108 mTextMsg = in.readParcelable(null);
109 mMenu = in.readParcelable(null);
110 mInput = in.readParcelable(null);
114 mBrowserSettings.url = in.readString();
115 mBrowserSettings.mode = LaunchBrowserMode.values()[in.readInt()];
118 mToneSettings = in
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioBiquadFilter.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
65 void AudioBiquadFilter::process(const audio_sample_t in[], audio_sample_t out[], argument
67 (this->*mCurProcessFunc)(in, out, frameCount);
139 void AudioBiquadFilter::process_bypass(const audio_sample_t * in, argument
142 // The common case is in-place processing, because this is what the EQ does.
143 if (CC_UNLIKELY(in != out)) {
144 memcpy(out, in, frameCount * mNumChannels * sizeof(audio_sample_t));
148 void AudioBiquadFilter::process_normal_mono(const audio_sample_t * in, argument
162 audio_sample_t x0 = *(in
182 process_transition_normal_mono(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
191 process_transition_bypass_mono(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
200 process_normal_multi(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
240 process_transition_normal_multi(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
249 process_transition_bypass_multi(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
[all...]
/frameworks/base/core/java/android/ddm/
H A DDdmHandleProfiling.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 * Register for the messages we're interested in.
103 ByteBuffer in = wrapChunk(request);
105 int bufferSize = in.getInt();
106 int flags = in.getInt();
107 int len = in.getInt();
108 String fileName = getString(in, len);
145 ByteBuffer in = wrapChunk(request);
147 int bufferSize = in
[all...]
/frameworks/base/core/java/android/net/
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/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
75 public StatusBarNotification(Parcel in) { argument
76 this.pkg = in.readString();
77 this.basePkg = in.readString();
78 this.id = in.readInt();
79 if (in.readInt() != 0) {
80 this.tag = in.readString();
84 this.uid = in.readInt();
85 this.initialPid = in
[all...]
/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
H A DReceiverActivity.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
37 Intent in = getIntent();
41 body = in.getByteArrayExtra("data");
42 header = in.getByteArrayExtra("header");
/frameworks/base/core/java/android/app/
H A DApplicationErrorReport.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 * is stored in {@link #crashInfo}.
45 * ANR is stored in {@link #anrInfo}.
47 * battery. Information about the battery use is stored in {@link #batteryInfo}.
49 * unneeded serive running. Information about the battery use is stored in
155 ApplicationErrorReport(Parcel in) { argument
156 readFromParcel(in);
161 // check if error reporting is enabled in secure settings
170 // look for receiver in th
245 readFromParcel(Parcel in) argument
368 CrashInfo(Parcel in) argument
433 AnrInfo(Parcel in) argument
492 BatteryInfo(Parcel in) argument
543 RunningServiceInfo(Parcel in) argument
[all...]
/frameworks/base/core/java/android/hardware/display/
H A DIDisplayManager.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
30 void registerCallback(in IDisplayManagerCallback callback);
63 String name, int width, int height, int densityDpi, in Surface surface, int flags);
66 void releaseVirtualDisplay(in IBinder token);
/frameworks/base/core/java/android/hardware/input/
H A DIInputManager.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
32 boolean hasKeys(int deviceId, int sourceMask, in int[] keyCodes, out boolean[] keyExists);
39 boolean injectInputEvent(in InputEvent ev, int mode);
57 void vibrate(int deviceId, in long[] pattern, int repeat, IBinder token);
/frameworks/base/core/java/android/os/
H A DIPowerManager.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
28 void acquireWakeLock(IBinder lock, int flags, String tag, String packageName, in WorkSource ws);
31 void updateWakeLockUids(IBinder lock, in int[] uids);
33 void updateWakeLockWorkSource(IBinder lock, in WorkSource ws);
/frameworks/base/core/java/android/util/
H A DBase64InputStream.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 * @param in the InputStream to read the source data from
44 * constants in {@link Base64}
46 public Base64InputStream(InputStream in, int flags) { argument
47 this(in, flags, false);
54 * @param in the InputStream to read the source data from
56 * constants in {@link Base64}
61 public Base64InputStream(InputStream in, int flags, boolean encode) { argument
62 super(in);
[all...]
/frameworks/base/core/java/android/view/
H A DIWindowManager.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
59 IWindowSession openSession(in IInputMethodClient client,
60 in IInputContext inputContext);
93 void overridePendingAppTransitionThumb(in Bitmap srcThumb, int startX, int startY,
97 in CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
108 Configuration updateOrientationFromAppTokens(in Configuration currentConfig,
110 void setNewConfiguration(in Configuration config);
130 void setAnimationScales(in float[] scales);
153 * be evaluated. This can be used when there are other parameters in
[all...]

Completed in 474 milliseconds

1234567891011>>