Lines Matching refs:ec

46   error_code ec;
47 unwrap(SI)->increment(ec);
48 if (ec) report_fatal_error("LLVMMoveToNextSection failed: " + ec.message());
53 if (error_code ec = (*unwrap(Sym))->getSection(*unwrap(Sect)))
54 report_fatal_error(ec.message());
73 error_code ec;
74 unwrap(SI)->increment(ec);
75 if (ec) report_fatal_error("LLVMMoveToNextSymbol failed: " + ec.message());
81 if (error_code ec = (*unwrap(SI))->getName(ret))
82 report_fatal_error(ec.message());
88 if (error_code ec = (*unwrap(SI))->getSize(ret))
89 report_fatal_error(ec.message());
95 if (error_code ec = (*unwrap(SI))->getContents(ret))
96 report_fatal_error(ec.message());
102 if (error_code ec = (*unwrap(SI))->getAddress(ret))
103 report_fatal_error(ec.message());
110 if (error_code ec = (*unwrap(SI))->containsSymbol(**unwrap(Sym), ret))
111 report_fatal_error(ec.message());
131 error_code ec;
132 unwrap(SI)->increment(ec);
133 if (ec) report_fatal_error("LLVMMoveToNextRelocation failed: " +
134 ec.message());
141 if (error_code ec = (*unwrap(SI))->getName(ret))
142 report_fatal_error(ec.message());
148 if (error_code ec = (*unwrap(SI))->getAddress(ret))
149 report_fatal_error(ec.message());
155 if (error_code ec = (*unwrap(SI))->getFileOffset(ret))
156 report_fatal_error(ec.message());
162 if (error_code ec = (*unwrap(SI))->getSize(ret))
163 report_fatal_error(ec.message());
170 if (error_code ec = (*unwrap(RI))->getAddress(ret))
171 report_fatal_error(ec.message());
177 if (error_code ec = (*unwrap(RI))->getOffset(ret))
178 report_fatal_error(ec.message());
184 if (error_code ec = (*unwrap(RI))->getSymbol(ret))
185 report_fatal_error(ec.message());
192 if (error_code ec = (*unwrap(RI))->getType(ret))
193 report_fatal_error(ec.message());
200 if (error_code ec = (*unwrap(RI))->getTypeName(ret))
201 report_fatal_error(ec.message());
211 if (error_code ec = (*unwrap(RI))->getValueString(ret))
212 report_fatal_error(ec.message());