Searched refs:bc_vm_handleError (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/bc/include/ |
H A D | status.h | 921 #define bc_error(e, l, ...) (bc_vm_handleError((e))) 927 #define bc_err(e) (bc_vm_handleError((e))) 933 #define bc_verr(e, ...) (bc_vm_handleError((e))) 947 (bc_vm_handleError((e), __FILE__, __LINE__, (l), __VA_ARGS__)) 949 #define bc_error(e, l, ...) (bc_vm_handleError((e), (l), __VA_ARGS__)) 957 #define bc_err(e) (bc_vm_handleError((e), __FILE__, __LINE__, 0)) 959 #define bc_err(e) (bc_vm_handleError((e), 0)) 968 (bc_vm_handleError((e), __FILE__, __LINE__, 0, __VA_ARGS__)) 970 #define bc_verr(e, ...) (bc_vm_handleError((e), 0, __VA_ARGS__))
|
H A D | parse.h | 115 (bc_vm_handleError((e), __FILE__, __LINE__, (p)->l.line)) 117 #define bc_parse_err(p, e) (bc_vm_handleError((e), (p)->l.line)) 129 (bc_vm_handleError((e), __FILE__, __LINE__, (p)->l.line, __VA_ARGS__)) 132 (bc_vm_handleError((e), (p)->l.line, __VA_ARGS__))
|
H A D | lex.h | 53 #define bc_lex_err(l, e) (bc_vm_handleError((e), __FILE__, __LINE__, (l)->line)) 55 #define bc_lex_err(l, e) (bc_vm_handleError((e), (l)->line)) 66 (bc_vm_handleError((e), __FILE__, __LINE__, (l)->line, __VA_ARGS__)) 68 #define bc_lex_verr(l, e, ...) (bc_vm_handleError((e), (l)->line, __VA_ARGS__))
|
H A D | vm.h | 981 bc_vm_handleError(BcErr e); 1018 bc_vm_handleError(BcErr e, const char* file, int fline, size_t line, ...); 1030 bc_vm_handleError(BcErr e, size_t line, ...);
|
/freebsd/contrib/bc/src/ |
H A D | vm.c | 304 bc_vm_handleError(BcErr e) function 332 bc_vm_handleError(BcErr e, const char* file, int fline, size_t line, ...) function 335 bc_vm_handleError(BcErr e, size_t line, ...)
|