/system/bt/service/ipc/ |
H A D | ipc_manager.h | 39 enum Type { enum in class:ipc::IPCManager 54 virtual void OnIPCHandlerStarted(Type type) = 0; 58 virtual void OnIPCHandlerStopped(Type type) = 0; 80 bool Start(Type type, Delegate* delegate);
|
/system/extras/simpleperf/include/ |
H A D | simpleperf.h | 63 enum Type { enum in class:simpleperf::PerfEventSet 68 static PerfEventSet* CreateInstance(Type type);
|
/system/netd/server/ |
H A D | Network.h | 31 enum Type { enum in class:android::net::Network 43 virtual Type getType() const = 0;
|
/system/tools/hidl/ |
H A D | Type.h | 34 struct Type { struct in namespace:android 35 Type(); 36 virtual ~Type(); 215 std::vector<const Type *> *exportedTypes) const; 253 DISALLOW_COPY_AND_ASSIGN(Type); 257 struct TemplatedType : public Type { 258 void setElementType(Type *elementType); 259 Type *getElementType() const; 261 virtual bool isCompatibleElementType(Type *elementType) const = 0; 266 Type *mElementTyp [all...] |
H A D | Type.cpp | 17 #include "Type.h" 27 Type::Type() function in class:android::Type 31 Type::~Type() {} 33 void Type::setAnnotations(std::vector<Annotation *> *annotations) { 37 const std::vector<Annotation *> &Type::annotations() const { 41 bool Type::isScope() const { 45 bool Type::isInterface() const { 49 bool Type [all...] |
/system/tools/hidl/c2hal/ |
H A D | Expression.h | 34 enum Type { enum in struct:android::Expression 42 static std::string getTypeDescription(Type type) { 54 static std::string getTypeName(Type type) { 66 static Type integralType(std::string integer); 67 static Type coalesceTypes(Type lhs, Type rhs); 70 static Expression *atom(Type type, const std::string &value, bool isId = false); 77 virtual Type getType(const AST &scope) = 0;
|
H A D | Type.cpp | 17 #include "Type.h" 24 Type::Type(std::vector<Qualifier*> *qualifiers) function in class:android::Type 28 Type::~Type() { 43 void Type::setArrays(std::vector<Expression*> *arrays) { 47 const std::string Type::decorateName(const std::string &name) const { 63 std::map<std::string, std::string> Type::kSignedToUnsignedMap = { 74 const std::string Type::signedToUnsigned(const std::string &signedType) { 84 std::map<std::string, std::string> Type [all...] |
H A D | Type.h | 30 struct Type { struct in namespace:android 50 Type *generics; 57 Qualifier(Qualification qualification, Type* generics) 67 Type(std::vector<Qualifier*> *qualifiers); 68 ~Type(); 112 DISALLOW_COPY_AND_ASSIGN(Type);
|
/system/update_engine/common/ |
H A D | action_pipe_unittest.cc | 46 string Type() const { return "ActionPipeTestAction"; } function in class:chromeos_update_engine::ActionPipeTestAction
|
H A D | action_unittest.cc | 51 string Type() const { return "ActionTestAction"; } function in class:chromeos_update_engine::ActionTestAction
|
H A D | action_processor_unittest.cc | 54 string Type() const { return "ActionProcessorTestAction"; } function in class:chromeos_update_engine::ActionProcessorTestAction 98 // Silence Type() calls used for logging. 99 EXPECT_CALL(mock_action_, Type()).Times(testing::AnyNumber());
|
H A D | test_utils.h | 230 std::string Type() const { return StaticType(); } function in class:chromeos_update_engine::ObjectFeederAction 264 std::string Type() const { return StaticType(); } function in class:chromeos_update_engine::ObjectCollectorAction
|
/system/tools/aidl/ |
H A D | type_cpp.h | 33 class Type : public ValidatableType { class in namespace:android::aidl::cpp 35 Type(int kind, // from ValidatableType 42 Type* array_type = nullptr, 43 Type* nullable_type = nullptr, 46 virtual ~Type() = default; 52 const Type* ArrayType() const override { return array_type_.get(); } 53 const Type* NullableType() const override { return nullable_type_.get(); } 84 const std::unique_ptr<Type> array_type_; 85 const std::unique_ptr<Type> nullable_type_; 87 DISALLOW_COPY_AND_ASSIGN(Type); [all...] |
H A D | type_java.h | 32 class Type : public ValidatableType { class in namespace:android::aidl::java 37 Type(const JavaTypeNamespace* types, const std::string& name, int kind, 39 Type(const JavaTypeNamespace* types, const std::string& package, 42 virtual ~Type() = default; 66 std::unique_ptr<Type> m_array_type; 69 Type(); 70 Type(const Type&); 78 class BasicArrayType : public Type { 99 class BasicType : public Type { [all...] |
H A D | type_cpp.cpp | 47 Type* const kNoArrayType = nullptr; 48 Type* const kNoNullableType = nullptr; 70 class VoidType : public Type { 72 VoidType() : Type(ValidatableType::KIND_BUILT_IN, kNoPackage, "void", 79 class CppArrayType : public Type { 90 : Type(kind, package, 129 class PrimitiveType : public Type { 138 : Type(ValidatableType::KIND_BUILT_IN, kNoPackage, aidl_type, {header}, 155 class ByteType : public Type { 158 : Type(ValidatableTyp 391 Type::Type(int kind, function in class:android::aidl::cpp::Type [all...] |
/system/nvram/messages/include/nvram/messages/ |
H A D | proto.hpp | 31 // |Codec<Type>| provides encoding and decoding logic for |Type|. 102 // field of the C++ type |Type|. The base template is left undefined here, 103 // specific implementations for relevant |Type|s are provided by template 107 // * |static bool Encode(const Type& object, ProtoWriter* writer)| writes the 109 // * |static bool Decode(Type& object, ProtoReader* reader)| decodes a field 115 template <typename Type, typename Enable = void> 117 // The assert below fails unconditionally, but must depend on the |Type| 123 static_assert(sizeof(Type) == 0, 132 // occurrence of a field of type |Type| 310 struct Type { struct in struct:nvram::proto::detail::__anon2482::StructDescriptor::FieldDescriptorBuilder::MemberCodecLookup [all...] |
/system/core/fastboot/ |
H A D | socket.cpp | 110 enum class Type { kClient, kServer }; class in class:UdpSocket 112 UdpSocket(Type type, cutils_socket_t sock); 125 UdpSocket::UdpSocket(Type type, cutils_socket_t sock) : Socket(sock) { 128 if (type == Type::kServer) { 251 return std::unique_ptr<UdpSocket>(new UdpSocket(UdpSocket::Type::kClient, sock)); 271 return std::unique_ptr<UdpSocket>(new UdpSocket(UdpSocket::Type::kServer, sock));
|
/system/update_engine/ |
H A D | omaha_request_action.h | 58 // The Type values correspond to EVENT_TYPE values of Omaha. 59 enum Type { enum in struct:chromeos_update_engine::OmahaEvent 82 explicit OmahaEvent(Type in_type) 86 OmahaEvent(Type in_type, Result in_result, ErrorCode in_error_code) 91 Type type; 163 std::string Type() const override { return StaticType(); }
|
/system/vold/ |
H A D | VolumeBase.h | 50 enum class Type { class in class:android::vold::VolumeBase 80 Type getType() { return mType; } 105 explicit VolumeBase(Type type); 128 Type mType;
|
/system/core/include/sysutils/ |
H A D | List.h | 75 typedef const TYPE Type; typedef in struct:android::sysutils::List::CONST_ITERATOR 81 typedef TYPE Type; typedef in struct:android::sysutils::List::NON_CONST_ITERATOR 91 typedef typename Constness<U>::Type _Type;
|
/system/core/include/utils/ |
H A D | List.h | 74 typedef const TYPE Type; typedef in struct:android::List::CONST_ITERATOR 80 typedef TYPE Type; typedef in struct:android::List::NON_CONST_ITERATOR 90 typedef typename Constness<U>::Type _Type;
|
/system/core/libsysutils/include/sysutils/ |
H A D | List.h | 75 typedef const TYPE Type; typedef in struct:android::sysutils::List::CONST_ITERATOR 81 typedef TYPE Type; typedef in struct:android::sysutils::List::NON_CONST_ITERATOR 91 typedef typename Constness<U>::Type _Type;
|
/system/core/libutils/include/utils/ |
H A D | List.h | 74 typedef const TYPE Type; typedef in struct:android::List::CONST_ITERATOR 80 typedef TYPE Type; typedef in struct:android::List::NON_CONST_ITERATOR 90 typedef typename Constness<U>::Type _Type;
|
/system/extras/tests/sdcard/ |
H A D | testcase.h | 44 enum Type {UNKNOWN_TEST, WRITE, READ, OPEN_CREATE, READ_WRITE, TRAVERSE}; enum in class:android_test::TestCase 120 Type type() const { return mType; } 137 Type mType;
|
/system/keymaster/ |
H A D | List.h | 74 typedef const TYPE Type; typedef in struct:android::List::CONST_ITERATOR 80 typedef TYPE Type; typedef in struct:android::List::NON_CONST_ITERATOR 90 typedef typename Constness<U>::Type _Type;
|