Searched refs:in (Results 276 - 300 of 860) sorted by relevance

<<11121314151617181920>>

/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.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 * The detected signal level in dBm. At least those are the units used by
48 * The frequency in MHz of the channel over which the client is communicating
54 * Time Synchronization Function (tsf) timestamp in microseconds when
60 * The approximate distance to the AP in centimeter, if available. Else
172 public ScanResult createFromParcel(Parcel in) {
174 if (in.readInt() == 1) {
175 wifiSsid = WifiSsid.CREATOR.createFromParcel(in);
179 in
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealthAppConfiguration.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 * The Bluetooth Health Application Configuration that is used in conjunction with
144 public BluetoothHealthAppConfiguration createFromParcel(Parcel in) {
145 String name = in.readString();
146 int type = in.readInt();
147 int role = in.readInt();
148 int channelType = in.readInt();
/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
119 * Return a new point from the data in the specified parcel.
121 public Point createFromParcel(Parcel in) {
123 r.readFromParcel(in);
136 * Set the point's coordinates from the data stored in the specified
139 * @param in The parcel to read the point's coordinates from
141 public void readFromParcel(Parcel in) { argument
142 x = in.readInt();
143 y = in
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DDurableUtils.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 final ByteArrayInputStream in = new ByteArrayInputStream(data);
43 d.read(new DataInputStream(in));
94 public static String readNullableString(DataInputStream in) throws IOException { argument
95 if (in.read() != 0) {
96 return in.readUTF();
H A DDocumentStack.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
76 * details included in {@link #write(DataOutputStream)}, since they change
100 public void read(DataInputStream in) throws IOException { argument
101 final int version = in.readInt();
106 if (in.readBoolean()) {
108 root.read(in);
110 final int size = in.readInt();
113 doc.read(in);
H A DDocumentInfo.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
80 public void read(DataInputStream in) throws IOException { argument
81 final int version = in.readInt();
86 authority = DurableUtils.readNullableString(in);
87 documentId = DurableUtils.readNullableString(in);
88 mimeType = DurableUtils.readNullableString(in);
89 displayName = DurableUtils.readNullableString(in);
90 lastModified = in.readLong();
91 flags = in
[all...]
H A DRootInfo.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 public void read(DataInputStream in) throws IOException { argument
85 final int version = in.readInt();
88 authority = DurableUtils.readNullableString(in);
89 rootId = DurableUtils.readNullableString(in);
90 flags = in.readInt();
91 icon = in.readInt();
92 title = DurableUtils.readNullableString(in);
93 summary = DurableUtils.readNullableString(in);
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DOperatorInfo.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 * See state strings defined in ril.h RIL_REQUEST_QUERY_AVAILABLE_NETWORKS
140 public OperatorInfo createFromParcel(Parcel in) {
142 in.readString(), /*operatorAlphaLong*/
143 in.readString(), /*operatorAlphaShort*/
144 in.readString(), /*operatorNumeric*/
145 (State) in.readSerializable()); /*state*/
/frameworks/base/core/java/android/content/
H A DSyncRequest.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 * Anticipated upload size in bytes.
42 * Anticipated download size in bytes.
52 * Specifies a point in the future at which the sync must have been scheduled to run.
59 /** Sync should be run in lieu of other syncs. */
65 * either one of these or an InvalidStateException will be thrown in
127 * @return the earliest point in time that this sync can be scheduled.
135 * @return the last point in time at which this sync must scheduled.
144 public SyncRequest createFromParcel(Parcel in) {
178 SyncRequest(Parcel in) argument
[all...]
H A DPeriodicSync.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 /** How frequently the sync should be scheduled, in seconds. Kept around for API purposes. */
38 * How much flexibility can be taken in scheduling the sync, in seconds.
86 private PeriodicSync(Parcel in) { argument
87 this.account = in.readParcelable(null);
88 this.authority = in.readString();
89 this.extras = in.readBundle();
90 this.period = in
[all...]
/frameworks/base/core/java/android/view/
H A DDragEvent.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 * object to react to a change in state by changing its appearance or performing other actions.
34 * by changing one or more colors in its displayed image.
42 * Most methods return valid data only for certain event actions. This is summarized in the
43 * following table. Each possible {@link #getAction()} value is listed in the first column. The
149 * from {@link #getClipDescription()} to determine if they can accept the data contained in
155 * A View only receives further drag events if it returns {@code true} in response to
206 * return to its usual drawing state in response to this event.
213 * If a View returned {@code true} in respons
[all...]
H A DInputDevice.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
91 * A {@link MotionEvent} should be interpreted as absolute coordinates in
105 * A {@link MotionEvent} should be interpreted as relative movements in device-specific
117 * A {@link MotionEvent} should be interpreted as absolute coordinates in
218 * For example, an upward swipe should be as an upward focus traversal in the same manner as
219 * pressing up on a D-Pad would be. Swipes to the left, right and down should be treated in a
339 public InputDevice createFromParcel(Parcel in) {
340 return new InputDevice(in);
366 private InputDevice(Parcel in) { argument
[all...]
/frameworks/base/tests/HugeBackup/src/com/android/hugebackup/
H A DHugeAgent.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
90 // may throw an IOException, but in that case something has gone
113 // If we decided that we do in fact need to write our dataset, go
135 // Now, in order to incur deliberate too-much-data failures,
146 // Finally, in all cases, we need to write the new state blob
159 DataInputStream in = new DataInputStream(instream);
162 int stateVersion = in.readInt();
175 int lastFilling = in.readInt();
176 boolean lastMayo = in
[all...]
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipProfile.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
67 public SipProfile createFromParcel(Parcel in) {
68 return new SipProfile(in);
311 private SipProfile(Parcel in) { argument
312 mAddress = (Address) in.readSerializable();
313 mProxyAddress = in.readString();
314 mPassword = in.readString();
315 mDomain = in.readString();
316 mProtocol = in
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.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
72 * battery life. All times are represented in microseconds except where indicated
89 // Maximum number of items we will record in the history.
92 // No, really, THIS is the maximum number of items we will record in the history.
97 // in to one common name.
255 * in to power.
332 * Used as a buffer for reading in data from /proc/wakelocks before it is processed and added
370 Counter(ArrayList<Unpluggable> unpluggables, Parcel in) { argument
372 mPluggedCount = in
464 readSummaryFromParcelLocked(Parcel in) argument
473 SamplingCounter(ArrayList<Unpluggable> unpluggables, Parcel in) argument
494 LongSamplingCounter(ArrayList<Unpluggable> unpluggables, Parcel in) argument
565 readSummaryFromParcelLocked(Parcel in) argument
620 Timer(int type, ArrayList<Unpluggable> unpluggables, Parcel in) argument
768 readSummaryFromParcelLocked(Parcel in) argument
819 SamplingTimer(ArrayList<Unpluggable> unpluggables, boolean inDischarge, Parcel in) argument
924 readSummaryFromParcelLocked(Parcel in) argument
954 BatchTimer(Uid uid, int type, ArrayList<Unpluggable> unpluggables, boolean inDischarge, Parcel in) argument
1097 StopwatchTimer(Uid uid, int type, ArrayList<StopwatchTimer> timerPool, ArrayList<Unpluggable> unpluggables, Parcel in) argument
1251 readSummaryFromParcelLocked(Parcel in) argument
2985 makeWifiBatchedScanBin(int i, Parcel in) argument
3315 readFromParcelLocked(ArrayList<Unpluggable> unpluggables, Parcel in) argument
3461 readTimerFromParcel(int type, ArrayList<StopwatchTimer> pool, ArrayList<Unpluggable> unpluggables, Parcel in) argument
3498 readFromParcelLocked(ArrayList<Unpluggable> unpluggables, Parcel in) argument
3532 readTimerFromParcel(ArrayList<Unpluggable> unpluggables, Parcel in) argument
3554 readFromParcelLocked(ArrayList<Unpluggable> unpluggables, Parcel in) argument
3736 readExcessivePowerFromParcelLocked(Parcel in) argument
3787 readFromParcelLocked(Parcel in) argument
3971 readFromParcelLocked(Parcel in) argument
4135 readFromParcelLocked(Parcel in) argument
5401 readHistory(Parcel in, boolean andOldHistory) argument
5452 readOldHistory(Parcel in) argument
5496 readSummaryFromParcel(Parcel in) argument
5951 readFromParcel(Parcel in) argument
5955 readFromParcelLocked(Parcel in) argument
[all...]
/frameworks/base/core/java/android/net/
H A DInterfaceConfiguration.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
141 public InterfaceConfiguration createFromParcel(Parcel in) {
143 info.mHwAddr = in.readString();
144 if (in.readByte() == 1) {
145 info.mAddr = in.readParcelable(null);
147 final int size = in.readInt();
149 info.mFlags.add(in.readString());
H A DNetworkInfo.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 /** Awaiting response from DHCP server in order to assign IP address information. */
90 * This is the map described in the Javadoc comment above. The positions
176 * info in this {@code NetworkInfo} pertains.
228 * Indicates whether network connectivity exists or is in the process
233 * @return {@code true} if network connectivity exists or is in the process
313 * @return {@code true} if roaming is in effect, {@code false} otherwise.
470 public NetworkInfo createFromParcel(Parcel in) {
471 int netType = in
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DCountedDataInputStream.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 protected CountedDataInputStream(InputStream in) { argument
36 super(in);
45 int r = in.read(b);
52 int r = in.read(b, off, len);
59 int r = in.read();
66 long skip = in.skip(length);
/frameworks/rs/scriptc/
H A Drs_matrix.rsh5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
159 * Multiply two matrix (lhs, rhs) and place the result in m.
263 * @param fovy Field of view, in degrees along the Y axis.
277 rsMatrixMultiply(rs_matrix4x4 *m, float4 in);
283 rsMatrixMultiply(rs_matrix4x4 *m, float3 in);
289 rsMatrixMultiply(rs_matrix4x4 *m, float2 in);
295 rsMatrixMultiply(rs_matrix3x3 *m, float3 in);
301 rsMatrixMultiply(rs_matrix3x3 *m, float2 in);
307 rsMatrixMultiply(rs_matrix2x2 *m, float2 in);
[all...]
/frameworks/base/core/java/android/app/
H A DSearchableInfo.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 // TODO how should these be documented for the developer, in a more structured way than
59 // the current long wordy javadoc in SearchManager.java ?
64 // flags in the searchMode attribute
156 * Checks whether the text in the query field should come from the suggestion intent data.
165 * Checks whether the text in the query field should come from the suggestion title.
174 * Gets the resource id of the description string to use for this source in system search
207 * This can be overriden in any given suggestion using the column
224 * This can be overriden in an
432 ActionKeyInfo(Parcel in) argument
806 SearchableInfo(Parcel in) argument
[all...]
H A DIUiAutomationConnection.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
36 boolean injectInputEvent(in InputEvent event, boolean sync);
/frameworks/av/media/libeffects/testlibs/
H A DAudioShelvingFilter.h6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
29 // in the output, even when changing parameters abruptly.
50 // sampleRate The input/output sample rate, in Hz.
56 // sampleRate The input/output sample rate, in Hz.
69 // This value will be remembered even if the filter is in disabled() state.
70 // millibel Gain value in millibel (1/100 of decibel).
73 // Gets the gain, in millibel, as set.
78 // This value will be remembered even if the filter is in disabled() state.
79 // millihertz Frequency value in mH
98 process(const audio_sample_t in[], audio_sample_t out[], int frameCount) argument
[all...]
/frameworks/av/media/libstagefright/codecs/g711/dec/
H A DSoftG711.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
54 static void DecodeALaw(int16_t *out, const uint8_t *in, size_t inSize);
55 static void DecodeMLaw(int16_t *out, const uint8_t *in, size_t inSize);
/frameworks/base/core/java/android/content/pm/
H A DMacAuthenticatedInputStream.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 public MacAuthenticatedInputStream(InputStream in, Mac mac) { argument
36 super(in);
/frameworks/base/core/java/android/ddm/
H A DDdmHandleExit.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 * Register for the messages we're interested in.
67 ByteBuffer in = wrapChunk(request);
69 int statusCode = in.getInt();

Completed in 643 milliseconds

<<11121314151617181920>>