Home | History | Annotate | Download | only in common

Lines Matching defs:segment

226 			Log::log(Logger::DEBUG2, "creating segment for section %s\n", name.c_str());
406 //! Not all sections will actually result in a new segment being created. Only
408 //! a new segment. Also, only sections whose size is non-zero will actually
409 //! create a segment.
414 //! should be filled. If not in the .secinfo table, no segment will be
426 // create the right segment subclass based on the section type
427 DataSource::Segment * segment = NULL;
430 segment = new ProgBitsSegment(*this, m_elf, sectionIndex);
464 segment = new NoBitsSegment(*this, m_elf, sectionIndex);
473 // add segment if one was created
474 if (segment)
476 m_segments.push_back(segment);
481 : DataSource::Segment(source), m_elf(elf), m_sectionIndex(index)