Searched refs:in (Results 326 - 350 of 860) sorted by relevance

<<11121314151617181920>>

/frameworks/base/tools/preload/
H A DCompile.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 * an emulator or device running in the background, this class will use it
43 BufferedReader in = new BufferedReader(new InputStreamReader(
48 while ((line = in.readLine()) != null) {
69 in.close();
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiInfo.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
33 * is in the process of being set up.
38 * This is the map described in the Javadoc comment above. The positions
69 /** Link speed in Mbps */
148 * @return the BSSID, in the form of a six-byte MAC address: {@code XX:XX:XX:XX:XX:XX}
158 * @return the RSSI, in the range ??? to ???
169 * Returns the current link speed in {@link #LINK_SPEED_UNITS}.
183 * @param macAddress the MAC address in {@code XX:XX:XX:XX:XX:XX} form
219 * access point, in th
[all...]
H A DWpsResult.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
79 public WpsResult createFromParcel(Parcel in) {
81 result.status = Status.valueOf(in.readString());
82 result.pin = in.readString();
H A DWifiConfiguration.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
120 /** AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0] */
131 * CCMP = AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0]
146 /** AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0] */
201 * which must be enclosed in double quotation marks
203 * hex digits,which are not enclosed in quotes
210 * a string in the format of an Ethernet MAC address, e.g.,
224 * Up to four WEP keys. Either an ASCII string enclosed in double
482 * The decoding is implemented in th
[all...]
/frameworks/rs/java/tests/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/
H A DHelloComputeNDK.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
33 native void nativeMono(int X, int Y, Bitmap in, Bitmap out); argument
44 ImageView in = (ImageView) findViewById(R.id.displayin);
45 in.setImageBitmap(mBitmapIn);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s22 ; * [in] blockIndex block index indicating the component type and
23 ; * position as defined in subclause 6.1.3.8, of ISO/IEC
26 ; * blocks 0 to 3 in the same macroblock.
27 ; * [in] pCoefBufRow pointer to the coefficient row buffer
28 ; * [in] pQpBuf pointer to the quantization parameter buffer
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s22 ; * [in] blockIndex block index indicating the component type and
23 ; * position as defined in subclause 6.1.3.8, of ISO/IEC
26 ; * blocks 0 to 3 in the same macroblock.
27 ; * [in] pCoefBufRow pointer to the coefficient row buffer
28 ; * [in] pQpBuf pointer to the quantization parameter buffer
/frameworks/base/graphics/java/android/graphics/
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
136 * Return a new point from the data in the specified parcel.
138 public PointF createFromParcel(Parcel in) {
140 r.readFromParcel(in);
153 * Set the point's coordinates from the data stored in the specified
156 * @param in The parcel to read the point's coordinates from
158 public void readFromParcel(Parcel in) { argument
159 x = in.readFloat();
160 y = in
[all...]
/frameworks/base/location/java/android/location/
H A DGeofence.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
41 * @param latitude latitude in degrees, between -90 and +90 inclusive
42 * @param longitude longitude in degrees, between -180 and +180 inclusive
43 * @param radius radius in meters
103 public Geofence createFromParcel(Parcel in) {
104 int type = in.readInt();
105 double latitude = in.readDouble();
106 double longitude = in.readDouble();
107 float radius = in
[all...]
/frameworks/base/telephony/java/android/telephony/
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
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 CellSignalStrengthGsm(Parcel in) { argument
203 mSignalStrength = in.readInt();
204 mBitErrorRate = in.readInt();
219 public CellSignalStrengthGsm createFromParcel(Parcel 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 DServiceState.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 phone information is included in returned ServiceState:
43 * with an operator either in home network or in roaming.
242 public ServiceState(Parcel in) { argument
243 mVoiceRegState = in.readInt();
244 mDataRegState = in.readInt();
245 mRoaming = in.readInt() != 0;
246 mOperatorAlphaLong = in
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pConfig.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 //Based on definitions in wps/wps_defs.h
142 public WifiP2pConfig createFromParcel(Parcel in) {
144 config.deviceAddress = in.readString();
145 config.wps = (WpsInfo) in.readParcelable(null);
146 config.groupOwnerIntent = in.readInt();
147 config.netId = in.readInt();
H A DWifiP2pDevice.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
55 * Secondary device type is an optional attribute that can be provided by a device in
61 // These definitions match the ones in wpa_supplicant
168 * Note: The events formats can be looked up in the wpa_supplicant code
363 public WifiP2pDevice createFromParcel(Parcel in) {
365 device.deviceName = in.readString();
366 device.deviceAddress = in.readString();
367 device.primaryDeviceType = in.readString();
368 device.secondaryDeviceType = in
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.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
208 struct hwc_rect hwcTestParseHwcRect(istringstream& in, bool& error) argument
218 in >> chStart;
219 if (!in || ((chStart != '<') && (chStart != '['))) { return rect; }
222 in >> rect.left;
223 if (!in) { return rect; }
224 in >> ch;
225 if (!in || (ch != ',')) { return rect; }
228 in >> rec
259 hwcTestParseDim(istringstream& in, bool& error) argument
303 hwcTestParseColor(istringstream& in, bool& error) argument
[all...]
/frameworks/base/core/java/android/ddm/
H A DDdmHandleHeap.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 * Register for the messages we're interested in.
112 ByteBuffer in = wrapChunk(request);
114 int when = in.get();
130 ByteBuffer in = wrapChunk(request);
132 int when = in.get();
133 int what = in.get();
156 ByteBuffer in = wrapChunk(request);
160 int len = in
[all...]
/frameworks/base/core/java/android/nfc/
H A DTag.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 * single activity via the {@link NfcAdapter#EXTRA_TAG} extra in an
57 * most appropriate activity to handle the tag. The Android OS executes each stage in order,
74 * If the tag contains NDEF data the system inspects the first {@link NdefRecord} in the first
78 * type is put in the intent's type field. This allows activities to register to be launched only
91 * more technologies in the tag. See {@link NfcAdapter#ACTION_TECH_DISCOVERED} for more detail.
99 * it is in range. Tag's can come in many forms, such as stickers, cards, key fobs, or
100 * even embedded in
336 readBytesWithNull(Parcel in) argument
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsic3DLUT.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
66 uchar4 *in = (uchar4 *)p->in; local
96 rsdIntrinsic3DLUT_K(out, in, bp, stride_y, stride_z, len, neon_constants);
99 in += len << 1;
105 int4 baseCoord = convert_int4(*in) * coordMul;
140 ret.w = in->w;
144 ALOGE("in %08x %08x %08x %08x", in
[all...]
/frameworks/av/services/audioflinger/
H A DAudioResamplerCubic.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
73 int16_t *in = mBuffer.i16; local
83 // out[outputIndex++] += vr * in[inputIndex*2];
102 in = mBuffer.i16;
107 advance(&left, in[inputIndex*2]);
108 advance(&right, in[inputIndex*2+1]);
139 int16_t *in = mBuffer.i16; local
169 in = mBuffer.i16;
173 advance(&left, in[inputInde
[all...]
/frameworks/base/core/java/android/hardware/usb/
H A DUsbAccessory.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
197 public UsbAccessory createFromParcel(Parcel in) {
198 String manufacturer = in.readString();
199 String model = in.readString();
200 String description = in.readString();
201 String version = in.readString();
202 String uri = in.readString();
203 String serial = in.readString();
/frameworks/base/core/java/android/view/
H A DGraphicBuffer.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
32 // Note: keep usage flags in sync with GraphicBuffer.h and gralloc.h
72 * @param width The width in pixels of the buffer
73 * @param height The height in pixels of the buffer
74 * @param format The format of each pixel as specified in {@link PixelFormat}
99 * Returns the width of this buffer in pixels.
106 * Returns the height of this buffer in pixels.
114 * the formats defined in {@link PixelFormat}.
128 * <p>Start editing the pixels in th
289 nReadGraphicBufferFromParcel(Parcel in) argument
[all...]
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarIconList.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 public StatusBarIconList(Parcel in) { argument
32 readFromParcel(in);
35 public void readFromParcel(Parcel in) { argument
36 this.mSlots = in.readStringArray();
37 final int N = in.readInt();
43 if (in.readInt() != 0) {
44 mIcons[i] = new StatusBarIcon(in);
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dagc.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
91 in = input signal (Word16)
126 Word16 in[], // i : input signal (length l_trm)
133 temp = shr (in[0], 2);
138 temp = shr (in[i], 2);
169 Word16 in[], /* i : input signal (length l_trm) */
181 temp = in[i] >> 2;
196 in = input signal (Word16)
229 CALL energy_old ( in
168 energy_old( Word16 in[], Word16 l_trm, Flag *pOverflow ) argument
258 energy_old_Wrapper(Word16 in[], Word16 l_trm, Flag *pOverflow) argument
370 energy_new( Word16 in[], Word16 l_trm, Flag *pOverflow ) argument
478 energy_new_Wrapper(Word16 in[], Word16 l_trm, Flag *pOverflow) argument
[all...]
/frameworks/base/core/java/android/content/
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...]
/frameworks/base/core/java/android/gesture/
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...]

Completed in 703 milliseconds

<<11121314151617181920>>