Searched refs:union_field (Results 1 – 4 of 4) sorted by relevance
/test/vts/drivers/hal/common/driver_manager/ |
D | VtsHalDriverManager.cpp | 463 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/ |
D | HalHidlCodeGen.cpp | 895 for (const auto& union_field : val.union_value()) { in GenerateDriverImplForTypedVariable() local 896 string union_field_name = arg_name + "." + union_field.name(); in GenerateDriverImplForTypedVariable() 899 GenerateDriverImplForTypedVariable(out, union_field, union_field_name, in GenerateDriverImplForTypedVariable() 1542 for (const auto& union_field : val.union_value()) { in GenerateSetResultCodeForTypedVariable() local 1543 string union_field_name = result_msg + "_" + union_field.name(); in GenerateSetResultCodeForTypedVariable() 1547 out, union_field, union_field_name, in GenerateSetResultCodeForTypedVariable() 1548 result_value + "." + union_field.name()); in GenerateSetResultCodeForTypedVariable() 1549 if (union_field.has_name()) { in GenerateSetResultCodeForTypedVariable() 1550 out << union_field_name << "->set_name(\"" << union_field.name() in GenerateSetResultCodeForTypedVariable()
|
/test/vts/compilation_tools/vtsc/code_gen/profiler/ |
D | HalHidlProfilerCodeGen.cpp | 136 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()
|
D | ProfilerCodeGenBase.cpp | 347 for (const auto& union_field : val.union_value()) { in IncludeHidlNativeType() local 348 if (IncludeHidlNativeType(union_field, type)) return true; in IncludeHidlNativeType()
|