Searched refs:asBinder (Results 1 - 25 of 139) sorted by relevance

123456

/frameworks/base/core/java/android/os/
H A DIInterface.java30 public IBinder asBinder(); method in interface:IInterface
H A DMessenger.java60 return mTarget.asBinder();
72 return mTarget.asBinder().equals(((Messenger)otherObj)
73 .mTarget.asBinder());
80 return mTarget.asBinder().hashCode();
88 out.writeStrongBinder(mTarget.asBinder());
113 out.writeStrongBinder(messenger != null ? messenger.mTarget.asBinder()
H A DRemoteCallback.java76 return mTarget.asBinder().equals(((RemoteCallback)otherObj)
77 .mTarget.asBinder());
84 return mTarget.asBinder().hashCode();
92 out.writeStrongBinder(mTarget.asBinder());
H A DRemoteCallbackList.java29 * (by calling {@link IInterface#asBinder IInterface.asBinder()}.
67 mCallbacks.remove(mCallback.asBinder());
85 * checking to see if the {@link IInterface#asBinder callback.asBinder()}
112 IBinder binder = callback.asBinder();
127 * {@link IInterface#asBinder callback.asBinder()} object to correctly
143 Callback cb = mCallbacks.remove(callback.asBinder());
145 cb.mCallback.asBinder()
[all...]
H A DServiceManagerNative.java103 public IBinder asBinder() method in class:ServiceManagerNative
114 public IBinder asBinder() { method in class:ServiceManagerProxy
189 data.writeStrongBinder(controller.asBinder());
/frameworks/native/libs/binder/
H A DIInterface.cpp30 sp<IBinder> IInterface::asBinder() function in class:android::IInterface
35 sp<const IBinder> IInterface::asBinder() const function in class:android::IInterface
/frameworks/base/services/common_time/
H A Dcommon_clock_service.cpp102 if (mListeners[i]->asBinder() == listener->asBinder())
109 return listener->asBinder()->linkToDeath(this);
120 if (mListeners[i]->asBinder() == listener->asBinder()) {
121 mListeners[i]->asBinder()->unlinkToDeath(this);
139 if (mListeners[i]->asBinder() == who) {
/frameworks/av/media/libmedia/
H A DIMediaPlayerService.cpp73 data.writeStrongBinder(client->asBinder());
154 data.writeStrongBinder(client->asBinder());
176 reply->writeStrongBinder(player->asBinder());
189 reply->writeStrongBinder(player->asBinder());
204 reply->writeStrongBinder(player->asBinder());
211 reply->writeStrongBinder(recorder->asBinder());
218 reply->writeStrongBinder(retriever->asBinder());
224 reply->writeStrongBinder(omx->asBinder());
230 reply->writeStrongBinder(crypto->asBinder());
236 reply->writeStrongBinder(hdcp->asBinder());
[all...]
/frameworks/base/core/java/android/speech/
H A DRecognitionService.java96 if (DBG) Log.d(TAG, "created new mCurrentCallback, listener = " + listener.asBinder());
114 } else if (mCurrentCallback.mListener.asBinder() != listener.asBinder()) {
128 } else if (mCurrentCallback.mListener.asBinder() != listener.asBinder()) {
315 if (DBG) Log.d(TAG, "startListening called by:" + listener.asBinder());
324 if (DBG) Log.d(TAG, "stopListening called by:" + listener.asBinder());
332 if (DBG) Log.d(TAG, "cancel called by:" + listener.asBinder());
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java79 mSession.wallpaperOffsetsComplete(asBinder());
100 mSession.wallpaperCommandComplete(asBinder(), null);
/frameworks/base/core/java/android/accounts/
H A DAccountManagerResponse.java65 dest.writeStrongBinder(mResponse.asBinder());
/frameworks/base/core/java/android/content/
H A DSyncContext.java78 return (mSyncContext == null) ? null : mSyncContext.asBinder();
H A DIntentSender.java289 return mTarget.asBinder().equals(((IntentSender)otherObj)
290 .mTarget.asBinder());
297 return mTarget.asBinder().hashCode();
306 sb.append(mTarget != null ? mTarget.asBinder() : null);
316 out.writeStrongBinder(mTarget.asBinder());
341 out.writeStrongBinder(sender != null ? sender.mTarget.asBinder()
/frameworks/base/services/java/com/android/server/
H A DCountryDetectorService.java57 mKey = listener.asBinder();
127 removeListener(listener.asBinder());
134 listener.asBinder().linkToDeath(r, 0);
135 mReceivers.put(listener.asBinder(), r);
/frameworks/native/libs/gui/
H A DISurface.cpp58 reply->writeStrongBinder( getSurfaceTexture()->asBinder() );
H A DLayerState.cpp54 output.writeStrongBinder(client->asBinder());
66 output.writeStrongBinder(surface->asBinder());
/frameworks/av/camera/
H A DICameraRecordingProxy.cpp48 data.writeStrongBinder(listener->asBinder());
66 data.writeStrongBinder(mem->asBinder());
H A DICameraService.cpp63 data.writeStrongBinder(cameraClient->asBinder());
97 reply->writeStrongBinder(camera->asBinder());
H A DICameraRecordingProxyListener.cpp45 data.writeStrongBinder(imageData->asBinder());
/frameworks/base/core/java/android/os/storage/
H A DIMountShutdownObserver.java55 public IBinder asBinder() { method in class:IMountShutdownObserver.Stub
86 public IBinder asBinder() { method in class:IMountShutdownObserver.Stub.Proxy
H A DIObbActionListener.java56 public IBinder asBinder() { method in class:IObbActionListener.Stub
91 public IBinder asBinder() { method in class:IObbActionListener.Stub.Proxy
H A DIMountServiceListener.java56 public IBinder asBinder() { method in class:IMountServiceListener.Stub
99 public IBinder asBinder() { method in class:IMountServiceListener.Stub.Proxy
/frameworks/base/tools/aidl/
H A Dgenerate_java_binder.cpp55 // asBinder
56 Method* asBinder = new Method; local
57 asBinder->modifiers = PUBLIC | OVERRIDE;
58 asBinder->returnType = IBINDER_TYPE;
59 asBinder->name = "asBinder";
60 asBinder->statements = new StatementBlock;
61 asBinder->statements->Add(new ReturnStatement(THIS_VALUE));
62 this->elements.push_back(asBinder);
182 // IBinder asBinder()
183 Method* asBinder = new Method; local
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DConnectionRecord.java43 pw.println(prefix + "conn=" + conn.asBinder()
103 sb.append(Integer.toHexString(System.identityHashCode(conn.asBinder())));
/frameworks/native/include/binder/
H A DIInterface.h31 sp<IBinder> asBinder();
32 sp<const IBinder> asBinder() const;

Completed in 7688 milliseconds

123456