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

1234567891011>>

/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DIntFloat.java11 public IntFloat createFromParcel(Parcel in) {
12 return new IntFloat(in);
23 private IntFloat(Parcel in) { argument
24 readFromParcel(in);
36 public void readFromParcel(Parcel in) { argument
37 index = in.readInt();
38 value = in.readFloat();
H A DStringFloat.java12 public StringFloat createFromParcel(Parcel in) {
13 return new StringFloat(in);
29 private StringFloat(Parcel in) { argument
30 readFromParcel(in);
42 public void readFromParcel(Parcel in) { argument
43 key = in.readString();
44 value = in.readFloat();
H A DStringString.java12 public StringString createFromParcel(Parcel in) {
13 return new StringString(in);
24 private StringString(Parcel in) { argument
25 readFromParcel(in);
37 public void readFromParcel(Parcel in) { argument
38 key = in.readString();
39 value = in.readString();
/frameworks/base/core/java/android/app/
H A DIBackupAgent.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
23 * Interface presented by applications being asked to participate in the
51 void doBackup(in ParcelFileDescriptor oldState,
52 in ParcelFileDescriptor data,
53 in ParcelFileDescriptor newState,
79 void doRestore(in ParcelFileDescriptor data,
80 int appVersionCode, in ParcelFileDescriptor newState,
100 void doFullBackup(in ParcelFileDescriptor data, int token, IBackupManager callbackBinder);
112 * However, the quota can change, so do not assume that the value passed in her
[all...]
/frameworks/base/core/java/android/service/notification/
H A DINotificationListener.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
27 void onListenerConnected(in NotificationRankingUpdate update);
28 void onNotificationPosted(in IStatusBarNotificationHolder notificationHolder,
29 in NotificationRankingUpdate update);
30 void onNotificationRemoved(in IStatusBarNotificationHolder notificationHolder,
31 in NotificationRankingUpdate update);
32 void onNotificationRankingUpdate(in NotificationRankingUpdate update);
37 void onNotificationEnqueued(in IStatusBarNotificationHolder notificationHolder, int importance, boolean user);
/frameworks/base/core/tests/coretests/src/android/content/
H A DMemoryFileProviderTest.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
30 * in a different process.
40 InputStream in = resolver.openInputStream(uri);
41 assertNotNull(in);
42 int count = in.read(buf);
44 assertEquals(-1, in.read());
45 in.close();
57 InputStream in = resolver.openInputStream(uri);
58 assertNotNull("Failed to open stream number " + i, in);
[all...]
/frameworks/base/media/java/android/media/session/
H A DISessionManager.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
31 ISession createSession(String packageName, in ISessionCallback cb, String tag, int userId);
32 List<IBinder> getSessions(in ComponentName compName, int userId);
33 void dispatchMediaKeyEvent(in KeyEvent keyEvent, boolean needWakeLock);
35 void addSessionsListener(in IActiveSessionsListener listener, in ComponentName compName,
37 void removeSessionsListener(in IActiveSessionsListener listener);
40 void setRemoteVolumeController(in IRemoteVolumeController rvc);
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DISipService.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 open(in SipProfile localProfile, String opPackageName);
29 void open3(in SipProfile localProfile,
30 in PendingIntent incomingCallPendingIntent,
31 in ISipSessionListener listener, String opPackageName);
32 void close(in String localProfileUri, String opPackageName);
38 ISipSession createSession(in SipProfile localProfile,
39 in ISipSessionListener listener, String opPackageName);
/frameworks/base/core/java/android/net/
H A DIConnectivityManager.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
51 NetworkInfo getNetworkInfoForUid(in Network network, int uid, boolean ignoreBlocked);
61 LinkProperties getLinkProperties(in Network network);
63 NetworkCapabilities getNetworkCapabilities(in Network network);
70 boolean requestRouteToHostAddress(int networkType, in byte[] hostAddress);
80 void startTethering(int type, in ResultReceiver receiver, boolean showProvisioningUi);
102 void reportNetworkConnectivity(in Network network, boolean hasConnectivity);
106 void setGlobalProxy(in ProxyInfo p);
108 ProxyInfo getProxyForNetwork(in Networ
[all...]
H A DINetworkManagementEventObserver.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
38 * this method is invoked when the cable is plugged in or unplugged.
66 void addressUpdated(String iface, in LinkAddress address);
74 void addressRemoved(String iface, in LinkAddress address);
90 * @param tsNanos Elapsed realtime in nanos when the state of the network interface changed.
98 * @param lifetime The time in seconds for which the DNS servers may be used.
101 void interfaceDnsServerInfo(String iface, long lifetime, in String[] servers);
106 void routeUpdated(in RouteInfo route);
111 void routeRemoved(in RouteInf
[all...]
/frameworks/base/core/java/android/print/
H A DIPrintManager.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 PrintJobInfo getPrintJobInfo(in PrintJobId printJobId, int appId, int userId);
42 Bundle print(String printJobName, in IPrintDocumentAdapter printAdapter,
43 in PrintAttributes attributes, String packageName, int appId, int userId);
44 void cancelPrintJob(in PrintJobId printJobId, int appId, int userId);
45 void restartPrintJob(in PrintJobId printJobId, int appId, int userId);
47 void addPrintJobStateChangeListener(in IPrintJobStateChangeListener listener,
49 void removePrintJobStateChangeListener(in IPrintJobStateChangeListener listener,
60 void addPrintServicesChangeListener(in IPrintServicesChangeListene
[all...]
/frameworks/base/core/java/android/content/pm/
H A DIPackageManager.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
69 String[] currentToCanonicalPackageNames(in String[] names);
70 String[] canonicalToCurrentPackageNames(in String[] names);
82 ActivityInfo getActivityInfo(in ComponentName className, int flags, int userId);
84 boolean activitySupportsIntent(in ComponentName className, in Intent intent,
87 ActivityInfo getReceiverInfo(in ComponentName className, int flags, int userId);
89 ServiceInfo getServiceInfo(in ComponentName className, int flags, int userId);
91 ProviderInfo getProviderInfo(in ComponentNam
[all...]
/frameworks/base/core/java/android/hardware/usb/
H A DIUsbManager.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 * The native fd can be passed to usb_device_new() in libusbhost.
44 ParcelFileDescriptor openAccessory(in UsbAccessory accessory);
49 void setDevicePackage(in UsbDevice device, String packageName, int userId);
54 void setAccessoryPackage(in UsbAccessory accessory, String packageName, int userId);
57 boolean hasDevicePermission(in UsbDevice device);
60 boolean hasAccessoryPermission(in UsbAccessory accessory);
66 void requestDevicePermission(in UsbDevice device, String packageName, in PendingInten
[all...]
/frameworks/base/core/java/com/android/internal/backup/
H A DIBackupTransport.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
42 * @return An Intent that can be passed to Context.startActivity() in order to
68 * destination string, and the management intent will be placed in an overflow
74 * @return An intent that can be passed to Context.startActivity() in order to
111 * backoff delay, in milliseconds, after which the Backup Manager should try again.
114 * in milliseconds to suggest deferring the backup pass for a while.
145 int performBackup(in PackageInfo packageInfo, in ParcelFileDescriptor inFd, int flags);
155 int clearBackupData(in PackageInf
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethod.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 * Top-level interface to an input method component (implemented in a
37 void bindInput(in InputBinding binding);
41 void startInput(in IInputContext inputContext, int missingMethods, in EditorInfo attribute);
43 void restartInput(in IInputContext inputContext, int missingMethods, in EditorInfo attribute);
45 void createSession(in InputChannel channel, IInputSessionCallback callback);
51 void showSoftInput(int flags, in ResultReceive
[all...]
/frameworks/multidex/library/test/src/android/support/multidex/
H A DZipEntryReader.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
17 /* Apache Harmony HEADER because the code in this class comes mostly from ZipFile, ZipEntry and
50 static ZipEntry readEntry(ByteBuffer in) throws IOException { argument
52 int sig = in.getInt();
57 in.position(8);
58 int gpbf = in.getShort() & 0xffff;
64 int compressionMethod = in.getShort() & 0xffff;
65 int time = in.getShort() & 0xffff;
66 int modDate = in
[all...]
/frameworks/av/camera/aidl/android/hardware/camera2/
H A DICameraDeviceCallbacks.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 oneway void onDeviceError(int errorCode, in CaptureResultExtras resultExtras);
36 oneway void onCaptureStarted(in CaptureResultExtras resultExtras, long timestamp);
37 oneway void onResultReceived(in CameraMetadataNative result,
38 in CaptureResultExtras resultExtras);
46 oneway void onRepeatingRequestError(in long lastFrameNumber);
/frameworks/base/core/java/android/service/dreams/
H A DIDreamManager.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 setDreamComponents(in ComponentName[] componentNames);
31 void testDream(in ComponentName componentName);
33 void finishSelf(in IBinder token, boolean immediate);
34 void startDozing(in IBinder token, int screenState, int screenBrightness);
35 void stopDozing(in IBinder token);
/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DIInCallService.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
27 * Internal remote interface for in-call services.
34 void setInCallAdapter(in IInCallAdapter inCallAdapter);
36 void addCall(in ParcelableCall call);
38 void updateCall(in ParcelableCall call);
44 void onCallAudioStateChanged(in CallAudioState callAudioState);
52 void onConnectionEvent(String callId, String event, in Bundle extras);
H A DITelecomService.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 * Brings the in-call screen to the foreground if there is an active call.
43 PhoneAccountHandle getDefaultOutgoingPhoneAccount(in String uriScheme, String callingPackage);
53 void setUserSelectedOutgoingPhoneAccount(in PhoneAccountHandle account);
64 List<PhoneAccountHandle> getPhoneAccountsSupportingScheme(in String uriScheme,
70 List<PhoneAccountHandle> getPhoneAccountsForPackage(in String packageName);
75 PhoneAccount getPhoneAccount(in PhoneAccountHandle account);
105 void registerPhoneAccount(in PhoneAccount metadata);
110 void unregisterPhoneAccount(in PhoneAccountHandl
[all...]
/frameworks/base/tests/OneMedia/src/com/android/onemedia/
H A DIPlayerService.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
27 void registerCallback(in IPlayerCallback cb);
28 void unregisterCallback(in IPlayerCallback cb);
29 void sendRequest(String action, in Bundle params, in IRequestCallback cb);
30 void setIcon(in Bitmap icon);
/frameworks/base/core/java/com/android/internal/appwidget/
H A DIAppWidgetService.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 in int[] appWidgetIds, out int[] updatedIds);
51 void updateAppWidgetIds(String callingPackage, in int[] appWidgetIds, in RemoteViews views);
52 void updateAppWidgetOptions(String callingPackage, int appWidgetId, in Bundle extras);
54 void partiallyUpdateAppWidgetIds(String callingPackage, in int[] appWidgetIds,
55 in RemoteViews views);
56 void updateAppWidgetProvider(in ComponentName provider, in RemoteView
[all...]
/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
74 public RestoreSet createFromParcel(Parcel in) {
75 return new RestoreSet(in);
83 private RestoreSet(Parcel in) { argument
84 name = in.readString();
85 device = in.readString();
86 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);
/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();

Completed in 7505 milliseconds

1234567891011>>