Searched refs:m_source (Results 1 – 7 of 7) sorted by relevance
/netbsd-src/external/bsd/elftosb/dist/common/ |
H A D | Operation.cpp | 17 m_source = source; in setSource() 21 m_target->setSource(m_source); in setSource() 23 if (m_source) in setSource() 25 m_source->setTarget(m_target); in setSource() 38 m_target->setSource(m_source); in setTarget() 40 if (m_source) in setTarget() 42 m_source->setTarget(m_target); in setTarget()
|
H A D | DataTarget.h | 48 DataTarget() : m_source(0) {} in DataTarget() 62 inline void setSource(DataSource * source) { m_source = source; } in setSource() 63 inline DataSource * getSource() const { return m_source; } in getSource() 66 DataSource * m_source; //!< Corresponding data source for this target.
|
H A D | Operation.h | 35 LoadOperation() : Operation(), m_source(), m_target() {} in LoadOperation() 38 inline DataSource * getSource() { return m_source; } in getSource() 47 smart_ptr<DataSource> m_source;
|
H A D | DataSource.h | 47 Segment(DataSource & source) : m_source(source) {} in Segment() 74 DataSource & m_source; //!< The data source to which this segment belongs.
|
H A D | DataSource.cpp | 54 DataTarget * target = m_source.getTarget(); in getLength()
|
/netbsd-src/external/bsd/elftosb/dist/elftosb2/ |
H A D | ElftosbAST.cpp | 1179 : ASTNode(other), m_sections(), m_source() in SectionMatchListASTNode() 1186 if (other.m_source) in SectionMatchListASTNode() 1188 m_source = new std::string(*other.m_source); in SectionMatchListASTNode() 1205 if (m_source) in printTree() 1207 printf("%s\n", m_source->c_str()); in printTree() 1218 : ASTNode(other), m_name(), m_source() in SectionASTNode() 1227 if (other.m_source) in SectionASTNode() 1229 m_source = new std::string(*other.m_source); in SectionASTNode() 1248 if (m_source) in printTree() 1250 printf("%s(%s:%s:%s)\n", nodeName().c_str(), actionName, m_name->c_str(), m_source->c_str()); in printTree() [all …]
|
H A D | ElftosbAST.h | 1032 : ASTNode(), m_sections(sections), m_source() in SectionMatchListASTNode() 1037 : ASTNode(), m_sections(sections), m_source(source) in SectionMatchListASTNode() 1050 inline std::string * getSourceName() { return m_source; } in getSourceName() 1054 smart_ptr<std::string> m_source; variable 1075 : ASTNode(), m_action(kInclude), m_name(name), m_source() in SectionASTNode() 1080 : ASTNode(), m_action(action), m_name(name), m_source() in SectionASTNode() 1085 : ASTNode(), m_action(kInclude), m_name(name), m_source(source) in SectionASTNode() 1099 inline std::string * getSourceName() { return m_source; } in getSourceName() 1104 smart_ptr<std::string> m_source; variable 1114 : ASTNode(), m_symbol(), m_source() in SymbolASTNode() [all …]
|