Home
last modified time | relevance | path

Searched refs:union_field (Results 1 – 4 of 4) sorted by relevance

/test/vts/drivers/hal/common/driver_manager/
DVtsHalDriverManager.cpp463 auto* union_field = arg->mutable_union_value(i); in PreprocessHidlHalFunctionCallArgs() local
464 if (!PreprocessHidlHalFunctionCallArgs(union_field)) { in PreprocessHidlHalFunctionCallArgs()
467 << union_field->name() << "\" in union \"" << arg->name() in PreprocessHidlHalFunctionCallArgs()
603 auto* union_field = return_val->mutable_union_value(i); in SetHidlHalFunctionCallResults() local
604 if (!SetHidlHalFunctionCallResults(union_field)) { in SetHidlHalFunctionCallResults()
606 LOG(ERROR) << "Failed to set union field \"" << union_field->name() in SetHidlHalFunctionCallResults()
/test/vts/compilation_tools/vtsc/code_gen/driver/
DHalHidlCodeGen.cpp894 for (const auto& union_field : val.union_value()) { in GenerateDriverImplForTypedVariable() local
895 string union_field_name = arg_name + "." + union_field.name(); in GenerateDriverImplForTypedVariable()
898 GenerateDriverImplForTypedVariable(out, union_field, union_field_name, in GenerateDriverImplForTypedVariable()
1541 for (const auto& union_field : val.union_value()) { in GenerateSetResultCodeForTypedVariable() local
1542 string union_field_name = result_msg + "_" + union_field.name(); in GenerateSetResultCodeForTypedVariable()
1546 out, union_field, union_field_name, in GenerateSetResultCodeForTypedVariable()
1547 result_value + "." + union_field.name()); in GenerateSetResultCodeForTypedVariable()
1548 if (union_field.has_name()) { in GenerateSetResultCodeForTypedVariable()
1549 out << union_field_name << "->set_name(\"" << union_field.name() in GenerateSetResultCodeForTypedVariable()
/test/vts/compilation_tools/vtsc/code_gen/profiler/
DHalHidlProfilerCodeGen.cpp136 for (const auto& union_field : val.union_value()) { in GenerateProfilerForUnionVariable() local
137 std::string union_field_name = arg_name + "_" + union_field.name(); in GenerateProfilerForUnionVariable()
140 GenerateProfilerForTypedVariable(out, union_field, union_field_name, in GenerateProfilerForUnionVariable()
141 arg_value + "." + union_field.name()); in GenerateProfilerForUnionVariable()
DProfilerCodeGenBase.cpp347 for (const auto& union_field : val.union_value()) { in IncludeHidlNativeType() local
348 if (IncludeHidlNativeType(union_field, type)) return true; in IncludeHidlNativeType()