Searched refs:readobj_error (Results 1 - 6 of 6) sorted by relevance

/freebsd-10.3-release/contrib/llvm/tools/llvm-readobj/
H A DError.cpp34 case readobj_error::success: return "Success";
35 case readobj_error::file_not_found:
37 case readobj_error::unsupported_file_format:
39 case readobj_error::unrecognized_file_format:
41 case readobj_error::unsupported_obj_file_format:
43 case readobj_error::unknown_symbol:
46 llvm_unreachable("An enumerator of readobj_error does not have a message "
52 if (ev == readobj_error::success)
H A DError.h23 struct readobj_error { struct in namespace:llvm
34 readobj_error(_ v) : v_(v) {} function in struct:llvm::readobj_error
35 explicit readobj_error(int v) : v_(_(v)) {} function in struct:llvm::readobj_error
39 inline error_code make_error_code(readobj_error e) {
43 template <> struct is_error_code_enum<readobj_error> : true_type { };
44 template <> struct is_error_code_enum<readobj_error::_> : true_type { };
H A Dllvm-readobj.cpp179 return readobj_error::unsupported_file_format;
188 return readobj_error::unsupported_obj_file_format;
248 reportError(Arc->getFileName(), readobj_error::unrecognized_file_format);
257 reportError(File, readobj_error::file_not_found);
273 reportError(File, readobj_error::unrecognized_file_format);
H A DMachODumper.cpp64 return readobj_error::unsupported_obj_file_format;
67 return readobj_error::success;
H A DCOFFDumper.cpp110 return readobj_error::unsupported_obj_file_format;
113 return readobj_error::success;
207 return readobj_error::success;
211 return readobj_error::unknown_symbol;
474 return readobj_error::success;
H A DELFDumper.cpp83 return readobj_error::success;
105 return readobj_error::unsupported_obj_file_format;

Completed in 110 milliseconds