Home
last modified time | relevance | path

Searched refs:INTERFACE (Results 1 – 24 of 24) sorted by relevance

/system/libhwbinder/include/hwbinder/
DIInterface.h40 template<typename INTERFACE>
41 class BpInterface : public INTERFACE, public IInterface, public BpHwRefBase
54 template<typename INTERFACE>
55 inline BpInterface<INTERFACE>::BpInterface(const sp<IBinder>& remote) in BpInterface()
60 template<typename INTERFACE>
61 inline IBinder* BpInterface<INTERFACE>::onAsBinder() in onAsBinder()
/system/libhidl/transport/token/1.0/utils/include/hidl/
DHybridInterface.h350 #define DECLARE_HYBRID_META_INTERFACE(INTERFACE, ...) \ argument
353 INTERFACE, __VA_ARGS__) \
356 #define DECLARE_HYBRID_META_INTERFACE_WITH_CODE(GTKCODE, INTERFACE, ...) \ argument
376 static ::android::sp<I##INTERFACE> asInterface( \
379 I##INTERFACE(); \
380 virtual ~I##INTERFACE(); \
384 #define IMPLEMENT_HYBRID_META_INTERFACE(INTERFACE, NAME) \ argument
385 I##INTERFACE::HalVariant I##INTERFACE::getHalVariant() const { \
388 size_t I##INTERFACE::getHalIndex() const { \
391 constexpr uint32_t I##INTERFACE::sGetHalTokenTransactionCode; \
[all …]
/system/tools/aidl/
Daidl_to_cpp_common.h35 INTERFACE, // IFoo enumerator
Dgenerate_cpp.cpp231 const string i_name = ClassName(interface, ClassNames::INTERFACE); in DefineClientTransaction()
403 const string iface = ClassName(interface, ClassNames::INTERFACE); in DefineClientMetaTransaction()
450 const string i_name = ClassName(interface, ClassNames::INTERFACE); in BuildClientSource()
620 << "_aidl_reply->writeInt32(" << ClassName(interface, ClassNames::INTERFACE) in HandleServerMetaTransaction()
705 << " return " << ClassName(interface, ClassNames::INTERFACE) << "::VERSION;\n" in BuildServerSource()
730 string fq_name = ClassName(interface, ClassNames::INTERFACE); in BuildInterfaceSource()
750 ClassName(interface, ClassNames::INTERFACE), in BuildInterfaceSource()
799 const string i_name = ClassName(interface, ClassNames::INTERFACE); in BuildClientHeader()
856 const string i_name = ClassName(interface, ClassNames::INTERFACE); in BuildServerHeader()
914 const string i_name = ClassName(interface, ClassNames::INTERFACE); in BuildInterfaceHeader()
[all …]
Dgenerate_ndk.cpp208 const std::string clazz = ClassName(interface, ClassNames::INTERFACE); in GenerateConstantDefinitions()
294 const std::string iface = ClassName(defined_type, ClassNames::INTERFACE); in GenerateClientMethodDefinition()
408 const std::string clazz = ClassName(defined_type, ClassNames::INTERFACE); in GenerateClassSource()
465 const std::string iface = ClassName(defined_type, ClassNames::INTERFACE); in GenerateServerSource()
497 const std::string clazz = ClassName(defined_type, ClassNames::INTERFACE); in GenerateInterfaceSource()
622 << ClassName(defined_type, ClassNames::INTERFACE) << "> {\n"; in GenerateClientHeader()
645 const std::string iface = ClassName(defined_type, ClassNames::INTERFACE); in GenerateServerHeader()
687 const std::string clazz = ClassName(defined_type, ClassNames::INTERFACE); in GenerateInterfaceHeader()
Daidl_language_y.yy72 %token<token> INTERFACE "interface"
228 : INTERFACE identifier '{' interface_members '}' {
233 | ONEWAY INTERFACE identifier '{' interface_members '}' {
239 | INTERFACE error '{' interface_members '}' {
Daidl_language_l.ll89 return yy::parser::token::INTERFACE;
Daidl_to_cpp_common.cpp38 case ClassNames::INTERFACE: in ClassName()
Daidl_to_ndk.cpp108 const std::string clazz = NdkFullClassName(type, cpp::ClassNames::INTERFACE); in InterfaceTypeInfo()
Dast_java.h323 enum { CLASS, INTERFACE }; enumerator
Dgenerate_java_binder.cpp982 interface->what = Class::INTERFACE; in generate_binder_interface_class()
/system/netd/server/
DPhysicalNetwork.cpp96 RouteController::INTERFACE); in invalidateRouteCache()
98 RouteController::INTERFACE); in invalidateRouteCache()
DRouteController.h39 INTERFACE, // Compute the table number based on the interface index. enumerator
DNetworkController.cpp806 tableType = RouteController::INTERFACE; in modifyRoute()
DRouteController.cpp862 case RouteController::INTERFACE: { in modifyRoute()
/system/tools/hidl/docs/src/parser/elements/declarations/
DInterfaceDeclarationParser.kt37 assert(tokens.first().identifier == TokenGrammar.INTERFACE) in parseTokens()
/system/tools/hidl/docs/src/parser/files/
DInterfaceFileParser.kt71 } else if (!inDoc && token.identifier == TokenGrammar.INTERFACE) { in isInterface()
DAbstractFileParser.kt65 TokenGrammar.INTERFACE,
/system/core/init/
Dinit.cpp253 INTERFACE, // action gets called for every service that holds this interface enumerator
271 {"interface_start", {ControlTarget::INTERFACE, DoControlStart}}, in get_control_message_map()
272 {"interface_stop", {ControlTarget::INTERFACE, DoControlStop}}, in get_control_message_map()
273 {"interface_restart", {ControlTarget::INTERFACE, DoControlRestart}}, in get_control_message_map()
309 case ControlTarget::INTERFACE: in HandleControlMessage()
/system/tools/hidl/docs/src/parser/elements/
DEntryParser.kt151 TokenGrammar.INTERFACE -> { in parseTokens()
/system/tools/hidl/docs/src/lexer/
DToken.kt44 INTERFACE("interface", TokenCategory.TypeDef),
/system/libhidl/transport/manager/1.0/
DIServiceManager.hal66 * looking for 'INTERFACE::registerAsService("name")' instead.
/system/tools/hidl/
Dhidl-gen_l.ll107 "interface" { return token::INTERFACE; }
Dhidl-gen_y.yy239 %token<void> INTERFACE "keyword `interface`"
667 : INTERFACE valid_type_name opt_extends
1121 | INTERFACE