Searched refs:binder (Results 1 - 25 of 888) sorted by relevance

1234567891011>>

/frameworks/av/media/libmediaplayerservice/
H A DActivityManager.cpp17 #include <binder/IActivityManager.h>
18 #include <binder/IBinder.h>
19 #include <binder/IServiceManager.h>
32 sp<IBinder> binder = sm->getService(String16("activity")); local
33 sp<IActivityManager> am = interface_cast<IActivityManager>(binder);
/frameworks/native/include/private/binder/
H A DStatic.h22 #include <binder/IBinder.h>
23 #include <binder/ProcessState.h>
25 #include <binder/IPermissionController.h>
27 #include <binder/IServiceManager.h>
H A Dbinder_module.h27 #include <linux/android/binder.h>
/frameworks/native/libs/binder/include/private/binder/
H A DStatic.h22 #include <binder/IBinder.h>
23 #include <binder/ProcessState.h>
25 #include <binder/IPermissionController.h>
27 #include <binder/IServiceManager.h>
H A Dbinder_module.h27 #include <linux/android/binder.h>
/frameworks/native/services/sensorservice/
H A Dmain_sensorservice.cpp17 #include <binder/BinderService.h>
/frameworks/native/services/vr/virtual_touchpad/
H A DVirtualTouchpadService.cpp5 #include <binder/IPCThreadState.h>
6 #include <binder/PermissionCache.h>
7 #include <binder/Status.h>
28 binder::Status VirtualTouchpadService::attach() {
31 return binder::Status::fromStatusT(PERMISSION_DENIED);
39 return binder::Status::fromStatusT(ALREADY_EXISTS);
49 return binder::Status::ok();
53 return binder::Status::fromStatusT(error);
55 return binder::Status::ok();
58 binder
[all...]
H A DVirtualTouchpadService.h22 binder::Status attach() override;
23 binder::Status detach() override;
24 binder::Status touch(int touchpad, float x, float y, float pressure) override;
25 binder::Status buttonState(int touchpad, int buttons) override;
26 binder::Status scroll(int touchpad, float x, float y) override;
/frameworks/av/drm/drmserver/
H A Dmain_drmserver.cpp20 #include <binder/IPCThreadState.h>
21 #include <binder/ProcessState.h>
22 #include <binder/IServiceManager.h>
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DIWifiP2pManager.aidl28 Messenger getMessenger(in IBinder binder);
30 oneway void close(in IBinder binder);
/frameworks/native/services/inputflinger/host/
H A Dmain.cpp17 #include <binder/BinderService.h>
/frameworks/av/media/libmediaplayer2/nuplayer2/
H A DJWakeLock.cpp23 #include <binder/IPCThreadState.h>
24 #include <binder/IServiceManager.h>
31 //TODO: use JAVA PowerManager, instead of binder
40 sp<IBinder> binder = IInterface::asBinder(mPowerManager); local
41 binder->unlinkToDeath(mDeathRecipient);
51 sp<IBinder> binder = local
53 if (binder == NULL) {
56 mPowerManager = interface_cast<IPowerManager>(binder);
57 binder->linkToDeath(mDeathRecipient);
61 sp<IBinder> binder local
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DAWakeLock.cpp23 #include <binder/IPCThreadState.h>
24 #include <binder/IServiceManager.h>
39 sp<IBinder> binder = IInterface::asBinder(mPowerManager); local
40 binder->unlinkToDeath(mDeathRecipient);
50 sp<IBinder> binder = local
52 if (binder == NULL) {
55 mPowerManager = interface_cast<IPowerManager>(binder);
56 binder->linkToDeath(mDeathRecipient);
60 sp<IBinder> binder = new BBinder(); local
64 binder, String1
[all...]
/frameworks/av/services/mediaextractor/
H A DMediaExtractorUpdateService.cpp28 binder::Status MediaExtractorUpdateService::loadPlugins(const ::std::string& apkPath) {
31 return binder::Status::ok();
/frameworks/base/libs/common_time/
H A Dmain.cpp25 #include <binder/IPCThreadState.h>
26 #include <binder/ProcessState.h>
/frameworks/native/services/nativeperms/
H A Dnativeperms.cpp20 #include <binder/IServiceManager.h>
21 #include <binder/Status.h>
37 ::android::binder::Status checkPermission(
44 return binder::Status::ok();
47 ::android::binder::Status getPackagesForUid(
54 return binder::Status::ok();
57 ::android::binder::Status isRuntimePermission(
62 return binder::Status::ok();
75 "binder from servicemanager.";
81 // Initialize a binder watche
[all...]
/frameworks/base/cmds/incidentd/src/
H A Dmain.cpp20 #include <binder/IInterface.h>
21 #include <binder/IPCThreadState.h>
22 #include <binder/IServiceManager.h>
23 #include <binder/ProcessState.h>
24 #include <binder/Status.h>
39 // Set up the binder
54 // binder calls remain responsive in their pool of one thread.
/frameworks/native/libs/vr/libvr_manager/
H A Dtrusted_uids.cpp6 #include <binder/IPermissionController.h>
7 #include <binder/IServiceManager.h>
34 sp<IBinder> binder = defaultServiceManager()->getService(String16("permission")); local
35 if (binder == 0) {
42 bool trusted = interface_cast<IPermissionController>(binder)->checkPermission(
/frameworks/native/services/thermalservice/
H A DThermalService.cpp21 #include <binder/IPCThreadState.h>
22 #include <binder/IServiceManager.h>
34 binder::Status ThermalService::notifyThrottling(
44 return binder::Status::ok();
51 binder::Status ThermalService::isThrottling(bool* _aidl_return) {
54 return binder::Status::ok();
62 binder::Status ThermalService::registerThermalEventListener(
66 return binder::Status::ok();
72 return binder::Status::ok();
80 return binder
[all...]
/frameworks/av/media/libaudioclient/
H A DPlayerBase.cpp17 #include <binder/IServiceManager.h>
35 sp<IBinder> binder = defaultServiceManager()->checkService(String16("audio")); local
36 if (binder == 0) {
39 mAudioManager = interface_cast<IAudioManager>(binder);
122 binder::Status PlayerBase::start() {
125 return binder::Status::ok();
128 binder::Status PlayerBase::pause() {
131 return binder::Status::ok();
135 binder::Status PlayerBase::stop() {
138 return binder
[all...]
/frameworks/av/media/libaudioclient/include/media/
H A DPlayerBase.h36 virtual binder::Status start() override;
37 virtual binder::Status pause() override;
38 virtual binder::Status stop() override;
39 virtual binder::Status setVolume(float vol) override;
40 virtual binder::Status setPan(float pan) override;
41 virtual binder::Status setStartDelayMs(int32_t delayMs) override;
42 virtual binder::Status applyVolumeShaper(
/frameworks/av/media/utils/
H A DSchedulingPolicyService.cpp20 #include <binder/IServiceManager.h>
40 sp<IBinder> binder = defaultServiceManager()->checkService(_scheduling_policy); local
41 if (binder == 0) {
45 sps = interface_cast<ISchedulingPolicyService>(binder);
69 sp<IBinder> binder = defaultServiceManager()->checkService(_scheduling_policy); local
70 if (binder == 0) {
73 sps = interface_cast<ISchedulingPolicyService>(binder);
/frameworks/native/services/vr/hardware_composer/
H A Dvr_composer.cpp3 #include <binder/IPCThreadState.h>
4 #include <binder/PermissionCache.h>
33 binder::Status VrComposer::registerObserver(
39 return binder::Status::fromStatusT(PERMISSION_DENIED);
43 return binder::Status::fromStatusT(ALREADY_EXISTS);
54 return binder::Status::ok();
57 binder::Status VrComposer::clearObserver() {
60 return binder::Status::ok();
71 binder::Status ret = callback_->onNewFrame(parcelable_frame, &fence);
/frameworks/av/include/media/
H A DIEffectClient.h21 #include <binder/IInterface.h>
22 #include <binder/Parcel.h>
23 #include <binder/IMemory.h>
H A DIMediaLogService.h20 #include <binder/IInterface.h>
21 #include <binder/IMemory.h>
22 #include <binder/Parcel.h>

Completed in 495 milliseconds

1234567891011>>