Searched refs:bc_vm_handleError (Results 1 – 5 of 5) sorted by relevance
| /freebsd-13.1/contrib/bc/include/ |
| H A D | status.h | 726 #define bc_error(e, l, ...) (bc_vm_handleError((e))) 732 #define bc_err(e) (bc_vm_handleError((e))) 738 #define bc_verr(e, ...) (bc_vm_handleError((e))) 748 #define bc_error(e, l, ...) (bc_vm_handleError((e), (l), __VA_ARGS__)) 754 #define bc_err(e) (bc_vm_handleError((e), 0)) 760 #define bc_verr(e, ...) (bc_vm_handleError((e), 0, __VA_ARGS__))
|
| H A D | parse.h | 126 #define bc_parse_err(p, e) (bc_vm_handleError((e), (p)->l.line)) 136 (bc_vm_handleError((e), (p)->l.line, __VA_ARGS__))
|
| H A D | lex.h | 48 #define bc_lex_err(l, e) (bc_vm_handleError((e), (l)->line)) 49 #define bc_lex_verr(l, e, ...) (bc_vm_handleError((e), (l)->line, __VA_ARGS__))
|
| H A D | vm.h | 807 void bc_vm_handleError(BcErr e); 829 void bc_vm_handleError(BcErr e, size_t line, ...);
|
| /freebsd-13.1/contrib/bc/src/ |
| H A D | vm.c | 232 void bc_vm_handleError(BcErr e) { function 254 void bc_vm_handleError(BcErr e, size_t line, ...) { function
|