Searched refs:in (Results 126 - 150 of 1488) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/content/pm/
H A DILauncherApps.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 void addOnAppsChangedListener(String callingPackage, in IOnAppsChangedListener listener);
39 void removeOnAppsChangedListener(in IOnAppsChangedListener listener);
40 ParceledListSlice getLauncherActivities(String packageName, in UserHandle user);
41 ActivityInfo resolveActivity(in ComponentName component, in UserHandle user);
42 void startActivityAsUser(in ComponentName component, in Rect sourceBounds,
43 in Bundl
[all...]
/frameworks/base/core/java/android/net/
H A DINetworkStatsSession.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 NetworkStats getDeviceSummaryForNetwork(in NetworkTemplate template, long start, long end);
30 NetworkStats getSummaryForNetwork(in NetworkTemplate template, long start, long end);
32 NetworkStatsHistory getHistoryForNetwork(in NetworkTemplate template, int fields);
35 NetworkStats getSummaryForAllUid(in NetworkTemplate template, long start, long end, boolean includeTags);
37 NetworkStatsHistory getHistoryForUid(in NetworkTemplate template, int uid, int set, int tag, int fields);
39 NetworkStatsHistory getHistoryIntervalForUid(in NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end);
/frameworks/base/core/java/android/nfc/
H A DINfcFCardEmulation.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 String getSystemCodeForService(int userHandle, in ComponentName service);
28 boolean registerSystemCodeForService(int userHandle, in ComponentName service, String systemCode);
29 boolean removeSystemCodeForService(int userHandle, in ComponentName service);
30 String getNfcid2ForService(int userHandle, in ComponentName service);
31 boolean setNfcid2ForService(int userHandle, in ComponentName service, String nfcid2);
32 boolean enableNfcFForegroundService(in ComponentName service);
/frameworks/base/core/java/android/print/
H A DIPrintDocumentAdapter.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 void setObserver(in IPrintDocumentAdapterObserver observer);
35 void layout(in PrintAttributes oldAttributes, in PrintAttributes newAttributes,
36 ILayoutResultCallback callback, in Bundle metadata, int sequence);
37 void write(in PageRange[] pages, in ParcelFileDescriptor fd,
/frameworks/base/core/java/android/security/
H A DIKeystoreService.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 * This must be kept manually in sync with system/security/keystore until AIDL
36 int insert(String name, in byte[] item, int uid, int flags);
46 in KeystoreArguments args);
47 int import_key(String name, in byte[] data, int uid, int flags);
48 byte[] sign(String name, in byte[] data);
49 int verify(String name, in byte[] data, in byte[] signature);
59 int addRngEntropy(in byt
[all...]
H A DKeystoreArguments.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 * This must be kept in sync with the deserialization code in system/security/keystore.
32 public KeystoreArguments createFromParcel(Parcel in) {
33 return new KeystoreArguments(in);
48 private KeystoreArguments(Parcel in) { argument
49 readFromParcel(in);
64 private void readFromParcel(Parcel in) { argument
65 int length = in
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DIVoiceInteractorCallback.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 in Bundle result);
31 in VoiceInteractor.PickOptionRequest.Option[] selections, in Bundle result);
32 void deliverCompleteVoiceResult(IVoiceInteractorRequest request, in Bundle result);
33 void deliverAbortVoiceResult(IVoiceInteractorRequest request, in Bundle result);
34 void deliverCommandResult(IVoiceInteractorRequest request, boolean finished, in Bundle result);
H A DIVoiceInteractionManagerService.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 showSession(IVoiceInteractionService service, in Bundle sessionArgs, int flags);
34 boolean showSessionFromSession(IBinder token, in Bundle sessionArgs, int flags);
36 int startVoiceActivity(IBinder token, in Intent intent, String resolvedType);
51 SoundTrigger.KeyphraseSoundModel getKeyphraseSoundModel(int keyphraseId, in String bcp47Locale);
55 int updateKeyphraseSoundModel(in SoundTrigger.KeyphraseSoundModel model);
62 int deleteKeyphraseSoundModel(int keyphraseId, in String bcp47Locale);
67 SoundTrigger.ModuleProperties getDspModuleProperties(in IVoiceInteractionService service);
81 int startRecognition(in IVoiceInteractionServic
[all...]
/frameworks/base/media/java/android/media/session/
H A DISessionControllerCallback.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 void onEvent(String event, in Bundle extras);
33 void onPlaybackStateChanged(in PlaybackState state);
34 void onMetadataChanged(in MediaMetadata metadata);
35 void onQueueChanged(in ParceledListSlice queue);
37 void onExtrasChanged(in Bundle extras);
38 void onVolumeInfoChanged(in ParcelableVolumeInfo info);
H A DISessionController.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
35 * Interface to a MediaSession in the system.
39 void sendCommand(String command, in Bundle args, in ResultReceiver cb);
40 boolean sendMediaButton(in KeyEvent mediaButton);
41 void registerCallbackListener(in ISessionControllerCallback cb);
42 void unregisterCallbackListener(in ISessionControllerCallback cb);
54 void prepareFromMediaId(String mediaId, in Bundle extras);
55 void prepareFromSearch(String string, in Bundl
[all...]
/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DIVideoProvider.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 void setPreviewSurface(in Surface surface);
37 void setDisplaySurface(in Surface surface);
43 void sendSessionModifyRequest(in VideoProfile fromProfile, in VideoProfile toProfile);
45 void sendSessionModifyResponse(in VideoProfile responseProfile);
51 void setPauseImage(in Uri uri);
/frameworks/base/telephony/java/com/android/ims/internal/
H A DIImsVideoCallProvider.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 * We don't want to use the same aidl in other places for communication, namely communication
48 void setPreviewSurface(in Surface surface);
50 void setDisplaySurface(in Surface surface);
56 void sendSessionModifyRequest(in VideoProfile fromProfile, in VideoProfile toProfile);
58 void sendSessionModifyResponse(in VideoProfile responseProfile);
64 void setPauseImage(in Uri uri);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DInput.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
56 private Input(Parcel in) { argument
57 text = in.readString();
58 defaultText = in.readString();
59 icon = in.readParcelable(null);
60 minLen = in.readInt();
61 maxLen = in.readInt();
62 ucs2 = in.readInt() == 1 ? true : false;
63 packed = in
[all...]
H A DTextMessage.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
36 private TextMessage(Parcel in) { argument
37 title = in.readString();
38 text = in.readString();
39 icon = in.readParcelable(null);
40 iconSelfExplanatory = in.readInt() == 1 ? true : false;
41 isHighPriority = in.readInt() == 1 ? true : false;
42 responseNeeded = in.readInt() == 1 ? true : false;
43 userClear = in
[all...]
/frameworks/base/core/java/android/security/keymaster/
H A DExportResult.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 ExportResult createFromParcel(Parcel in) {
33 return new ExportResult(in);
41 protected ExportResult(Parcel in) { argument
42 resultCode = in.readInt();
43 exportData = in.createByteArray();
/frameworks/base/media/java/android/media/tv/
H A DITvInputClient.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 onSessionCreated(in String inputId, IBinder token, in InputChannel channel, int seq);
34 void onSessionEvent(in String name, in Bundle args, int seq);
35 void onChannelRetuned(in Uri channelUri, int seq);
36 void onTracksChanged(in List<TvTrackInfo> tracks, int seq);
37 void onTrackSelected(int type, in String trackId, int seq);
41 void onContentBlocked(in Strin
[all...]
/frameworks/base/telephony/java/com/android/ims/internal/uce/presence/
H A DIPresenceListener.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
39 void getVersionCb(in String version );
46 void serviceAvailable(in StatusCode statusCode);
53 void serviceUnAvailable(in StatusCode statusCode);
60 void publishTriggering(in PresPublishTriggerType publishTrigger);
66 void cmdStatus( in PresCmdStatus cmdStatus);
73 void sipResponseReceived(in PresSipResponse sipResponse);
81 void capInfoReceived(in String presentityURI,
82 in PresTupleInf
[all...]
/frameworks/base/wifi/java/android/net/wifi/nan/
H A DIWifiNanManager.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 connect(in IBinder binder, in IWifiNanEventListener listener, int events);
38 void disconnect(in IBinder binder);
39 void requestConfig(in ConfigRequest configRequest);
42 int createSession(in IWifiNanSessionListener listener, int events);
43 void publish(int sessionId, in PublishData publishData, in PublishSettings publishSettings);
44 void subscribe(int sessionId, in SubscribeDat
[all...]
/frameworks/base/telephony/java/com/android/ims/
H A DImsCallForwardInfo.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
44 public ImsCallForwardInfo(Parcel in) { argument
45 readFromParcel(in);
73 private void readFromParcel(Parcel in) { argument
74 mCondition = in.readInt();
75 mStatus = in.readInt();
76 mToA = in.readInt();
77 mNumber = in.readString();
78 mTimeSeconds = in
[all...]
H A DImsSuppServiceNotification.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
50 public ImsSuppServiceNotification(Parcel in) { argument
51 readFromParcel(in);
80 private void readFromParcel(Parcel in) { argument
81 notificationType = in.readInt();
82 code = in.readInt();
83 index = in.readInt();
84 type = in.readInt();
85 number = in
[all...]
H A DImsSsInfo.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 ImsSsInfo(Parcel in) { argument
43 readFromParcel(in);
62 private void readFromParcel(Parcel in) { argument
63 mStatus = in.readInt();
64 mIcbNum = in.readString();
70 public ImsSsInfo createFromParcel(Parcel in) {
71 return new ImsSsInfo(in);
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DSubmitInfo.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 public SubmitInfo createFromParcel(Parcel in) {
50 return new SubmitInfo(in);
59 private SubmitInfo(Parcel in) { argument
60 readFromParcel(in);
74 public void readFromParcel(Parcel in) { argument
75 mRequestId = in.readInt();
76 mLastFrameNumber = in.readLong();
/frameworks/base/core/java/android/os/
H A DCpuUsageInfo.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
28 public CpuUsageInfo createFromParcel(Parcel in) {
29 return new CpuUsageInfo(in);
43 private CpuUsageInfo(Parcel in) { argument
44 readFromParcel(in);
48 * Gets the active time in milliseconds since the system last booted.
50 * @return Active time in milliseconds.
57 * Gets the total time in milliseconds that the CPU has been enabled since the system last
60 * @return Total time in millisecond
77 readFromParcel(Parcel in) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIMms.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 * @param contentUri the content uri from which to read MMS message encoded in standard MMS
41 void sendMessage(int subId, String callingPkg, in Uri contentUri,
42 String locationUrl, in Bundle configOverrides, in PendingIntent sentIntent);
59 in Uri contentUri, in Bundle configOverrides,
60 in PendingIntent downloadedIntent);
76 * @param timestampMillis the message timestamp in millisecond
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DRssiPacketCountInfo.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 private RssiPacketCountInfo(Parcel in) { argument
44 rssi = in.readInt();
45 txgood = in.readInt();
46 txbad = in.readInt();
47 rxgood = in.readInt();
66 public RssiPacketCountInfo createFromParcel(Parcel in) {
67 return new RssiPacketCountInfo(in);

Completed in 5764 milliseconds

1234567891011>>