Searched refs:in (Results 251 - 275 of 1327) sorted by relevance

<<11121314151617181920>>

/frameworks/base/core/java/android/hardware/
H A DCameraInfo.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 public void readFromParcel(Parcel in) { argument
44 info.facing = in.readInt();
45 info.orientation = in.readInt();
51 public CameraInfo createFromParcel(Parcel in) {
53 info.readFromParcel(in);
/frameworks/base/core/java/android/os/
H A DIUserManager.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
36 UserInfo createUser(in String name, int flags);
37 UserInfo createProfileForUser(in String name, int flags, int userHandle);
41 void setUserIcon(int userHandle, in Bitmap icon);
53 boolean hasUserRestriction(in String restrictionKey, int userHandle);
54 void setUserRestrictions(in Bundle restrictions, int userHandle);
57 void setApplicationRestrictions(in String packageName, in Bundle restrictions,
59 Bundle getApplicationRestrictions(in Strin
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DSdpMasRecord.java4 * you may not use this file except in compliance with the License.
9 * Unless required by applicable law or agreed to in writing, software
52 public SdpMasRecord(Parcel in){ argument
53 this.mMasInstanceId = in.readInt();
54 this.mL2capPsm = in.readInt();
55 this.mRfcommChannelNumber = in.readInt();
56 this.mProfileVersion = in.readInt();
57 this.mSupportedFeatures = in.readInt();
58 this.mSupportedMessageTypes = in.readInt();
59 this.mServiceName = in
[all...]
H A DBluetoothActivityEnergyInfo.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
65 public BluetoothActivityEnergyInfo createFromParcel(Parcel in) {
66 long timestamp = in.readLong();
67 int stackState = in.readInt();
68 long txTime = in.readLong();
69 long rxTime = in.readLong();
70 long idleTime = in.readLong();
71 long energyUsed = in.readLong();
101 * @return tx time in m
[all...]
H A DSdpOppOpsRecord.java4 * you may not use this file except in compliance with the License.
9 * Unless required by applicable law or agreed to in writing, software
70 public SdpOppOpsRecord(Parcel in){ argument
71 this.mRfcommChannel = in.readInt();
72 this.mL2capPsm = in.readInt();
73 this.mProfileVersion = in.readInt();
74 this.mServiceName = in.readString();
75 int arrayLength = in.readInt();
78 in.readByteArray(bytes);
110 public SdpOppOpsRecord createFromParcel(Parcel in) {
[all...]
H A DSdpPseRecord.java4 * you may not use this file except in compliance with the License.
9 * Unless required by applicable law or agreed to in writing, software
44 public SdpPseRecord(Parcel in){ argument
45 this.mRfcommChannelNumber = in.readInt();
46 this.mL2capPsm = in.readInt();
47 this.mProfileVersion = in.readInt();
48 this.mSupportedFeatures = in.readInt();
49 this.mSupportedRepositories = in.readInt();
50 this.mServiceName = in.readString();
118 public SdpPseRecord createFromParcel(Parcel in) {
[all...]
/frameworks/base/core/java/com/android/internal/textservice/
H A DITextServicesManager.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
35 oneway void getSpellCheckerService(String sciId, in String locale,
36 in ITextServicesSessionListener tsListener,
37 in ISpellCheckerSessionListener scListener, in Bundle bundle);
38 oneway void finishSpellCheckerService(in ISpellCheckerSessionListener listener);
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethodSession.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
34 void updateExtractedText(int token, in ExtractedText text);
42 void updateCursor(in Rect newCursor);
44 void displayCompletions(in CompletionInfo[] completions);
46 void appPrivateCommand(String action, in Bundle data);
52 void updateCursorAnchorInfo(in CursorAnchorInfo cursorAnchorInfo);
/frameworks/base/location/java/com/android/internal/location/
H A DProviderProperties.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 * True if the use of this provider may result in a
115 public ProviderProperties createFromParcel(Parcel in) {
116 boolean requiresNetwork = in.readInt() == 1;
117 boolean requiresSatellite = in.readInt() == 1;
118 boolean requiresCell = in.readInt() == 1;
119 boolean hasMonetaryCost = in.readInt() == 1;
120 boolean supportsAltitude = in.readInt() == 1;
121 boolean supportsSpeed = in
[all...]
/frameworks/base/core/java/android/app/assist/
H A DAssistContent.java12 * assistant at the user's request. This is filled in by
61 * {@link android.app.Activity#getIntent Activity.getIntent}. Can be modified in-place.
68 * Returns whether or not the current Intent was explicitly provided in
87 * Return the current {@link #setClipData}, which you can modify in-place.
111 * This URI could be opened in a web browser, or in the app as an
115 * being shown in the app; if the app does not have such a representation, it should
137 AssistContent(Parcel in) { argument
138 if (in.readInt() != 0) {
139 mIntent = Intent.CREATOR.createFromParcel(in);
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DMenu.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
57 private Menu(Parcel in) { argument
58 title = in.readString();
59 titleIcon = in.readParcelable(null);
62 int size = in.readInt();
64 Item item = in.readParcelable(null);
67 defaultItem = in.readInt();
68 softKeyPreferred = in.readInt() == 1 ? true : false;
69 helpAvailable = in
[all...]
/frameworks/base/core/java/android/view/
H A DIWindowSession.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
38 int add(IWindow window, int seq, in WindowManager.LayoutParams attrs,
39 in int viewVisibility, out Rect outContentInsets, out Rect outStableInsets,
41 int addToDisplay(IWindow window, int seq, in WindowManager.LayoutParams attrs,
42 in int viewVisibility, in int layerStackId, out Rect outContentInsets,
44 int addWithoutInputChannel(IWindow window, int seq, in WindowManager.LayoutParams attrs,
45 in int viewVisibility, out Rect outContentInsets, out Rect outStableInsets);
46 int addToDisplayWithoutInputChannel(IWindow window, int seq, in WindowManage
[all...]
/frameworks/av/services/audioflinger/
H A DAudioResamplerFirOps.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
48 int32_t mulRL(int left, int32_t in, uint32_t vRL) argument
53 asm( "smultb %[out], %[in], %[vRL] \n"
55 : [in]"%r"(in), [vRL]"r"(vRL)
58 asm( "smultt %[out], %[in], %[vRL] \n"
60 : [in]"%r"(in), [vRL]"r"(vRL)
66 return static_cast<int32_t>((static_cast<int64_t>(in) *
71 mulAdd(int16_t in, int16_t v, int32_t a) argument
86 mulAdd(int16_t in, int32_t v, int32_t a) argument
101 mulAdd(int32_t in, int32_t v, int32_t a) 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
35 boolean hasKeys(int deviceId, int sourceMask, in int[] keyCodes, out boolean[] keyExists);
42 boolean injectInputEvent(in InputEvent ev, int mode);
47 in TouchCalibration calibration);
52 String getCurrentKeyboardLayoutForInputDevice(in InputDeviceIdentifier identifier);
53 void setCurrentKeyboardLayoutForInputDevice(in InputDeviceIdentifier identifier,
55 String[] getKeyboardLayoutsForInputDevice(in InputDeviceIdentifier identifier);
56 void addKeyboardLayoutForInputDevice(in InputDeviceIdentifier identifier,
58 void removeKeyboardLayoutForInputDevice(in InputDeviceIdentifie
[all...]
H A DTouchCalibration.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 public TouchCalibration createFromParcel(Parcel in) {
34 return new TouchCalibration(in);
71 public TouchCalibration(Parcel in) { argument
72 mXScale = in.readFloat();
73 mXYMix = in.readFloat();
74 mXOffset = in.readFloat();
75 mYXMix = in.readFloat();
76 mYScale = in
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
H A DIAidlTest.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
25 AidlTest.TestParcelable parcelableIn(in AidlTest.TestParcelable p);
34 boolean[] booleanArray(in boolean[] a0, out boolean[] a1, inout boolean[] a2);
35 char[] charArray(in char[] a0, out char[] a1, inout char[] a2);
36 int[] intArray(in int[] a0, out int[] a1, inout int[] a2);
37 long[] longArray(in long[] a0, out long[] a1, inout long[] a2);
38 float[] floatArray(in float[] a0, out float[] a1, inout float[] a2);
39 double[] doubleArray(in double[] a0, out double[] a1, inout double[] a2);
40 String[] stringArray(in Strin
[all...]
/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DIConnectionServiceAdapter.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
41 in ConnectionRequest request,
42 in ParcelableConnection connection);
50 void setDisconnected(String callId, in DisconnectCause disconnectCause);
62 void addConferenceCall(String callId, in ParcelableConference conference);
78 void setStatusHints(String callId, in StatusHints statusHints);
80 void setAddress(String callId, in Uri address, int presentation);
84 void setConferenceableConnections(String callId, in List<String> conferenceableCallIds);
86 void addExistingConnection(String callId, in ParcelableConnectio
[all...]
/frameworks/base/core/java/android/app/job/
H A DJobParameters.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 * yourself, instead it is handed in to your application by the System.
53 * @return The extras you passed in when constructing this job with
76 private JobParameters(Parcel in) { argument
77 jobId = in.readInt();
78 extras = in.readPersistableBundle();
79 callback = in.readStrongBinder();
80 overrideDeadlineExpired = in.readInt() == 1;
98 public JobParameters createFromParcel(Parcel in) {
[all...]
/frameworks/base/core/java/android/hardware/fingerprint/
H A DFingerprint.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 private Fingerprint(Parcel in) { argument
39 mName = in.readString();
40 mGroupId = in.readInt();
41 mFingerId = in.readInt();
42 mDeviceId = in.readLong();
85 public Fingerprint createFromParcel(Parcel in) {
86 return new Fingerprint(in);
/frameworks/base/core/java/android/net/
H A DWifiLinkQualityInfo.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
60 public static WifiLinkQualityInfo createFromParcelBody(Parcel in) { argument
63 li.initializeFromParcel(in);
65 li.mType = in.readInt();
66 li.mRssi = in.readInt();
67 li.mTxGood = in.readLong();
68 li.mTxBad = in.readLong();
70 li.mBssid = in.readString();
92 * @return the BSSID, in th
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DIccOpenLogicalChannelResponse.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 * STATUS_UNKNOWN_ERROR: Unknown error in open channel command.
63 private IccOpenLogicalChannelResponse(Parcel in) { argument
64 mChannel = in.readInt();
65 mStatus = in.readInt();
66 int arrayLength = in.readInt();
69 in.readByteArray(mSelectResponse);
117 public IccOpenLogicalChannelResponse createFromParcel(Parcel in) {
118 return new IccOpenLogicalChannelResponse(in);
[all...]
/frameworks/base/telephony/java/android/telephony/cdma/
H A DCdmaSmsCbProgramData.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 /** Language used for service category name (defined in BearerData.LANGUAGE_*). */
108 CdmaSmsCbProgramData(Parcel in) { argument
109 mOperation = in.readInt();
110 mCategory = in.readInt();
111 mLanguage = in.readInt();
112 mMaxMessages = in.readInt();
113 mAlertOption = in.readInt();
114 mCategoryName = in
[all...]
/frameworks/base/telephony/java/com/android/ims/
H A DImsStreamMediaProfile.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 public ImsStreamMediaProfile(Parcel in) { argument
75 readFromParcel(in);
121 private void readFromParcel(Parcel in) { argument
122 mAudioQuality = in.readInt();
123 mAudioDirection = in.readInt();
124 mVideoQuality = in.readInt();
125 mVideoDirection = in.readInt();
131 public ImsStreamMediaProfile createFromParcel(Parcel in) {
[all...]
/frameworks/base/core/java/android/content/
H A DSyncStats.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 * that was specified in the request. The user needs to take some action to resolve
48 * increment this value although it may still do so in order to record that it had to
108 public SyncStats(Parcel in) { argument
109 numAuthExceptions = in.readLong();
110 numIoExceptions = in.readLong();
111 numParseExceptions = in.readLong();
112 numConflictDetectedExceptions = in.readLong();
113 numInserts = in
[all...]
/frameworks/base/core/java/com/android/internal/content/
H A DReferrerIntent.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 ReferrerIntent(Parcel in) { argument
39 readFromParcel(in);
40 mReferrer = in.readString();

Completed in 710 milliseconds

<<11121314151617181920>>