/frameworks/base/core/java/android/view/ |
IWindowSession.aidl | 130 IBinder prepareDrag(IWindow window, int flags, 136 boolean performDrag(IWindow window, IBinder dragToken, float touchX, float touchY, 162 void setWallpaperPosition(IBinder windowToken, float x, float y, float xstep, float ystep); 164 void wallpaperOffsetsComplete(IBinder window); 166 Bundle sendWallpaperCommand(IBinder window, String action, int x, int y, 169 void wallpaperCommandComplete(IBinder window, in Bundle result);
|
/frameworks/base/libs/camera/ |
ICameraRecordingProxyListener.cpp | 27 DATA_CALLBACK_TIMESTAMP = IBinder::FIRST_CALL_TRANSACTION, 33 BpCameraRecordingProxyListener(const sp<IBinder>& impl) 46 remote()->transact(DATA_CALLBACK_TIMESTAMP, data, &reply, IBinder::FLAG_ONEWAY);
|
/frameworks/base/media/libmedia/ |
IMediaPlayerClient.cpp | 27 NOTIFY = IBinder::FIRST_CALL_TRANSACTION, 33 BpMediaPlayerClient(const sp<IBinder>& impl) 48 remote()->transact(NOTIFY, data, &reply, IBinder::FLAG_ONEWAY);
|
IMediaRecorderClient.cpp | 27 NOTIFY = IBinder::FIRST_CALL_TRANSACTION, 33 BpMediaRecorderClient(const sp<IBinder>& impl) 45 remote()->transact(NOTIFY, data, &reply, IBinder::FLAG_ONEWAY);
|
IEffectClient.cpp | 28 CONTROL_STATUS_CHANGED = IBinder::FIRST_CALL_TRANSACTION, 36 BpEffectClient(const sp<IBinder>& impl) 47 remote()->transact(CONTROL_STATUS_CHANGED, data, &reply, IBinder::FLAG_ONEWAY); 56 remote()->transact(ENABLE_STATUS_CHANGED, data, &reply, IBinder::FLAG_ONEWAY); 85 remote()->transact(COMMAND_EXECUTED, data, &reply, IBinder::FLAG_ONEWAY);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
CommandQueue.java | 20 import android.os.IBinder; 70 IBinder key; 82 public void addNotification(IBinder key, StatusBarNotification notification); 83 public void updateNotification(IBinder key, StatusBarNotification notification); 84 public void removeNotification(IBinder key); 90 public void setImeWindowStatus(IBinder token, int vis, int backDisposition); 116 public void addNotification(IBinder key, StatusBarNotification notification) { 125 public void updateNotification(IBinder key, StatusBarNotification notification) { 134 public void removeNotification(IBinder key) { 176 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) [all...] |
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/textservice/ |
ITextServicesManager_Stub_Delegate.java | 22 import android.os.IBinder; 39 public static ITextServicesManager asInterface(IBinder obj) { 95 public IBinder asBinder() {
|
/frameworks/base/services/java/com/android/server/ |
StatusBarManagerService.java | 27 import android.os.IBinder; 63 HashMap<IBinder,StatusBarNotification> mNotifications 64 = new HashMap<IBinder,StatusBarNotification>(); 68 IBinder mSysUiVisToken = new Binder(); 77 IBinder mImeToken = null; 79 private class DisableRecord implements IBinder.DeathRecipient { 82 IBinder token; 142 public void disable(int what, IBinder token, String pkg) { 150 private void disableLocked(int what, IBinder token, String pkg) { 268 public void setImeWindowStatus(final IBinder token, final int vis, final int backDisposition) [all...] |
CountryDetectorService.java | 29 import android.os.IBinder; 47 private final class Receiver implements IBinder.DeathRecipient { 49 private final IBinder mKey; 80 private final HashMap<IBinder, Receiver> mReceivers; 89 mReceivers = new HashMap<IBinder, Receiver>(); 139 private void removeListener(IBinder key) {
|
/frameworks/base/include/binder/ |
Parcel.h | 30 class IBinder; 79 bool checkInterface(IBinder*) const; 101 status_t writeStrongBinder(const sp<IBinder>& val); 102 status_t writeWeakBinder(const wp<IBinder>& val); 152 sp<IBinder> readStrongBinder() const; 153 wp<IBinder> readWeakBinder() const; 285 const sp<IBinder>& binder, flat_binder_object* out); 287 const wp<IBinder>& binder, flat_binder_object* out); 289 const flat_binder_object& flat, sp<IBinder>* out); 291 const flat_binder_object& flat, wp<IBinder>* out) [all...] |
/development/samples/Alarm/src/com/example/android/newalarm/ |
AlarmService.java | 25 import android.os.IBinder; 77 IBinder mBinder = new AlarmBinder(); 170 public IBinder onBind(Intent intent) {
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
AlarmService_Service.java | 29 import android.os.IBinder; 91 public IBinder onBind(Intent intent) { 123 private final IBinder mBinder = new Binder() {
|
NotifyingService.java | 30 import android.os.IBinder; 89 public IBinder onBind(Intent intent) { 119 private final IBinder mBinder = new Binder() {
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
LocalReceiver.java | 27 import android.os.IBinder; 49 public void onServiceConnected(ComponentName name, IBinder service) { 67 IBinder caller = intent.getIBinderExtra("caller");
|
LocalService.java | 24 import android.os.IBinder; 29 private final IBinder mBinder = new Binder() { 45 private IBinder mReportObject; 87 public IBinder onBind(Intent intent) {
|
/frameworks/base/services/java/com/android/server/wm/ |
WindowToken.java | 19 import android.os.IBinder; 35 final IBinder token; 78 WindowToken(WindowManagerService _service, IBinder _token, int type, boolean _explicit) {
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/ |
AccountServiceProxy.java | 22 import android.os.IBinder; 38 public void onConnected(IBinder binder) { 43 public IBinder asBinder() {
|
/frameworks/base/core/java/android/app/ |
Service.java | 27 import android.os.IBinder; 140 * {@link android.os.IBinder} object that the service returns from its 144 * service's IBinder). Usually the IBinder returned is for a complex 231 * between them: clients of the service can simply cast the IBinder they 463 * {@link android.os.IBinder} is usually for a complex interface 468 * IBinder interface returned here may not happen on the main thread 478 * @return Return an IBinder through which clients can call on to the 481 public abstract IBinder onBind(Intent intent); 659 * named system services and which invokes the {@link IBinder#dump} metho [all...] |
/frameworks/base/core/java/android/os/ |
RemoteCallbackList.java | 28 * taking care to identify them through their underlying unique {@link IBinder} 30 * <li> Attaches a {@link IBinder.DeathRecipient IBinder.DeathRecipient} to 50 /*package*/ HashMap<IBinder, Callback> mCallbacks 51 = new HashMap<IBinder, Callback>(); 56 private final class Callback implements IBinder.DeathRecipient { 112 IBinder binder = callback.asBinder(); 184 * You can, however, retrieve its IBinder and compare it with another 185 * IBinder to see if it is the same object.
|
/frameworks/base/core/java/com/android/internal/appwidget/ |
IAppWidgetService.aidl | 23 import android.os.IBinder; 51 void bindRemoteViewsService(int appWidgetId, in Intent intent, in IBinder connection);
|
/frameworks/base/core/java/com/android/internal/view/ |
IInputMethod.aidl | 20 import android.os.IBinder; 37 void attachToken(IBinder token);
|
/frameworks/base/include/camera/ |
ICameraService.h | 33 GET_NUMBER_OF_CAMERAS = IBinder::FIRST_CALL_TRANSACTION,
|
/frameworks/base/include/surfaceflinger/ |
ISurface.h | 40 GET_SURFACE_TEXTURE = IBinder::FIRST_CALL_TRANSACTION,
|
/frameworks/base/libs/storage/ |
IMountShutdownObserver.cpp | 23 TRANSACTION_onShutDownComplete = IBinder::FIRST_CALL_TRANSACTION,
|
/frameworks/base/media/libstagefright/ |
OMXClient.cpp | 33 sp<IBinder> binder = sm->getService(String16("media.player"));
|