Home
last modified time | relevance | path

Searched refs:IInterface (Results 1 – 25 of 261) sorted by relevance

1234567891011

/frameworks/native/libs/binder/
DIInterface.cpp25 IInterface::IInterface() in IInterface() function in android::IInterface
29 IInterface::~IInterface() { in ~IInterface()
33 sp<IBinder> IInterface::asBinder(const IInterface* iface) in asBinder()
36 return const_cast<IInterface*>(iface)->onAsBinder(); in asBinder()
40 sp<IBinder> IInterface::asBinder(const sp<IInterface>& iface) in asBinder()
DActivityManager.cpp37 while (service == nullptr || !IInterface::asBinder(service)->isBinderAlive()) { in getService()
104 return IInterface::asBinder(service)->linkToDeath(recipient); in linkToDeath()
112 return IInterface::asBinder(service)->unlinkToDeath(recipient); in unlinkToDeath()
/frameworks/av/media/libmedia/
DIMediaPlayerService.cpp68 data.writeStrongBinder(IInterface::asBinder(client)); in create()
103 data.writeStrongBinder(IInterface::asBinder(client)); in listenForRemoteDisplay()
131 reply->writeStrongBinder(IInterface::asBinder(player)); in onTransact()
138 reply->writeStrongBinder(IInterface::asBinder(recorder)); in onTransact()
144 reply->writeStrongBinder(IInterface::asBinder(retriever)); in onTransact()
169 reply->writeStrongBinder(IInterface::asBinder(display)); in onTransact()
175 reply->writeStrongBinder(IInterface::asBinder(mcl)); in onTransact()
DIMediaExtractorService.cpp46 data.writeStrongBinder(IInterface::asBinder(source)); in makeExtractor()
115 reply->writeStrongBinder(IInterface::asBinder(ex)); in onTransact()
126 reply->writeStrongBinder(IInterface::asBinder(source)); in onTransact()
DIMediaMetadataRetriever.cpp104 data.writeStrongBinder(IInterface::asBinder(httpService)); in setDataSource()
138 data.writeStrongBinder(IInterface::asBinder(source)); in setDataSource()
372 reply->writeStrongBinder(IInterface::asBinder(bitmap)); in onTransact()
395 reply->writeStrongBinder(IInterface::asBinder(bitmap)); in onTransact()
422 reply->writeStrongBinder(IInterface::asBinder(bitmap)); in onTransact()
450 reply->writeStrongBinder(IInterface::asBinder(frames[i])); in onTransact()
466 reply->writeStrongBinder(IInterface::asBinder(albumArt)); in onTransact()
/frameworks/native/include/binder/
DIInterface.h29 class IInterface : public virtual RefBase
32 IInterface();
33 static sp<IBinder> asBinder(const IInterface*);
34 static sp<IBinder> asBinder(const sp<IInterface>&);
37 virtual ~IInterface();
75 virtual sp<IInterface> queryLocalInterface(const String16& _descriptor);
188 inline sp<IInterface> BnInterface<INTERFACE>::queryLocalInterface( in queryLocalInterface()
DIMemory.h32 class IMemoryHeap : public IInterface
71 class IMemory : public IInterface
/frameworks/native/libs/binder/include/binder/
DIInterface.h29 class IInterface : public virtual RefBase
32 IInterface();
33 static sp<IBinder> asBinder(const IInterface*);
34 static sp<IBinder> asBinder(const sp<IInterface>&);
37 virtual ~IInterface();
75 virtual sp<IInterface> queryLocalInterface(const String16& _descriptor);
188 inline sp<IInterface> BnInterface<INTERFACE>::queryLocalInterface( in queryLocalInterface()
DIMemory.h32 class IMemoryHeap : public IInterface
71 class IMemory : public IInterface
/frameworks/native/include/vr/vr_manager/
Dvr_manager.h26 class IVrStateCallbacks : public IInterface {
47 class IPersistentVrStateCallbacks : public IInterface {
68 class IVrManager : public IInterface {
/frameworks/base/services/core/java/com/android/server/utils/
DManagedApplicationService.java28 import android.os.IInterface;
96 private IInterface mBoundInterface;
172 IInterface asInterface(IBinder binder); in asInterface()
173 boolean checkType(IInterface service); in checkType()
180 void runEvent(IInterface service) throws RemoteException; in runEvent()
258 IInterface iface; in sendEvent()
333 IInterface iface = null; in connect()
/frameworks/native/libs/vr/libvr_manager/
Dvr_manager.cpp100 data.writeStrongBinder(IInterface::asBinder(cb)); in registerListener()
107 data.writeStrongBinder(IInterface::asBinder(cb)); in unregisterListener()
115 data.writeStrongBinder(IInterface::asBinder(cb)); in registerPersistentVrStateListener()
123 data.writeStrongBinder(IInterface::asBinder(cb)); in unregisterPersistentVrStateListener()
/frameworks/av/media/utils/include/mediautils/
DSchedulingPolicyService.h24 class IInterface; variable
38 int requestCpusetBoost(bool enable, const sp<IInterface> &client);
/frameworks/native/libs/sensorprivacy/
DSensorPrivacyManager.cpp37 while (service == nullptr || !IInterface::asBinder(service)->isBinderAlive()) { in getService()
92 return IInterface::asBinder(service)->linkToDeath(recipient); in linkToDeath()
101 return IInterface::asBinder(service)->unlinkToDeath(recipient); in unlinkToDeath()
/frameworks/av/soundtrigger/
DISoundTriggerClient.cpp47 data.writeStrongBinder(IInterface::asBinder(eventMemory)); in onRecognitionEvent()
57 data.writeStrongBinder(IInterface::asBinder(eventMemory)); in onSoundModelEvent()
66 data.writeStrongBinder(IInterface::asBinder(eventMemory)); in onServiceStateChange()
/frameworks/base/telephony/java/com/android/internal/telephony/util/
DRemoteCallbackListExt.java19 import android.os.IInterface;
28 public class RemoteCallbackListExt<E extends IInterface> extends RemoteCallbackList<E> {
/frameworks/av/media/utils/
DISchedulingPolicyService.h24 class ISchedulingPolicyService : public IInterface
32 virtual int requestCpusetBoost(bool enable, const sp<IInterface>& client) = 0;
DISchedulingPolicyService.cpp65 virtual int requestCpusetBoost(bool enable, const sp<IInterface>& client) in requestCpusetBoost()
70 data.writeStrongBinder(IInterface::asBinder(client)); in requestCpusetBoost()
/frameworks/base/core/java/android/database/
DIBulkCursor.java21 import android.os.IInterface;
31 public interface IBulkCursor extends IInterface {
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DContextFixture.java64 import android.os.IInterface;
196 IInterface service = mServiceByComponentName.get(serviceIntent.getComponent()); in bindService()
213 IInterface service = mServiceByServiceConnection.remove(connection); in unbindService()
552 private final Map<ComponentName, IInterface> mServiceByComponentName =
553 new HashMap<ComponentName, IInterface>();
554 private final Map<String, IInterface> mServiceByPackageName =
555 new HashMap<String, IInterface>();
559 private final Map<IInterface, ComponentName> mComponentNameByService =
560 new HashMap<IInterface, ComponentName>();
561 private final Map<ServiceConnection, IInterface> mServiceByServiceConnection =
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ims/
DTestImsFeature.java19 import android.os.IInterface;
71 public IInterface getBinder() { in getBinder()
/frameworks/native/libs/vr/libdisplay/include/private/dvr/
Dvsync_service.h9 class IVsyncCallback : public IInterface {
41 class IVsyncService : public IInterface {
/frameworks/av/media/libmedia/include/media/
DIStreamSource.h29 struct IStreamSource : public IInterface {
47 struct IStreamListener : public IInterface {
/frameworks/av/drm/libmediadrm/
DIMediaDrmService.cpp72 reply->writeStrongBinder(IInterface::asBinder(crypto)); in onTransact()
78 reply->writeStrongBinder(IInterface::asBinder(drm)); in onTransact()
/frameworks/native/services/surfaceflinger/
DTransactionCompletedThread.cpp61 IInterface::asBinder(listener)->unlinkToDeath(mDeathRecipient); in ~TransactionCompletedThread()
87 status_t err = IInterface::asBinder(listener)->linkToDeath(mDeathRecipient); in addCallback()
265 if (IInterface::asBinder(listener)->isBinderAlive()) { in threadMain()
268 IInterface::asBinder(listener)->unlinkToDeath(mDeathRecipient); in threadMain()

1234567891011