Home
last modified time | relevance | path

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

/development/vndk/tools/header-checker/src/repr/protobuf/
Dir_dumper.cpp193 abi_dump::FunctionDecl added_function; in ConvertFunctionIR() local
194 added_function.set_access(AccessIRToProtobuf(functionp->GetAccess())); in ConvertFunctionIR()
195 added_function.set_linker_set_key(functionp->GetLinkerSetKey()); in ConvertFunctionIR()
196 added_function.set_source_file(functionp->GetSourceFile()); in ConvertFunctionIR()
197 added_function.set_function_name(functionp->GetName()); in ConvertFunctionIR()
198 if (!AddFunctionParametersAndSetReturnType(&added_function, functionp) || in ConvertFunctionIR()
200 AddTemplateInformation(added_function.mutable_template_info(), functionp) in ConvertFunctionIR()
205 return added_function; in ConvertFunctionIR()
397 abi_dump::FunctionDecl *added_function = tu_ptr_->add_functions(); in AddFunctionIR() local
398 if (!added_function) { in AddFunctionIR()
[all …]
Dir_diff_dumper.cpp220 abi_dump::FunctionDecl *added_function = nullptr; in AddLoneFunctionDiffIR() local
223 added_function = diff_tu_->add_functions_removed(); in AddLoneFunctionDiffIR()
226 added_function = diff_tu_->add_functions_added(); in AddLoneFunctionDiffIR()
232 *added_function = IRToProtobufConverter::ConvertFunctionIR(function_ir); in AddLoneFunctionDiffIR()
/development/vndk/tools/header-checker/src/dumper/
Dast_processing.cpp76 auto added_function = std::make_unique<repr::FunctionIR>(); in MutateFunctionWithLinkageName() local
77 *added_function = *function; in MutateFunctionWithLinkageName()
78 added_function->SetLinkerSetKey(linkage_name); in MutateFunctionWithLinkageName()
79 return module->AddLinkableMessage(*added_function); in MutateFunctionWithLinkageName()