/test/vts/specification/lib/ndk/bionic/1.0/ |
D | libcV1.vts | 16 type: TYPE_SCALAR 20 type: TYPE_SCALAR 24 type: TYPE_SCALAR 28 type: TYPE_SCALAR 36 type: TYPE_SCALAR 40 type: TYPE_SCALAR 44 type: TYPE_PREDEFINED 49 type: TYPE_PREDEFINED 58 type: TYPE_SCALAR 62 type: TYPE_SCALAR [all …]
|
D | libcutilsV1.vts | 15 type: TYPE_SCALAR 19 type: TYPE_SCALAR 23 type: TYPE_SCALAR 27 type: TYPE_SCALAR 35 type: TYPE_SCALAR 39 type: TYPE_SCALAR 47 type: TYPE_SCALAR 51 type: TYPE_SCALAR 55 type: TYPE_SCALAR 63 type: TYPE_SCALAR [all …]
|
/test/vts/compilation_tools/vtsc/code_gen/common/ |
D | HalHidlCodeGenUtils.cpp | 22 bool IsElidableType(const VariableType& type) { in IsElidableType() argument 23 if (type == TYPE_SCALAR || type == TYPE_ENUM || type == TYPE_MASK || in IsElidableType() 24 type == TYPE_POINTER || type == TYPE_HIDL_INTERFACE || in IsElidableType() 25 type == TYPE_VOID) { in IsElidableType() 31 bool IsConstType(const VariableType& type) { in IsConstType() argument 32 if (type == TYPE_ARRAY || type == TYPE_VECTOR || type == TYPE_REF || in IsConstType() 33 type == TYPE_HIDL_INTERFACE) { in IsConstType() 36 if (IsElidableType(type)) { in IsConstType() 42 bool IsUserDefinedType(const VariableType& type) { in IsUserDefinedType() argument 43 if (type == TYPE_ENUM || type == TYPE_STRUCT || type == TYPE_UNION || in IsUserDefinedType() [all …]
|
/test/vts/proto/ |
D | ComponentSpecificationMessage_pb2.py | 36 type=None), 40 type=None), 44 type=None), 48 type=None), 52 type=None), 56 type=None), 60 type=None), 64 type=None), 68 type=None), 87 type=None), [all …]
|
D | VtsResourceControllerMessage_pb2.py | 38 type=None), 42 type=None), 46 type=None), 50 type=None), 54 type=None), 58 type=None), 62 type=None), 66 type=None), 70 type=None), 74 type=None), [all …]
|
D | AndroidSystemControlMessage_pb2.py | 39 type=None), 43 type=None), 47 type=None), 51 type=None), 55 type=None), 59 type=None), 63 type=None), 67 type=None), 71 type=None), 75 type=None), [all …]
|
D | VtsReportMessage_pb2.py | 36 type=None), 40 type=None), 44 type=None), 48 type=None), 52 type=None), 56 type=None), 75 type=None), 79 type=None), 83 type=None), 87 type=None), [all …]
|
D | VtsFuzzTaskMessage_pb2.py | 39 type=None), 43 type=None), 47 type=None), 66 type=None), 70 type=None), 74 type=None), 78 type=None), 107 number=1, type=12, cpp_type=9, label=1, 114 number=11, type=12, cpp_type=9, label=1, 121 number=12, type=12, cpp_type=9, label=1, [all …]
|
D | VtsProfilingMessage_pb2.py | 38 type=None), 42 type=None), 46 type=None), 50 type=None), 54 type=None), 58 type=None), 62 type=None), 66 type=None), 70 type=None), 74 type=None), [all …]
|
/test/vts/utils/python/mirror/ |
D | pb2py.py | 82 if curr_value.type == CompSpecMsg.TYPE_SCALAR: 84 elif curr_value.type == CompSpecMsg.TYPE_STRUCT: 87 logging.error("unsupported type %s", curr_value.type) 103 if curr_value.type == CompSpecMsg.TYPE_SCALAR: 105 elif curr_value.type == CompSpecMsg.TYPE_STRUCT: 108 logging.error("unsupported type %s", curr_value.type) 124 if attr.type == CompSpecMsg.TYPE_ENUM: 126 elif attr.type == CompSpecMsg.TYPE_SCALAR: 128 elif attr.type == CompSpecMsg.TYPE_STRING: 130 elif attr.type == CompSpecMsg.TYPE_VECTOR: [all …]
|
D | py2pb.py | 38 message.type = CompSpecMsg.TYPE_ENUM 65 message.type = CompSpecMsg.TYPE_SCALAR 85 message.type = CompSpecMsg.TYPE_STRING 105 message.type = CompSpecMsg.TYPE_VECTOR 164 message.type = CompSpecMsg.TYPE_STRUCT 171 if attr.type == CompSpecMsg.TYPE_ENUM: 173 elif attr.type == CompSpecMsg.TYPE_SCALAR: 175 elif attr.type == CompSpecMsg.TYPE_STRING: 177 elif attr.type == CompSpecMsg.TYPE_VECTOR: 179 elif attr.type == CompSpecMsg.TYPE_STRUCT: [all …]
|
D | native_entity_mirror.py | 101 logging.error("unknown spec type %s", type(self._if_spec_msg)) 144 elif (attribute.type == CompSpecMsg.TYPE_ENUM 151 elif (attribute.type == CompSpecMsg.TYPE_ENUM 211 if (arg.type == CompSpecMsg.TYPE_SCALAR 239 if result.type == CompSpecMsg.TYPE_HIDL_INTERFACE: 250 elif (result.type == CompSpecMsg.TYPE_FMQ_SYNC 251 or result.type == CompSpecMsg.TYPE_FMQ_UNSYNC): 259 if result.fmq_value[0].type == \ 264 elif (result.fmq_value[0].type == 266 result.fmq_value[0].type == [all …]
|
/test/vts/compilation_tools/vtsc/code_gen/profiler/ |
D | ProfilerCodeGenBase.cpp | 146 switch (val.type()) { in GenerateProfilerForTypedVariable() 225 out << "LOG(ERROR) << \"Type " << val.type() in GenerateProfilerForTypedVariable() 233 if (attribute.type() == TYPE_STRUCT || attribute.type() == TYPE_UNION || in GenerateProfilerMethodDeclForAttribute() 234 attribute.type() == TYPE_SAFE_UNION) { in GenerateProfilerMethodDeclForAttribute() 255 if (attribute.type() == TYPE_STRUCT || attribute.type() == TYPE_UNION || in GenerateProfilerMethodImplForAttribute() 256 attribute.type() == TYPE_SAFE_UNION) { in GenerateProfilerMethodImplForAttribute() 292 const ComponentSpecificationMessage& message, const VariableType& type) { in IncludeHidlNativeType() argument 297 if (IncludeHidlNativeType(attribute, type)) { in IncludeHidlNativeType() 303 if (IncludeHidlNativeType(arg, type)) { in IncludeHidlNativeType() 309 if (IncludeHidlNativeType(result, type)) { in IncludeHidlNativeType() [all …]
|
/test/vti/test_serving/proto/ |
D | TestScheduleConfigMessage_pb2.py | 36 type=None), 40 type=None), 44 type=None), 69 number=1, type=12, cpp_type=9, label=1, 76 number=2, type=12, cpp_type=9, label=1, 83 number=3, type=14, cpp_type=8, label=1, 90 number=11, type=11, cpp_type=10, label=3, 121 number=1, type=12, cpp_type=9, label=1, 128 number=2, type=8, cpp_type=7, label=1, 135 number=3, type=8, cpp_type=7, label=1, [all …]
|
D | GreenBuildScheduleConfigMessage_pb2.py | 38 number=1, type=12, cpp_type=9, label=1, 45 number=2, type=12, cpp_type=9, label=1, 52 number=3, type=12, cpp_type=9, label=1, 59 number=11, type=12, cpp_type=9, label=1, 66 number=12, type=12, cpp_type=9, label=1, 73 number=21, type=12, cpp_type=9, label=1, 80 number=22, type=12, cpp_type=9, label=1, 87 number=31, type=11, cpp_type=10, label=3, 118 number=1, type=12, cpp_type=9, label=1, 125 number=11, type=12, cpp_type=9, label=1, [all …]
|
D | TestLabConfigMessage_pb2.py | 38 number=1, type=12, cpp_type=9, label=1, 45 number=2, type=12, cpp_type=9, label=1, 52 number=3, type=12, cpp_type=9, label=3, 59 number=11, type=11, cpp_type=10, label=3, 90 number=1, type=12, cpp_type=9, label=1, 97 number=2, type=12, cpp_type=9, label=1, 104 number=3, type=12, cpp_type=9, label=1, 111 number=4, type=12, cpp_type=9, label=1, 118 number=5, type=12, cpp_type=9, label=3, 125 number=11, type=11, cpp_type=10, label=3, [all …]
|
/test/vti/dashboard/src/main/java/com/android/vts/servlet/ |
D | BaseServlet.java | 83 private final PageType type; field in BaseServlet.Page 87 public Page(PageType type) { in Page() argument 88 this.type = type; in Page() 89 this.name = type.defaultName; in Page() 90 this.url = type.defaultUrl; in Page() 93 public Page(PageType type, String name, String url) { in Page() argument 94 this.type = type; in Page() 95 this.name = type.defaultName + name; in Page() 96 this.url = type.defaultUrl + url; in Page() 99 public Page(PageType type, String name, String url, Boolean withoutDefault) { in Page() argument [all …]
|
/test/vti/dashboard/proto/ |
D | TestSuiteResultMessage_pb2.py | 40 number=1, type=9, cpp_type=9, label=1, 47 number=2, type=9, cpp_type=9, label=1, 54 number=3, type=8, cpp_type=7, label=1, 61 number=11, type=9, cpp_type=9, label=2, 68 number=12, type=9, cpp_type=9, label=2, 75 number=13, type=9, cpp_type=9, label=2, 82 number=21, type=9, cpp_type=9, label=1, 89 number=22, type=9, cpp_type=9, label=1, 96 number=23, type=9, cpp_type=9, label=1, 103 number=24, type=3, cpp_type=2, label=1, [all …]
|
/test/vts/compilation_tools/vtsc/test/golden/DRIVER/ |
D | libcV1.driver.cpp | 19 …int32_t arg0 = (func_msg->arg(0).type() == TYPE_SCALAR && func_msg->arg(0).scalar_value().has_int3… in Fuzz() 21 …int32_t arg1 = (func_msg->arg(1).type() == TYPE_SCALAR && func_msg->arg(1).scalar_value().has_int3… in Fuzz() 23 …int32_t arg2 = (func_msg->arg(2).type() == TYPE_SCALAR && func_msg->arg(2).scalar_value().has_int3… in Fuzz() 33 …int32_t arg0 = (func_msg->arg(0).type() == TYPE_SCALAR && func_msg->arg(0).scalar_value().has_int3… in Fuzz() 47 …int32_t arg0 = (func_msg->arg(0).type() == TYPE_SCALAR && func_msg->arg(0).scalar_value().has_int3… in Fuzz() 61 …int32_t arg0 = (func_msg->arg(0).type() == TYPE_SCALAR && func_msg->arg(0).scalar_value().has_int3… in Fuzz() 75 …int32_t arg0 = (func_msg->arg(0).type() == TYPE_SCALAR && func_msg->arg(0).scalar_value().has_int3… in Fuzz() 77 …int32_t arg1 = (func_msg->arg(1).type() == TYPE_SCALAR && func_msg->arg(1).scalar_value().has_int3… in Fuzz() 86 …int32_t arg0 = (func_msg->arg(0).type() == TYPE_SCALAR && func_msg->arg(0).scalar_value().has_int3… in Fuzz() 88 …void* arg1 = (func_msg->arg(1).type() == TYPE_SCALAR && func_msg->arg(1).scalar_value().has_void_p… in Fuzz() [all …]
|
/test/vts/compilation_tools/vtsc/code_gen/driver/ |
D | HalHidlCodeGen.cpp | 56 out << GetCppVariableType(arg, IsConstType(arg.type())) << " arg" << index in GenerateCppBodyInterfaceImpl() 67 out << GetCppVariableType(return_val, IsConstType(return_val.type())) in GenerateCppBodyInterfaceImpl() 125 void HalHidlCodeGen::GenerateScalarTypeInC(Formatter& out, const string& type) { in GenerateScalarTypeInC() argument 126 if (type == "bool_t") { in GenerateScalarTypeInC() 128 } else if (type == "int8_t" || in GenerateScalarTypeInC() 129 type == "uint8_t" || in GenerateScalarTypeInC() 130 type == "int16_t" || in GenerateScalarTypeInC() 131 type == "uint16_t" || in GenerateScalarTypeInC() 132 type == "int32_t" || in GenerateScalarTypeInC() 133 type == "uint32_t" || in GenerateScalarTypeInC() [all …]
|
D | HalCodeGen.cpp | 42 if (attribute.type() != TYPE_FUNCTION_POINTER || !attribute.is_callback()) { in GenerateCppBodyInterfaceImpl() 72 func_pt_spec.return_type().type() == TYPE_VOID) { in GenerateCppBodyInterfaceImpl() 74 } else if (func_pt_spec.return_type().type() == TYPE_PREDEFINED) { in GenerateCppBodyInterfaceImpl() 79 << func_pt_spec.return_type().type() << "\n"; in GenerateCppBodyInterfaceImpl() 92 if (arg.type() == TYPE_SCALAR) { in GenerateCppBodyInterfaceImpl() 122 } else if (arg.type() == TYPE_PREDEFINED) { in GenerateCppBodyInterfaceImpl() 182 if (arg.type() == TYPE_SCALAR) { in GenerateCppBodyInterfaceImpl() 235 } else if (arg.type() == TYPE_PREDEFINED) { in GenerateCppBodyInterfaceImpl() 339 if (attribute.type() == TYPE_FUNCTION_POINTER && in GenerateCppBodyFuzzFunction() 370 if (arg_count == 0 && arg.type() == TYPE_PREDEFINED && in GenerateCppBodyFuzzFunction() [all …]
|
/test/vts-testcase/kernel/bow/ |
D | BowTest.cpp | 181 SectorTypes type; member 185 return type == te.type && offset == te.offset; in operator ==() 203 te.type = SECTOR0; in GetTable() 205 te.type = SECTOR0_CURRENT; in GetTable() 207 te.type = UNCHANGED; in GetTable() 209 te.type = BACKUP; in GetTable() 211 te.type = FREE; in GetTable() 213 te.type = CHANGED; in GetTable() 215 te.type = TOP; in GetTable() 264 int Write(SectorTypes type) { in Write() argument [all …]
|
/test/vti/dashboard/src/main/java/com/android/vts/entity/ |
D | ProfilingPointRunEntity.java | 76 private int type; field in ProfilingPointRunEntity 115 int type, in ProfilingPointRunEntity() argument 124 this.type = type; in ProfilingPointRunEntity() 151 int type, in ProfilingPointRunEntity() argument 160 this.type = type; in ProfilingPointRunEntity() 175 public VtsProfilingType getVtsProfilingType(int type) { in getVtsProfilingType() argument 176 return VtsProfilingType.forNumber(type); in getVtsProfilingType() 236 profilingRun.setUnindexedProperty(TYPE, this.type); in toEntity() 272 int type = (int) (long) e.getProperty(TYPE); in fromEntity() local 286 parentKey, name, type, regressionMode, labels, values, xLabel, yLabel, options); in fromEntity() [all …]
|
D | ProfilingPointEntity.java | 71 private int type; field in ProfilingPointEntity 101 int type, in ProfilingPointEntity() argument 108 this.type = type; in ProfilingPointEntity() 120 public VtsProfilingType getVtsProfilingType(int type) { in getVtsProfilingType() argument 121 return VtsProfilingType.forNumber(type); in getVtsProfilingType() 154 profilingPoint.setUnindexedProperty(TYPE, this.type); in toEntity() 185 int type = (int) (long) e.getProperty(TYPE); in fromEntity() local 191 testName, profilingPointName, type, regressionMode, xLabel, yLabel); in fromEntity()
|
/test/vts/specification/kernel/ |
D | syscalls-arm64.vts | 14 type: TYPE_SCALAR 18 type: TYPE_SCALAR 23 type: TYPE_PREDEFINED 32 type: TYPE_SCALAR 36 type: TYPE_SCALAR 44 type: TYPE_SCALAR
|