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

1234567891011>>

/frameworks/base/core/java/com/android/internal/statusbar/
H A DIStatusBar.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
29 void setIcon(String slot, in StatusBarIcon icon);
40 * separately in fullscreenStackVis and dockedStackVis
41 * @param fullscreenStackVis the flags which only apply in the region of the fullscreen stack,
43 * @param dockedStackVis the flags that only apply in the region of the docked stack, which is
46 * @param fullscreenBounds the current bounds of the fullscreen stack, in screen coordinates
47 * @param dockedBounds the current bounds of the docked stack, in screen coordinates
50 in Rect fullscreenBounds, in Rec
[all...]
/frameworks/base/core/java/com/android/internal/textservice/
H A DISpellCheckerSession.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
26 in TextInfo[] textInfos, int suggestionsLimit, boolean multipleWords);
27 void onGetSentenceSuggestionsMultiple(in TextInfo[] textInfos, int suggestionsLimit);
H A DISpellCheckerSessionListener.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
26 void onGetSuggestions(in SuggestionsInfo[] results);
27 void onGetSentenceSuggestions(in SentenceSuggestionsInfo[] result);
/frameworks/base/location/java/android/location/
H A DILocationListener.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 onLocationChanged(in Location location);
29 void onStatusChanged(String provider, int status, in Bundle extras);
/frameworks/base/media/java/android/media/
H A DIMediaHTTPConnection.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
26 IBinder connect(in String uri, in String headers);
/frameworks/base/media/java/android/media/session/
H A DISession.aidl4 * you may not use this file except in compliance with the License.
9 * Unless required by applicable law or agreed to in writing, software
29 * Interface to a MediaSession in the system.
33 void sendEvent(String event, in Bundle data);
37 void setMediaButtonReceiver(in PendingIntent mbr);
38 void setLaunchPendingIntent(in PendingIntent pi);
42 void setMetadata(in MediaMetadata metadata);
43 void setPlaybackState(in PlaybackState state);
44 void setQueue(in ParceledListSlice queue);
46 void setExtras(in Bundl
[all...]
/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DICallScreeningService.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
29 void screenCall(in ICallScreeningAdapter adapter, in ParcelableCall call);
/frameworks/base/wifi/java/android/net/wifi/nan/
H A DIWifiNanEventListener.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
28 void onConfigCompleted(in ConfigRequest completedConfig);
29 void onConfigFailed(in ConfigRequest failedConfig, int reason);
/frameworks/rs/java/tests/ScriptGroupTest/src/com/android/rs/sgtest/
H A Dcolormatrix_f.rs5 * 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 float4 RS_KERNEL colormatrix(float4 in) {
40 return rsMatrixMultiply(&Mat, in);
/frameworks/base/core/java/com/android/internal/app/
H A DIBatteryStats.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 // be kept in sync with frameworks/native/include/binder/IBatteryStats.h
48 // Remaining methods are only used in Java.
56 // Return the computed amount of time remaining on battery, in milliseconds.
60 // Return the computed amount of time remaining to fully charge, in milliseconds.
75 void noteStartWakelockFromSource(in WorkSource ws, int pid, String name, String historyName,
77 void noteChangeWakelockFromSource(in WorkSource ws, int pid, String name, String histyoryName,
78 int type, in WorkSource newWs, int newPid, String newName,
80 void noteStopWakelockFromSource(in WorkSourc
[all...]
/frameworks/base/core/java/android/app/
H A DINotificationManager.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
45 in Notification notification, inout int[] idReceived, int userId);
65 void registerListener(in INotificationListener listener, in ComponentName component, int userid);
66 void unregisterListener(in INotificationListener listener, int userid);
68 void cancelNotificationFromListener(in INotificationListener token, String pkg, String tag, int id);
69 void cancelNotificationsFromListener(in INotificationListener token, in String[] keys);
71 void requestBindListener(in ComponentNam
[all...]
H A DIActivityContainer.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
29 void setSurface(in Surface surface, int width, int height, int density);
30 int startActivity(in Intent intent);
31 int startActivityIntentSender(in IIntentSender intentSender);
34 boolean injectEvent(in InputEvent event);
H A DIActivityPendingResult.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 boolean sendResult(int code, String data, in Bundle ex);
H A DIAlarmListener.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
28 void doAlarm(in IAlarmCompleteListener callback);
/frameworks/av/media/img_utils/include/img_utils/
H A DEndianUtils.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
44 T convertToBigEndian(T in);
50 T convertToLittleEndian(T in);
58 * Wrap the given Output. Calling write methods will result in
96 * Count elements in the buffer will be written with the endianness set for this
98 * be skipped in the buffer before writing.
167 inline uint8_t convertToBigEndian(uint8_t in) { argument
168 return in;
172 inline int8_t convertToBigEndian(int8_t in) { argument
177 convertToBigEndian(uint16_t in) argument
182 convertToBigEndian(int16_t in) argument
187 convertToBigEndian(uint32_t in) argument
192 convertToBigEndian(int32_t in) argument
197 convertToBigEndian(uint64_t in) argument
202 convertToBigEndian(int64_t in) argument
207 convertToLittleEndian(uint8_t in) argument
212 convertToLittleEndian(int8_t in) argument
217 convertToLittleEndian(uint16_t in) argument
222 convertToLittleEndian(int16_t in) argument
227 convertToLittleEndian(uint32_t in) argument
232 convertToLittleEndian(int32_t in) argument
237 convertToLittleEndian(uint64_t in) argument
242 convertToLittleEndian(int64_t in) argument
[all...]
/frameworks/base/core/java/android/net/
H A DLinkQualityInfo.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
64 /* Sample duration in millisecond */
115 public LinkQualityInfo createFromParcel(Parcel in) {
116 int objectType = in.readInt();
119 li.initializeFromParcel(in);
122 return WifiLinkQualityInfo.createFromParcelBody(in);
124 return MobileLinkQualityInfo.createFromParcelBody(in);
138 protected void initializeFromParcel(Parcel in) { argument
139 mNetworkType = in
[all...]
H A DMobileLinkQualityInfo.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 public static MobileLinkQualityInfo createFromParcelBody(Parcel in) { argument
73 li.initializeFromParcel(in);
75 li.mMobileNetworkType = in.readInt();
76 li.mRssi = in.readInt();
77 li.mGsmErrorRate = in.readInt();
78 li.mCdmaDbm = in.readInt();
79 li.mCdmaEcio = in.readInt();
80 li.mEvdoDbm = in
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
H A DTile.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
68 * Category in which the tile should be placed.
118 public void readFromParcel(Parcel in) { argument
119 title = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
120 summary = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
121 if (in.readByte() != 0) {
122 icon = Icon.CREATOR.createFromParcel(in);
124 if (in.readByte() != 0) {
125 intent = Intent.CREATOR.createFromParcel(in);
137 Tile(Parcel in) argument
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DParcelableCallAnalytics.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
48 public ParcelableCallAnalytics createFromParcel(Parcel in) {
49 return new ParcelableCallAnalytics(in);
58 // The start time of the call in milliseconds since Jan. 1, 1970, rounded to the nearest
62 // The duration of the call, in milliseconds.
68 // true if the call came in while another call was in progress or if the user dialed this call
69 // while in the middle of another call.
106 public ParcelableCallAnalytics(Parcel in) { argument
181 readByteAsBoolean(Parcel in) argument
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicBlend.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
93 extern "C" int rsdIntrinsicBlend_K(uchar4 *out, uchar4 const *in, int slot,
119 uchar4 *in = (uchar4 *)info->inPtr[0]; local
127 if (rsdIntrinsicBlend_K(out, in, info->slot, x1, x2) >= 0)
138 for (;x1 < x2; x1++, out++, in++) {
139 *out = *in;
150 rsdIntrinsicBlendSrcOver_K(out, in, len);
153 in += len << 3;
157 for (;x1 < x2; x1++, out++, in
[all...]
/frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/
H A Dhealing.rs5 * 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 static float3 getF32_3(AllocationF32_3 in,uint32_t x,uint32_t y) {
72 return rsGetElementAt_float3(in, x, y);
91 float3 __attribute__((kernel)) convert_to_f(uchar4 in) {
92 return convert_float3(in.xyz);
95 float3 __attribute__((kernel)) copyMasked(uchar in, uint32_t x, uint32_t y) {
96 return getF32_3((in>0) ? src : dest1, x, y);
99 uchar4 __attribute__((kernel)) convert_to_uc(float3 in) {
100 in
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioBiquadFilter.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
30 // Filter can operate in an enabled (active) or disabled (bypassed) states.
44 // sampleRate Sample rate, in Hz.
49 // sampleRate Sample rate, in Hz.
54 // happens immediately and might cause discontinuities in the output.
59 // This change happens immediately and might cause discontinuities in the
68 // introducing discontinuities in the output. Otherwise,
73 // samples. Processing can be done in-place, by passing the same buffer as
75 // in Th
[all...]
/frameworks/base/core/java/android/accessibilityservice/
H A DIAccessibilityServiceClient.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 void init(in IAccessibilityServiceConnection connection, int connectionId, IBinder windowToken);
34 void onAccessibilityEvent(in AccessibilityEvent event);
42 void onKeyEvent(in KeyEvent event, int sequence);
44 void onMagnificationChanged(in Region region, float scale, float centerX, float centerY);
/frameworks/base/core/java/android/accounts/
H A DIAccountAuthenticatorResponse.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
25 void onResult(in Bundle value);
H A DIAccountManagerResponse.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
25 void onResult(in Bundle value);

Completed in 2758 milliseconds

1234567891011>>