Home
last modified time | relevance | path

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

/test/vts/drivers/hal/common/driver_manager/
DVtsHalDriverManager.cpp477 auto* struct_field = arg->mutable_struct_value(i); in PreprocessHidlHalFunctionCallArgs() local
478 if (!PreprocessHidlHalFunctionCallArgs(struct_field)) { in PreprocessHidlHalFunctionCallArgs()
481 << struct_field->name() << "\" in struct \"" << arg->name() in PreprocessHidlHalFunctionCallArgs()
616 auto* struct_field = return_val->mutable_struct_value(i); in SetHidlHalFunctionCallResults() local
617 if (!SetHidlHalFunctionCallResults(struct_field)) { in SetHidlHalFunctionCallResults()
619 LOG(ERROR) << "Failed to set struct field \"" << struct_field->name() in SetHidlHalFunctionCallResults()
/test/vts/compilation_tools/vtsc/code_gen/driver/
DHalHidlCodeGen.cpp874 for (const auto& struct_field : val.struct_value()) { in GenerateDriverImplForTypedVariable() local
875 string struct_field_name = arg_name + "." + struct_field.name(); in GenerateDriverImplForTypedVariable()
878 GenerateDriverImplForTypedVariable(out, struct_field, in GenerateDriverImplForTypedVariable()
1519 for (const auto& struct_field : val.struct_value()) { in GenerateSetResultCodeForTypedVariable() local
1520 string struct_field_name = result_msg + "_" + struct_field.name(); in GenerateSetResultCodeForTypedVariable()
1524 out, struct_field, struct_field_name, in GenerateSetResultCodeForTypedVariable()
1525 result_value + "." + struct_field.name()); in GenerateSetResultCodeForTypedVariable()
1526 if (struct_field.has_name()) { in GenerateSetResultCodeForTypedVariable()
1528 << struct_field.name() << "\");\n"; in GenerateSetResultCodeForTypedVariable()
/test/vts/compilation_tools/vtsc/code_gen/profiler/
DHalHidlProfilerCodeGen.cpp114 for (const auto& struct_field : val.struct_value()) { in GenerateProfilerForStructVariable() local
115 std::string struct_field_name = arg_name + "_" + struct_field.name(); in GenerateProfilerForStructVariable()
119 GenerateProfilerForTypedVariable(out, struct_field, struct_field_name, in GenerateProfilerForStructVariable()
120 arg_value + "." + struct_field.name()); in GenerateProfilerForStructVariable()
DProfilerCodeGenBase.cpp337 for (const auto& struct_field : val.struct_value()) { in IncludeHidlNativeType() local
338 if (IncludeHidlNativeType(struct_field, type)) return true; in IncludeHidlNativeType()