Home
last modified time | relevance | path

Searched defs:type (Results 1 – 25 of 438) sorted by relevance

12345678910>>...18

/system/tools/aidl/
Daidl_to_cpp.cpp71 const auto& type = raw_type.IsGeneric() ? *raw_type.GetTypeParameters().at(0) : raw_type; in RawParcelMethod() local
133 std::string GetRawCppName(const AidlTypeSpecifier& type) { in GetRawCppName()
139 const auto& type = raw_type.IsGeneric() ? (*raw_type.GetTypeParameters().at(0)) : raw_type; in WrapIfNullable() local
167 const auto& type = raw_type.IsGeneric() ? (*raw_type.GetTypeParameters().at(0)) : raw_type; in GetCppName() local
187 std::string ConstantValueDecorator(const AidlTypeSpecifier& type, const std::string& raw_value) { in ConstantValueDecorator()
211 std::string CppNameOf(const AidlTypeSpecifier& type, const AidlTypenames& typenames) { in CppNameOf()
222 bool IsNonCopyableType(const AidlTypeSpecifier& type, const AidlTypenames& typenames) { in IsNonCopyableType()
234 std::string ParcelReadMethodOf(const AidlTypeSpecifier& type, const AidlTypenames& typenames) { in ParcelReadMethodOf()
238 std::string ParcelReadCastOf(const AidlTypeSpecifier& type, const AidlTypenames& typenames, in ParcelReadCastOf()
250 std::string ParcelWriteMethodOf(const AidlTypeSpecifier& type, const AidlTypenames& typenames) { in ParcelWriteMethodOf()
[all …]
Daidl_to_ndk.cpp71 std::string ConstantValueDecorator(const AidlTypeSpecifier& type, const std::string& raw_value) { in ConstantValueDecorator()
115 TypeInfo InterfaceTypeInfo(const AidlInterface& type) { in InterfaceTypeInfo()
137 TypeInfo ParcelableTypeInfo(const AidlParcelable& type) { in ParcelableTypeInfo()
348 const AidlDefinedType* type = types.TryGetDefinedType(aidl_name); in GetTypeAspect() local
380 std::string NdkFullClassName(const AidlDefinedType& type, cpp::ClassNames name) { in NdkFullClassName()
420 std::function<std::string(const std::string& type, const std::string& name, bool isOut)> in NdkArgList()
425 std::string type = NdkNameOf(types, a->GetType(), mode); in NdkArgList() local
431 std::string type = NdkNameOf(types, method.GetType(), StorageMode::OUT_ARGUMENT); in NdkArgList() local
Daidl_to_ndk.h47 const AidlTypeSpecifier& type; member
62 inline std::string FormatArgForDecl(const std::string& type, const std::string& name, in FormatArgForDecl()
67 inline std::string FormatArgNameUnused(const std::string& type, const std::string& name, in FormatArgNameUnused()
/system/tools/hidl/
DScope.cpp38 void Scope::addType(NamedType* type) { in addType()
45 for (const auto* type : mTypes) { in validateUniqueNames() local
102 for (const NamedType *type : mTypes) { in definesInterfaces() local
162 for (const Type* type : mTypes) { in emitTypeDeclarations() local
171 for (const Type* type : mTypes) { in emitTypeDeclarations() local
178 for (const Type* type : mTypes) { in emitGlobalTypeDeclarations() local
184 for (const Type* type : mTypes) { in emitPackageTypeDeclarations() local
190 for (const Type* type : mTypes) { in emitPackageTypeHeaderDefinitions() local
196 for (const Type* type : mTypes) { in emitPackageHwDeclarations() local
206 for (const Type* type : mTypes) { in emitJavaTypeDeclarations() local
[all …]
DAST.cpp162 [&](Type* type) -> status_t { in constantExpressionRecursivePass()
179 [&](const Type* type) -> status_t { in constantExpressionRecursivePass()
193 [oldStage, newStage](Type* type) { in setParseStage()
205 [&](Type* type) -> status_t { in lookupTypes()
233 [&](Type* type) -> status_t { in gatherReferencedTypes()
253 [&](Type* type) -> status_t { in lookupConstantExpressions()
293 [&](const Type* type) -> status_t { in validateDefinedTypesUniqueNames()
337 [&](Type* type) { in topologicalReorder()
352 [&](const Type* type) -> status_t { in checkAcyclicConstantExpressions()
367 [](const Type* type) -> status_t { in checkForwardReferenceRestrictions()
[all …]
/system/extras/simpleperf/nonlinux_support/include/linux/
Dioctl.h17 #define __IO(type, nr) argument
18 #define __IOR(type, nr, size) argument
19 #define __IOW(type, nr, size) argument
/system/tools/xsdc/src/com/android/xsdc/java/
DJavaCodeGenerator.java61 XsdType type = element.getType(); in JavaCodeGenerator() local
103 XsdType type = element.getType(); in print() local
202 XsdType type = resolveAttribute(attribute).getType(); in printClass() local
208 JavaType type = elementTypes.get(i); in printClass() local
217 JavaType type = attributeTypes.get(i); in printClass() local
228 JavaType type = elementTypes.get(i); in printClass() local
235 JavaType type = attributeTypes.get(i); in printClass() local
267 XsdType type = resolveAttribute(attribute).getType(); in printParser() local
278 JavaType type = allAttributeTypes.get(i); in printParser() local
303 JavaType type = allElementTypes.get(i); in printParser() local
[all …]
/system/tools/xsdc/src/com/android/xsdc/cpp/
DCppCodeGenerator.java68 XsdType type = element.getType(); in CppCodeGenerator() local
146 XsdType type = element.getType(); in print() local
198 XsdType type = element.getType(); in printPrototype() local
254 XsdType type = resolveAttribute(attribute).getType(); in printClass() local
262 CppType type = elementTypes.get(i); in printClass() local
271 CppType type = attributeTypes.get(i); in printClass() local
284 CppType type = elementTypes.get(i); in printClass() local
293 CppType type = attributeTypes.get(i); in printClass() local
323 XsdType type = resolveAttribute(attribute).getType(); in printParser() local
334 CppType type = allAttributeTypes.get(i); in printParser() local
[all …]
/system/tools/xsdc/src/com/android/xsdc/tag/
DXsdAttribute.java24 final private XsdType type; field in XsdAttribute
26 public XsdAttribute(String name, QName ref, XsdType type) in XsdAttribute()
DXsdElement.java24 final private XsdType type; field in XsdElement
27 public XsdElement(String name, QName ref, XsdType type, boolean multiple) in XsdElement()
/system/core/property_service/libpropertyinfoserializer/
Dtrie_builder.h34 const std::string* type; member
58 const std::string* type) { in AddPrefixContext()
69 const std::string* type) { in AddExactMatchContext()
83 const std::string* type() const { return property_entry_.type; } in type() function
84 void set_type(const std::string* type) { property_entry_.type = type; } in set_type()
/system/tools/hidl/hidl2aidl/
DAidlType.cpp28 static std::string getPlaceholderType(const std::string& type) { in getPlaceholderType()
32 std::string AidlHelper::getAidlType(const Type& type, const FQName& relativeTo) { in getAidlType()
/system/keymaster/android_keymaster/
Dkeymaster_tags.cpp150 #define DEFINE_KEYMASTER_TAG(type, name) TypedTag<type, KM_##name> name argument
202 #define DEFINE_KEYMASTER_ENUM_TAG(type, name, enumtype) TypedEnumTag<type, KM_##name, enumtype> name argument
/system/core/adb/sysdeps/posix/
Dnetwork.cpp58 static int _network_loopback_client(bool ipv6, int port, int type, std::string* error) { in _network_loopback_client()
84 int network_loopback_client(int port, int type, std::string* error) { in network_loopback_client()
93 static int _network_loopback_server(bool ipv6, int port, int type, std::string* error) { in _network_loopback_server()
122 int network_loopback_server(int port, int type, std::string* error, bool prefer_ipv4) { in network_loopback_server()
136 int network_connect(const std::string& host, int port, int type, int timeout, std::string* error) { in network_connect()
/system/bt/stack/avdt/
Davdt_ad.cc66 uint8_t avdt_ad_type_to_tcid(uint8_t type, AvdtpScb* p_scb) { in avdt_ad_type_to_tcid()
92 uint8_t type; in avdt_ad_tcid_to_type() local
142 AvdtpTransportChannel* avdt_ad_tc_tbl_by_st(uint8_t type, AvdtpCcb* p_ccb, in avdt_ad_tc_tbl_by_st()
217 AvdtpTransportChannel* avdt_ad_tc_tbl_by_type(uint8_t type, AvdtpCcb* p_ccb, in avdt_ad_tc_tbl_by_type()
486 uint8_t avdt_ad_write_req(uint8_t type, AvdtpCcb* p_ccb, AvdtpScb* p_scb, in avdt_ad_write_req()
513 void avdt_ad_open_req(uint8_t type, AvdtpCcb* p_ccb, AvdtpScb* p_scb, in avdt_ad_open_req()
585 void avdt_ad_close_req(uint8_t type, AvdtpCcb* p_ccb, AvdtpScb* p_scb) { in avdt_ad_close_req()
/system/media/radio/src/
Dradio_metadata.c106 const radio_metadata_type_t type, in add_metadata()
219 radio_metadata_type_t type = radio_metadata_type_of_key(key); in radio_metadata_add_int() local
231 radio_metadata_type_t type = radio_metadata_type_of_key(key); in radio_metadata_add_text() local
244 radio_metadata_type_t type = radio_metadata_type_of_key(key); in radio_metadata_add_raw() local
254 radio_metadata_type_t type = radio_metadata_type_of_key(key); in radio_metadata_add_clock() local
289 radio_metadata_type_t type; in radio_metadata_add_metadata() local
376 radio_metadata_type_t *type, in radio_metadata_get_at_index()
403 radio_metadata_type_t *type, in radio_metadata_get_from_key()
/system/core/libkeyutils/
Dkeyutils.cpp37 key_serial_t add_key(const char* type, const char* description, const void* payload, in add_key()
50 long keyctl_search(key_serial_t ring_id, const char* type, const char* description, in keyctl_search()
63 long keyctl_restrict_keyring(key_serial_t keyring, const char* type, const char* restriction) { in keyctl_restrict_keyring()
/system/bt/binder/android/bluetooth/
DIBluetoothSocketManager.aidl30 …@nullable ParcelFileDescriptor connectSocket(in BluetoothDevice device, int type, in @nullable Par… in connectSocket()
31 …@nullable ParcelFileDescriptor createSocketChannel(int type, in @nullable String serviceName, in @… in createSocketChannel()
/system/core/libkeyutils/mini_keyctl/
Dmini_keyctl.cpp66 int Add(const std::string& type, const std::string& desc, const std::string& data, in Add()
85 int Padd(const std::string& type, const std::string& desc, const std::string& keyring) { in Padd()
141 std::string type = argv[2]; in main() local
148 std::string type = argv[2]; in main() local
/system/core/init/
Dselabel.cpp40 bool SelabelLookupFileContext(const std::string& key, int type, std::string* result) { in SelabelLookupFileContext()
57 const std::vector<std::string>& aliases, int type, in SelabelLookupFileContextBestMatch()
/system/core/liblog/include/private/
Dandroid_logger.h62 int8_t type; // EVENT_TYPE_LIST member
68 int8_t type; // EVENT_TYPE_FLOAT member
74 int8_t type; // EVENT_TYPE_INT member
86 int8_t type; // EVENT_TYPE_LONG member
109 int8_t type; // EVENT_TYPE_STRING; member
117 int8_t type; // EVENT_TYPE_STRING; member
/system/core/include/private/
Dandroid_logger.h62 int8_t type; // EVENT_TYPE_LIST member
68 int8_t type; // EVENT_TYPE_FLOAT member
74 int8_t type; // EVENT_TYPE_INT member
86 int8_t type; // EVENT_TYPE_LONG member
109 int8_t type; // EVENT_TYPE_STRING; member
117 int8_t type; // EVENT_TYPE_STRING; member
/system/iorap/src/binder/
Diiorap_def.h52 #define IORAP_BINDER_PARAM_JOIN_ALL_IMPL(type_l, type, type_r, name) type_l type type_r name argument
55 #define IORAP_BINDER_PARAM_JOIN_NAMES_IMPL(type_l, type, type_r, name) name argument
/system/bt/tools/scripts/
Dbtsnooz.py41 def type_to_direction(type): argument
52 def type_to_hci(type): argument
/system/update_engine/common/
Dfake_prefs.cc44 FakePrefs::PrefType const FakePrefs::PrefConsts<string>::type = member in chromeos_update_engine::FakePrefs::PrefConsts<string>
51 FakePrefs::PrefType const FakePrefs::PrefConsts<int64_t>::type = member in chromeos_update_engine::FakePrefs::PrefConsts<int64_t>
58 FakePrefs::PrefType const FakePrefs::PrefConsts<bool>::type = member in chromeos_update_engine::FakePrefs::PrefConsts<bool>
108 string FakePrefs::GetTypeName(PrefType type) { in GetTypeName()

12345678910>>...18