Home
last modified time | relevance | path

Searched refs:element_type (Results 1 – 3 of 3) sorted by relevance

/test/vts/compilation_tools/vtsc/
DVtsCompilerUtils.cpp194 string element_type = GetCppVariableType(arg.vector_value(0)); in GetCppVariableType() local
195 result = "::android::hardware::hidl_vec<" + element_type + ">"; in GetCppVariableType()
207 string element_type = GetCppVariableType(cur_val); in GetCppVariableType() local
208 result = "::android::hardware::hidl_array<" + element_type + ", "; in GetCppVariableType()
307 string element_type = GetCppVariableType(arg.fmq_value(0)); in GetCppVariableType() local
308 result = "::android::hardware::MQDescriptorSync<" + element_type + ">"; in GetCppVariableType()
313 string element_type = GetCppVariableType(arg.fmq_value(0)); in GetCppVariableType() local
314 result = "::android::hardware::MQDescriptorUnsync<" + element_type + ">"; in GetCppVariableType()
326 string element_type = GetCppVariableType(cur_val); in GetCppVariableType() local
327 result = element_type; in GetCppVariableType()
/test/vts/compilation_tools/vtsc/code_gen/profiler/
DHalHidlProfilerCodeGen.cpp304 string element_type = GetCppVariableType(val.fmq_value(0)); in GenerateProfilerForFMQSyncVariable() local
307 out << "MessageQueue<" << element_type << ", kSynchronizedReadWrite> " in GenerateProfilerForFMQSyncVariable()
317 out << element_type << " " << temp_result_name << ";\n"; in GenerateProfilerForFMQSyncVariable()
332 string element_type = GetCppVariableType(val.fmq_value(0)); in GenerateProfilerForFMQUnsyncVariable() local
335 out << "MessageQueue<" << element_type << ", kUnsynchronizedWrite> " in GenerateProfilerForFMQUnsyncVariable()
345 out << element_type << " " << temp_result_name << ";\n"; in GenerateProfilerForFMQUnsyncVariable()
/test/vts/compilation_tools/vtsc/code_gen/driver/
DHalHidlCodeGen.cpp1115 std::string element_type = GetCppVariableType(val.fmq_value(0)); in GenerateDriverImplForTypedVariable() local
1132 out << "::android::hardware::MessageQueue<" << element_type in GenerateDriverImplForTypedVariable()
1141 out << element_type << " " << fmq_item_name << ";\n"; in GenerateDriverImplForTypedVariable()