Lines Matching refs:psection
137 void elfio_section_get_name( psection_t psection, char* buffer, int len ) in elfio_section_get_name() argument
139 strncpy( buffer, psection->get_name().c_str(), (size_t)len - 1 ); in elfio_section_get_name()
142 void elfio_section_set_name( psection_t psection, char* buffer ) in elfio_section_set_name() argument
144 psection->set_name( buffer ); in elfio_section_set_name()
147 char* elfio_section_get_data( psection_t psection ) in elfio_section_get_data() argument
149 return (char*)psection->get_data(); in elfio_section_get_data()
152 void elfio_section_set_data( psection_t psection, in elfio_section_set_data() argument
156 psection->set_data( pData, size ); in elfio_section_set_data()
159 void elfio_section_append_data( psection_t psection, in elfio_section_append_data() argument
163 psection->append_data( pData, size ); in elfio_section_append_data()
210 psection_t psection ) in elfio_symbol_section_accessor_new() argument
212 return new symbol_section_accessor( *pelfio, psection ); in elfio_symbol_section_accessor_new()
265 psection_t psection ) in elfio_relocation_section_accessor_new() argument
267 return new relocation_section_accessor( *pelfio, psection ); in elfio_relocation_section_accessor_new()
319 pstring_t elfio_string_section_accessor_new( psection_t psection ) in elfio_string_section_accessor_new() argument
321 return new string_section_accessor( psection ); in elfio_string_section_accessor_new()
342 pnote_t elfio_note_section_accessor_new( pelfio_t pelfio, psection_t psection ) in elfio_note_section_accessor_new() argument
344 return new note_section_accessor( *pelfio, psection ); in elfio_note_section_accessor_new()
381 pmodinfo_t elfio_modinfo_section_accessor_new( psection_t psection ) in elfio_modinfo_section_accessor_new() argument
383 return new modinfo_section_accessor( psection ); in elfio_modinfo_section_accessor_new()
434 psection_t psection ) in elfio_dynamic_section_accessor_new() argument
436 return new dynamic_section_accessor( *pelfio, psection ); in elfio_dynamic_section_accessor_new()
474 psection_t psection ) in elfio_array_section_accessor_new() argument
476 return new array_section_accessor( *pelfio, psection ); in elfio_array_section_accessor_new()