Searched defs:descriptor (Results 1 - 12 of 12) sorted by relevance

/system/libhidl/transport/
H A DHidlPassthroughSupport.cpp28 static sp<IBase> tryWrap(const std::string& descriptor, sp<IBase> iface) { argument
29 auto func = getBsConstructorMap().get(descriptor, nullptr);
31 func = gBsConstructorMap.get(descriptor, nullptr);
49 // have the entry for the descriptor name.
52 // types along the interface chain, instead of always using the descriptor
56 for (const std::string& descriptor : types) {
57 base = tryWrap(descriptor, iface);
69 // then the corresponding descriptor would be in the BsConstructorMap.
H A DServiceManagement.cpp501 void preloadPassthroughService(const std::string &descriptor) { argument
502 PassthroughServiceManager::openLibs(descriptor,
637 bool handleCastError(const Return<bool>& castReturn, const std::string& descriptor, argument
645 "%s/%s.", descriptor.c_str(), instance.c_str());
649 ALOGW("getService: found dead hwbinder service for %s/%s.", descriptor.c_str(),
660 descriptor.c_str(), instance.c_str());
664 sp<::android::hidl::base::V1_0::IBase> getRawServiceInternal(const std::string& descriptor, argument
678 Return<Transport> transportRet = sm->getTransport(descriptor, instance);
708 waiter = new Waiter(descriptor, instance, sm);
713 Return<sp<IBase>> ret = sm->get(descriptor, instanc
[all...]
/system/core/gatekeeperd/
H A DIGateKeeperService.h46 static const android::String16 descriptor; member in class:android::IGateKeeperService
/system/bt/bta/include/
H A Dbta_hd_api.h59 tBTA_HD_DEV_DESCR descriptor; member in struct:__anon319
H A Dbta_hh_api.h54 #define BTA_HH_GET_DSCP_EVT 10 /* Get report descriptor */
191 /* report descriptor information */
207 tBTA_HH_DEV_DESCR descriptor; member in struct:__anon345
468 * Description Get report descriptor of the device
/system/tools/aidl/
H A Dgenerate_java_binder.cpp90 // descriptor
91 Field* descriptor = local
94 descriptor->value = "\"" + interfaceType->JavaType() + "\"";
95 this->elements.push_back(descriptor);
155 // The the expression for the interface's descriptor to be used when
167 // Synthetic case. A small number is assumed. Use its own descriptor
175 // When not outlining, store the descriptor literal into a local variable, in
178 transact_descriptor = new Variable(types->StringType(), "descriptor");
725 // the interface descriptor transaction handler
733 // and the proxy-side method returning the descriptor directl
[all...]
/system/bt/bta/hh/
H A Dbta_hh_int.h203 tBTA_HH_DEV_DESCR descriptor; member in struct:__anon176
219 tBTA_HH_DEV_DSCP_INFO dscp_info; /* report descriptor and DI information */
/system/chre/host/msm/daemon/generated/
H A Dchre_slpi_skel.c336 //at the alignment requrements for the descriptor
339 //simple enumerators, so the value read from the descriptor
353 const Type *descriptor; member in struct:UnionType
H A Dchre_slpi_stub.c336 //at the alignment requrements for the descriptor
339 //simple enumerators, so the value read from the descriptor
353 const Type *descriptor; member in struct:UnionType
/system/core/init/
H A Dservice.cpp339 // Remove any descriptor resources we may have created.
661 auto descriptor = std::make_unique<T>(args[1], args[2], *uid, *gid, perm, context); local
665 [&descriptor] (const auto& other) { return descriptor.get() == other.get(); });
668 return Error() << "duplicate descriptor " << args[1] << " " << args[2];
671 descriptors_.emplace_back(std::move(descriptor));
/system/core/libziparchive/
H A Dzip_archive.cc475 const DataDescriptor* descriptor = reinterpret_cast<const DataDescriptor*>(ddBuf + ddOffset); local
477 // Validate that the values in the data descriptor match those in the central
479 if (entry->compressed_length != descriptor->compressed_size ||
480 entry->uncompressed_length != descriptor->uncompressed_size ||
481 entry->crc32 != descriptor->crc32) {
485 descriptor->compressed_size, descriptor->uncompressed_size, descriptor->crc32);
560 // specified in the central directory match those in the data descriptor.
571 // If there is no trailing data descriptor, verif
[all...]
/system/tools/hidl/test/hidl_test/
H A Dhidl_test_client.cpp618 manager->listByInterface(IParent::descriptor, [](const hidl_vec<hidl_string>& registered) {
687 std::string("['") + IParent::descriptor + "/" + instanceName + "', '" +
688 IParent::descriptor + "/" + instanceName + "']");
702 EXPECT_TRUE(manager->unregisterForNotifications(IParent::descriptor, "", sNotification));
706 EXPECT_TRUE(manager->unregisterForNotifications(IParent::descriptor, "", sNotification));
710 EXPECT_TRUE(manager->unregisterForNotifications(IParent::descriptor, instance, sNotification));
743 std::string descriptor = ISimple::descriptor; local
747 "['" + descriptor + "/" + instanceOne + "', '" + descriptor
[all...]

Completed in 206 milliseconds