Home | History | Annotate | Download | only in Object

Lines Matching refs:RI

197 uint64_t LLVMGetRelocationAddress(LLVMRelocationIteratorRef RI) {
199 if (std::error_code ec = (*unwrap(RI))->getAddress(ret))
204 uint64_t LLVMGetRelocationOffset(LLVMRelocationIteratorRef RI) {
206 if (std::error_code ec = (*unwrap(RI))->getOffset(ret))
211 LLVMSymbolIteratorRef LLVMGetRelocationSymbol(LLVMRelocationIteratorRef RI) {
212 symbol_iterator ret = (*unwrap(RI))->getSymbol();
216 uint64_t LLVMGetRelocationType(LLVMRelocationIteratorRef RI) {
218 if (std::error_code ec = (*unwrap(RI))->getType(ret))
224 const char *LLVMGetRelocationTypeName(LLVMRelocationIteratorRef RI) {
226 if (std::error_code ec = (*unwrap(RI))->getTypeName(ret))
235 const char *LLVMGetRelocationValueString(LLVMRelocationIteratorRef RI) {
237 if (std::error_code ec = (*unwrap(RI))->getValueString(ret))