Home
last modified time | relevance | path

Searched refs:dataSection (Results 1 – 6 of 6) sorted by relevance

/netbsd/src/external/bsd/elftosb/dist/elftosb2/
DEncoreBootImageGenerator.cpp37 BinaryDataSection * dataSection = dynamic_cast<BinaryDataSection*>(section); in generate() local
38 if (dataSection) in generate()
40 processDataSection(dataSection, image); in generate()
289 …EncoreBootImage::DataSection * dataSection = new EncoreBootImage::DataSection(section->getIdentifi… in processDataSection() local
290 dataSection->setData(section->getData(), section->getLength()); in processDataSection()
293 processSectionOptions(dataSection, section); in processDataSection()
295 image->addSection(dataSection); in processDataSection()
DConversionController.cpp446 DataSectionContentsASTNode * dataSection; in processSections() local
472 else if (dataSection = dynamic_cast<DataSectionContentsASTNode*>(node)) in processSections()
474 … outputSection = convertDataSection(dataSection, sectionID, optionsDict); in processSections()
507 OutputSection * ConversionController::convertDataSection(DataSectionContentsASTNode * dataSection, … in convertDataSection() argument
510 ASTNode * contents = dataSection->getContents(); in convertDataSection()
DConversionController.h98 …OutputSection * convertDataSection(DataSectionContentsASTNode * dataSection, uint32_t sectionID, O…
Delftosb_parser.y357 … DataSectionContentsASTNode * dataSection = new DataSectionContentsASTNode($2);
358dataSection->setLocation(@1, @3);
359 $$ = dataSection;
Delftosb_parser.tab.cpp1754 … DataSectionContentsASTNode * dataSection = new DataSectionContentsASTNode((yyvsp[-1].m_ast)); local
1755dataSection->setLocation((yylsp[-2]), (yylsp[0]));
1756 … (yyval.m_ast) = dataSection;
/netbsd/src/external/bsd/elftosb/dist/sbtool/
DEncoreBootImageReader.cpp352 … EncoreBootImage::DataSection * dataSection = new EncoreBootImage::DataSection(header.m_tag); in readSection() local
353 dataSection->setDataNoCopy(contents, contentLength); in readSection()
355 resultSection = dataSection; in readSection()