/external/oprofile/libabi/ |
abi.h | 19 struct abi_exception : std::exception { struct in inherits:std::exception 22 explicit abi_exception(std::string const d); 24 ~abi_exception() throw() {} 32 int need(std::string const key) const throw (abi_exception);
|
abi.cpp | 25 abi_exception::abi_exception(string const d) : desc(d) {} function in class:abi_exception 38 int abi::need(string const key) const throw (abi_exception) 43 throw abi_exception(string("missing ABI key: ") + key);
|
opimport.cpp | 108 size_t len, odb_t * dest) throw (abi_exception) 220 } catch (abi_exception & e) {
|