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

1234567891011>>

/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
31 void init(in IAccessibilityServiceConnection connection, int connectionId, IBinder windowToken);
33 void onAccessibilityEvent(in AccessibilityEvent event);
41 void onKeyEvent(in KeyEvent event, int sequence);
/frameworks/base/core/java/android/app/backup/
H A DRestoreSet.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 public RestoreSet createFromParcel(Parcel in) {
76 return new RestoreSet(in);
84 private RestoreSet(Parcel in) { argument
85 name = in.readString();
86 device = in.readString();
87 token = in.readLong();
/frameworks/base/core/java/android/content/
H A DISyncAdapter.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
30 * be specified in extras, which is guaranteed to not be null.
39 in Account account, in Bundle extras);
54 void initialize(in Account account, String authority);
H A DIIntentReceiver.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
30 void performReceive(in Intent intent, int resultCode, String data,
31 in Bundle extras, boolean ordered, boolean sticky, int sendingUser);
H A DIIntentSender.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 int send(int code, in Intent intent, String resolvedType,
26 IIntentReceiver finishedReceiver, String requiredPermission, in Bundle options);
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DLongParcelable.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 public LongParcelable createFromParcel(Parcel in) {
39 return new LongParcelable(in);
48 private LongParcelable(Parcel in) { argument
49 readFromParcel(in);
62 public void readFromParcel(Parcel in) { argument
63 number = in.readLong();
/frameworks/base/core/java/android/net/
H A DNetworkQuotaInfo.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 public NetworkQuotaInfo(Parcel in) { argument
43 mEstimatedBytes = in.readLong();
44 mSoftLimitBytes = in.readLong();
45 mHardLimitBytes = in.readLong();
74 public NetworkQuotaInfo createFromParcel(Parcel in) {
75 return new NetworkQuotaInfo(in);
H A DINetworkScoreService.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
33 boolean updateScores(in ScoredNetwork[] networks);
48 boolean setActiveScorer(in String packageName);
H A DNetworkState.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
47 public NetworkState(Parcel in) { argument
48 networkInfo = in.readParcelable(null);
49 linkProperties = in.readParcelable(null);
50 networkCapabilities = in.readParcelable(null);
51 network = in.readParcelable(null);
52 subscriberId = in.readString();
53 networkId = in.readString();
73 public NetworkState createFromParcel(Parcel in) {
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DIWallpaperEngine.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 setDisplayPadding(in Rect padding);
30 void dispatchPointer(in MotionEvent event);
32 int z, in Bundle extras);
/frameworks/base/media/java/android/media/tv/
H A DITvInputHardware.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 setSurface(in Surface surface, in TvStreamConfig config);
46 boolean dispatchKeyEventToHdmi(in KeyEvent event);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/renderer/
H A DIPdfRenderer.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 int openDocument(in ParcelFileDescriptor source);
30 in PrintAttributes attributes, in ParcelFileDescriptor destination);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DToneSettings.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 private ToneSettings(Parcel in) { argument
38 duration = in.readParcelable(null);
39 tone = in.readParcelable(null);
40 vibrate = in.readInt() == 1;
57 public ToneSettings createFromParcel(Parcel in) {
58 return new ToneSettings(in);
/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
43 in Notification notification, inout int[] idReceived, int userId);
63 void registerListener(in INotificationListener listener, in ComponentName component, int userid);
64 void unregisterListener(in INotificationListener listener, int userid);
66 void cancelNotificationFromListener(in INotificationListener token, String pkg, String tag, int id);
67 void cancelNotificationsFromListener(in INotificationListener token, in String[] keys);
69 void setNotificationsShownFromListener(in INotificationListene
[all...]
/frameworks/base/core/java/android/os/
H A DPooledStringReader.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
21 * in conjunction with {@link android.os.PooledStringWriter}. This really needs
22 * to be pushed in to Parcel itself, but doing that is... complicated.
33 public PooledStringReader(Parcel in) { argument
34 mIn = in;
35 final int size = in.readInt();
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkIdentitySet.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 public NetworkIdentitySet(DataInputStream in) throws IOException { argument
42 final int version = in.readInt();
43 final int size = in.readInt();
46 final int ignored = in.readInt();
48 final int type = in.readInt();
49 final int subType = in.readInt();
50 final String subscriberId = readOptionalString(in);
53 networkId = readOptionalString(in);
89 readOptionalString(DataInputStream in) argument
[all...]
/frameworks/support/v4/java/android/support/v4/media/session/
H A DIMediaControllerCallback.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
30 void onEvent(String event, in Bundle extras);
34 void onPlaybackStateChanged(in PlaybackStateCompat state);
35 void onMetadataChanged(in MediaMetadataCompat metadata);
36 void onQueueChanged(in List<MediaSessionCompat.QueueItem> queue);
38 void onExtrasChanged(in Bundle extras);
39 void onVolumeInfoChanged(in ParcelableVolumeInfo info);
/frameworks/base/core/java/android/app/trust/
H A DITrustManager.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
29 void registerTrustListener(in ITrustListener trustListener);
30 void unregisterTrustListener(in ITrustListener trustListener);
/frameworks/base/core/java/android/content/pm/
H A DIPackageInstallObserver2.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 onUserActionRequired(in Intent intent);
38 * <td>Two strings are provided in the extras bundle: EXTRA_EXISTING_PERMISSION
45 void onPackageInstalled(String basePackageName, int returnCode, String msg, in Bundle extras);
/frameworks/base/core/java/android/database/
H A DBulkCursorDescriptor.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 public BulkCursorDescriptor createFromParcel(Parcel in) {
34 d.readFromParcel(in);
69 public void readFromParcel(Parcel in) { argument
70 cursor = BulkCursorNative.asInterface(in.readStrongBinder());
71 columnNames = in.readStringArray();
72 wantsAllOnMoveCalls = in.readInt() != 0;
73 count = in.readInt();
74 if (in
[all...]
/frameworks/base/core/java/android/gesture/
H A DGesturePoint.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 static GesturePoint deserialize(DataInputStream in) throws IOException { argument
40 final float x = in.readFloat();
41 final float y = in.readFloat();
43 final long timeStamp = in.readLong();
/frameworks/base/core/java/android/hardware/display/
H A DIDisplayManager.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 registerCallback(in IDisplayManagerCallback callback);
67 int createVirtualDisplay(in IVirtualDisplayCallback callback,
68 in IMediaProjection projectionToken, String packageName, String name,
69 int width, int height, int densityDpi, in Surface surface, int flags);
72 void resizeVirtualDisplay(in IVirtualDisplayCallback token,
76 void setVirtualDisplaySurface(in IVirtualDisplayCallback token, in Surface surface);
79 void releaseVirtualDisplay(in IVirtualDisplayCallbac
[all...]
/frameworks/base/core/java/android/print/
H A DIPrintSpooler.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 getPrintJobInfos(IPrintSpoolerCallbacks callback, in ComponentName componentName,
39 void getPrintJobInfo(in PrintJobId printJobId, IPrintSpoolerCallbacks callback,
41 void createPrintJob(in PrintJobInfo printJob);
42 void setPrintJobState(in PrintJobId printJobId, int status, String stateReason,
44 void setPrintJobTag(in PrintJobId printJobId, String tag, IPrintSpoolerCallbacks callback,
46 void writePrintJobData(in ParcelFileDescriptor fd, in PrintJobId printJobId);
48 void setPrintJobCancelling(in PrintJobI
[all...]
H A DIPrinterDiscoveryObserver.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 onPrintersAdded(in ParceledListSlice printers);
30 void onPrintersRemoved(in ParceledListSlice printerIds);
/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterBlob.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 KeymasterBlob createFromParcel(Parcel in) {
34 return new KeymasterBlob(in);
42 protected KeymasterBlob(Parcel in) { argument
43 blob = in.createByteArray();

Completed in 2667 milliseconds

1234567891011>>