Searched defs:StatusTuple (Results 1 – 2 of 2) sorted by relevance
/external/bcc/src/cc/ |
D | bcc_exception.h | 42 StatusTuple(int ret) : ret_(ret) {} in StatusTuple() function 44 StatusTuple(int ret, const char *msg) : ret_(ret), msg_(msg) {} in StatusTuple() function 46 StatusTuple(int ret, const std::string &msg) : ret_(ret), msg_(msg) {} in StatusTuple() function 49 StatusTuple(int ret, const char *fmt, Args... args) : ret_(ret) { in StatusTuple() function 55 StatusTuple(Code code, const std::string &msg) : use_enum_code_(true), code_(code), msg_(msg) {} in StatusTuple() function
|
/external/bcc/src/cc/includes/ |
D | bcc_exception.h | 42 StatusTuple(int ret) : ret_(ret) {} in StatusTuple() function 44 StatusTuple(int ret, const char *msg) : ret_(ret), msg_(msg) {} in StatusTuple() function 46 StatusTuple(int ret, const std::string &msg) : ret_(ret), msg_(msg) {} in StatusTuple() function 49 StatusTuple(int ret, const char *fmt, Args... args) : ret_(ret) { in StatusTuple() function 55 StatusTuple(Code code, const std::string &msg) : use_enum_code_(true), code_(code), msg_(msg) {} in StatusTuple() function
|