Home | History | Annotate | Download | only in Object

Lines Matching defs:SI

30   section_iterator SI = unwrap(ObjectFile)->begin_sections();
31 return wrap(new section_iterator(SI));
34 void LLVMDisposeSectionIterator(LLVMSectionIteratorRef SI) {
35 delete unwrap(SI);
39 LLVMSectionIteratorRef SI) {
40 return (*unwrap(SI) == unwrap(ObjectFile)->end_sections()) ? 1 : 0;
43 void LLVMMoveToNextSection(LLVMSectionIteratorRef SI) {
45 unwrap(SI)->increment(ec);
49 const char *LLVMGetSectionName(LLVMSectionIteratorRef SI) {
51 if (error_code ec = (*unwrap(SI))->getName(ret))
56 uint64_t LLVMGetSectionSize(LLVMSectionIteratorRef SI) {
58 if (error_code ec = (*unwrap(SI))->getSize(ret))
63 const char *LLVMGetSectionContents(LLVMSectionIteratorRef SI) {
65 if (error_code ec = (*unwrap(SI))->getContents(ret))