Home
last modified time | relevance | path

Searched refs:IBase (Results 1 – 25 of 34) sorted by relevance

12

/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
DHidlTestJava.java19 import android.hardware.tests.baz.V1_0.IBase;
242 IBase proxy = IBase.getService("this-doesn't-exist"); in client()
250 IBase baseProxy = IBase.getService("baz"); in client()
270 IBase.Foo foo = new IBase.Foo(); in client()
274 IBase.Foo.Bar bar = new IBase.Foo.Bar(); in client()
283 IBase.Foo result = proxy.someOtherBaseMethod(foo); in client()
288 IBase.Foo[] inputArray = new IBase.Foo[2]; in client()
290 IBase.Foo foo = new IBase.Foo(); in client()
294 IBase.Foo.Bar bar = new IBase.Foo.Bar(); in client()
305 foo = new IBase.Foo(); in client()
[all …]
/system/hwservicemanager/
DServiceManager.h22 using ::android::hidl::base::V1_0::IBase;
30 Return<sp<IBase>> get(const hidl_string& fqName,
33 const sp<IBase>& service) override;
55 virtual void serviceDied(uint64_t cookie, const wp<IBase>& who);
57 bool removeService(const wp<IBase>& who);
58 bool removePackageListener(const wp<IBase>& who);
59 bool removeServiceListener(const wp<IBase>& who);
87 bool removePackageListener(const wp<IBase>& who);
88 bool removeServiceListener(const wp<IBase>& who);
DHidlService.h19 using ::android::hidl::base::V1_0::IBase;
27 const sp<IBase> &service,
42 sp<IBase> getService() const;
43 void setService(sp<IBase> service, pid_t pid);
49 bool removeListener(const wp<IBase> &listener);
60 sp<IBase> mService;
DTokenManager.h17 using ::android::hidl::base::V1_0::IBase;
30 Return<void> createToken(const sp<IBase>& store, createToken_cb hidl_cb) override;
32 Return<sp<IBase>> get(const hidl_vec<uint8_t> &token) override;
48 sp<IBase> interface;
52 TokenInterface generateToken(const sp<IBase> &interface);
DHidlService.cpp16 const sp<IBase> &service, in HidlService()
24 sp<IBase> HidlService::getService() const { in getService()
27 void HidlService::setService(sp<IBase> service, pid_t pid) { in setService()
58 bool HidlService::removeListener(const wp<IBase>& listener) { in removeListener()
DServiceManager.cpp68 void ServiceManager::serviceDied(uint64_t cookie, const wp<IBase>& who) { in serviceDied()
151 bool ServiceManager::PackageInterfaceMap::removePackageListener(const wp<IBase>& who) { in removePackageListener()
168 bool ServiceManager::PackageInterfaceMap::removeServiceListener(const wp<IBase>& who) { in removeServiceListener()
182 Return<sp<IBase>> ServiceManager::get(const hidl_string& fqName, in get()
203 Return<bool> ServiceManager::add(const hidl_string& name, const sp<IBase>& service) { in add()
476 bool ServiceManager::removeService(const wp<IBase>& who) { in removeService()
494 bool ServiceManager::removePackageListener(const wp<IBase>& who) { in removePackageListener()
504 bool ServiceManager::removeServiceListener(const wp<IBase>& who) { in removeServiceListener()
DTokenManager.cpp40 Return<void> TokenManager::createToken(const sp<IBase>& store, createToken_cb hidl_cb) { in createToken()
96 Return<sp<IBase>> TokenManager::get(const hidl_vec<uint8_t> &token) { in get()
107 TokenManager::TokenInterface TokenManager::generateToken(const sp<IBase> &interface) { in generateToken()
/system/libhidl/transport/include/hidl/
DStatic.h37 extern ConcurrentMap<wp<::android::hidl::base::V1_0::IBase>, SchedPrio> gServicePrioMap;
38 extern ConcurrentMap<wp<::android::hidl::base::V1_0::IBase>, bool> gServiceSidMap;
41 extern ConcurrentMap<const ::android::hidl::base::V1_0::IBase*, wp<::android::hardware::BHwBinder>>
54 std::function<sp<::android::hidl::base::V1_0::IBase>(void *)>> gBsConstructorMap;
DHidlTransportUtils.h31 Return<bool> canCastInterface(::android::hidl::base::V1_0::IBase* interface,
34 std::string getDescriptor(::android::hidl::base::V1_0::IBase* interface);
DHidlTransportSupport.h62 bool setMinSchedulerPolicy(const sp<::android::hidl::base::V1_0::IBase>& service,
84 bool setRequestingSid(const sp<::android::hidl::base::V1_0::IBase>& service, bool requesting);
DHidlPassthroughSupport.h31 sp<::android::hidl::base::V1_0::IBase> wrapPassthrough( in wrapPassthrough()
DHidlBinderSupport.h43 uint64_t cookie, const sp<::android::hidl::base::V1_0::IBase> &base);
49 wp<::android::hidl::base::V1_0::IBase> mBase;
350 using ::android::hidl::base::V1_0::IBase; in fromBinder()
359 sp<IBase> base = static_cast<BnHwBase*>(binderIface.get())->getImpl(); in fromBinder()
/system/libhidl/transport/base/1.0/
DAndroid.mk36 GEN := $(intermediates)/android/hidl/base/V1_0/IBase.java
39 $(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/IBase.hal
47 android.hidl.base@1.0::IBase
49 $(GEN): $(LOCAL_PATH)/IBase.hal
86 GEN := $(intermediates)/android/hidl/base/V1_0/IBase.java
89 $(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/IBase.hal
97 android.hidl.base@1.0::IBase
99 $(GEN): $(LOCAL_PATH)/IBase.hal
DAndroid.bp7 "IBase.hal",
34 "android/hidl/base/1.0/IBase.h",
DIBase.hal24 * from IBase. (This is like java.lang.Object in Java.)
30 interface IBase {
47 * "android.hidl.base@1.0::IBase"]
130 * (hash of IBase.hal)].
/system/libhidl/transport/
DStatic.cpp35 ConcurrentMap<const ::android::hidl::base::V1_0::IBase*, wp<::android::hardware::BHwBinder>>
39 ConcurrentMap<wp<::android::hidl::base::V1_0::IBase>, SchedPrio> gServicePrioMap{};
40 ConcurrentMap<wp<::android::hidl::base::V1_0::IBase>, bool> gServiceSidMap{};
42 ConcurrentMap<std::string, std::function<sp<::android::hidl::base::V1_0::IBase>(void *)>>
DHidlTransportSupport.cpp33 static void pruneMapLocked(ConcurrentMap<wp<::android::hidl::base::V1_0::IBase>, V>& map) { in pruneMapLocked() argument
34 using ::android::hidl::base::V1_0::IBase; in pruneMapLocked()
36 std::vector<wp<IBase>> toDelete; in pruneMapLocked()
47 bool setMinSchedulerPolicy(const sp<::android::hidl::base::V1_0::IBase>& service, in setMinSchedulerPolicy()
72 bool setRequestingSid(const sp<::android::hidl::base::V1_0::IBase>& service, bool requesting) { in setRequestingSid()
DHidlTransportUtils.cpp25 using ::android::hidl::base::V1_0::IBase;
27 Return<bool> canCastInterface(IBase* interface, const char* castTo, bool emitError) { in canCastInterface()
34 if (std::string(IBase::descriptor) == castTo) { in canCastInterface()
58 std::string getDescriptor(IBase* interface) { in getDescriptor()
Dcurrent.txt7 bddab6184d7a346da6a07dc0828cf19a696f4caa3611c51f2e14565a14b40fd9 android.hidl.base@1.0::IBase
DServiceManagement.cpp320 Return<sp<IBase>> get(const hidl_string& fqName, in get()
322 sp<IBase> ret = nullptr; in get()
325 IBase* (*generator)(const char* name); in get()
351 const sp<IBase>& /* service */) override { in add()
/system/tools/hidl/test/java_test/
Dhidl_test_java_native.cpp31 using ::android::hardware::tests::baz::V1_0::IBase;
105 IBase::Foo foo; in TEST_F()
129 hidl_array<IBase::Foo, 2> foo; in TEST_F()
164 hidl_vec<IBase::Foo> foo; in TEST_F()
201 IBase::VectorOfArray in, expectedOut; in TEST_F()
292 IBase::StringMatrix5x3 in; in TEST_F()
293 IBase::StringMatrix3x5 expectedOut; in TEST_F()
/system/connectivity/wificond/scanning/offload/
Doffload_service_utils.h38 const android::wp<android::hidl::base::V1_0::IBase>& who) override { in serviceDied()
/system/hardware/interfaces/wifi/keystore/1.0/default/include/wifikeystorehal/
Dkeystore.h19 using ::android::hidl::base::V1_0::IBase;
/system/bt/test/rootcanal/
Dbluetooth_hci.cc48 const wp<::android::hidl::base::V1_0::IBase>& /* who */) { in serviceDied() argument
/system/chre/host/hal_generic/
Dgeneric_context_hub.h119 const wp<::android::hidl::base::V1_0::IBase>& who)

12