Searched refs:in (Results 151 - 175 of 723) sorted by relevance

1234567891011>>

/frameworks/base/telephony/java/android/telephony/
H A DCellInfoCdma.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.
116 private CellInfoCdma(Parcel in) { argument
117 super(in);
118 mCellIdentityCdma = CellIdentityCdma.CREATOR.createFromParcel(in);
119 mCellSignalStrengthCdma = CellSignalStrengthCdma.CREATOR.createFromParcel(in);
126 public CellInfoCdma 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 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.
116 private CellInfoGsm(Parcel in) { argument
117 super(in);
118 mCellIdentityGsm = CellIdentityGsm.CREATOR.createFromParcel(in);
119 mCellSignalStrengthGsm = CellSignalStrengthGsm.CREATOR.createFromParcel(in);
125 public CellInfoGsm createFromParcel(Parcel in) {
126 in.readInt(); // Skip past token, we know what it is
127 return createFromParcelBody(in);
137 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.
121 private CellInfoLte(Parcel in) { argument
122 super(in);
123 mCellIdentityLte = CellIdentityLte.CREATOR.createFromParcel(in);
124 mCellSignalStrengthLte = CellSignalStrengthLte.CREATOR.createFromParcel(in);
131 public CellInfoLte createFromParcel(Parcel in) {
132 in.readInt(); // Skip past token, we know what it is
133 return createFromParcelBody(in);
143 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...]
/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();
H A DUsbDevice.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
74 * for the device in the usbfs file system.
114 * Some useful constants for USB device classes can be found in {@link UsbConstants}.
184 public UsbDevice createFromParcel(Parcel in) {
185 String name = in.readString();
186 int vendorId = in.readInt();
187 int productId = in.readInt();
188 int clasz = in.readInt();
189 int subClass = in
[all...]
/frameworks/base/core/java/android/net/
H A DIConnectivityManager.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
61 int startUsingNetworkFeature(int networkType, in String feature,
62 in IBinder binder);
64 int stopUsingNetworkFeature(int networkType, in String feature);
68 boolean requestRouteToHostAddress(int networkType, in byte[] hostAddress);
104 void requestNetworkTransitionWakelock(in String forWhom);
110 void setGlobalProxy(in ProxyProperties p);
116 boolean protectVpn(in ParcelFileDescriptor socket);
120 ParcelFileDescriptor establishVpn(in VpnConfi
[all...]
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/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...]
/frameworks/base/graphics/java/android/graphics/
H A DPoint.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
110 * Return a new point from the data in the specified parcel.
112 public Point createFromParcel(Parcel in) {
114 r.readFromParcel(in);
127 * Set the point's coordinates from the data stored in the specified
130 * @param in The parcel to read the point's coordinates from
132 public void readFromParcel(Parcel in) { argument
133 x = in.readInt();
134 y = in
[all...]
H A DPointF.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
111 * Return a new point from the data in the specified parcel.
113 public PointF createFromParcel(Parcel in) {
115 r.readFromParcel(in);
128 * Set the point's coordinates from the data stored in the specified
131 * @param in The parcel to read the point's coordinates from
133 public void readFromParcel(Parcel in) { argument
134 x = in.readFloat();
135 y = 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/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/opt/telephony/src/java/com/android/internal/telephony/cat/
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
98 public CatCmdMessage(Parcel in) { argument
99 mCmdDet = in.readParcelable(null);
100 mTextMsg = in.readParcelable(null);
101 mMenu = in.readParcelable(null);
102 mInput = in.readParcelable(null);
106 mBrowserSettings.url = in.readString();
107 mBrowserSettings.mode = LaunchBrowserMode.values()[in.readInt()];
110 mToneSettings = 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
42 * is stored in {@link #crashInfo}.
44 * ANR is stored in {@link #anrInfo}.
46 * battery. Information about the battery use is stored in {@link #batteryInfo}.
48 * unneeded serive running. Information about the battery use is stored in
154 ApplicationErrorReport(Parcel in) { argument
155 readFromParcel(in);
160 // check if error reporting is enabled in secure settings
169 // look for receiver in th
244 readFromParcel(Parcel in) argument
365 CrashInfo(Parcel in) argument
430 AnrInfo(Parcel in) argument
489 BatteryInfo(Parcel in) argument
540 RunningServiceInfo(Parcel in) argument
[all...]
/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/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);
89 void overridePendingAppTransitionThumb(in Bitmap srcThumb, int startX, int startY,
93 in CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
101 void moveAppTokensToTop(in List<IBinder> tokens);
102 void moveAppTokensToBottom(in List<IBinder> tokens);
107 Configuration updateOrientationFromAppTokens(in Configuration currentConfig,
109 void setNewConfiguration(in Configuratio
[all...]
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DForwarder.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 private Socket in, out; field in class:Forwarder.SocketPipe
84 public SocketPipe(Socket in, Socket out) { argument
85 this.in = in;
92 InputStream is = in.getInputStream();
106 return "SocketPipe{" + in + "=>" + out + "}";
/frameworks/base/core/java/android/app/backup/
H A DIRestoreObserver.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 restoreSetsAvailable(in RestoreSet[] result);
42 * @param numPackages The total number of packages being processed in
49 * total number provided in the {@link #restoreStarting(int numPackages)} callback.
/frameworks/base/core/java/android/content/pm/
H A DLabeledIntent.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 * @param sourcePackage The package in which the label and icon live.
57 * @param sourcePackage The package in which the label and icon live.
74 * @param sourcePackage The package in which the label and icon live.
89 * @param sourcePackage The package in which the label and icon live.
131 * not have a label, null will be returned, in which case you will probably
149 * not have a icon, null will be returned, in which case you will probably
171 protected LabeledIntent(Parcel in) { argument
172 readFromParcel(in);
175 readFromParcel(Parcel in) argument
[all...]

Completed in 263 milliseconds

1234567891011>>