Searched refs:bc_vm_handleError (Results 1 – 5 of 5) sorted by relevance
/external/bc/include/ |
D | status.h | 936 #define bc_error(e, l, ...) (bc_vm_handleError((e))) 942 #define bc_err(e) (bc_vm_handleError((e))) 948 #define bc_verr(e, ...) (bc_vm_handleError((e))) 962 (bc_vm_handleError((e), __FILE__, __LINE__, (l), __VA_ARGS__)) 964 #define bc_error(e, l, ...) (bc_vm_handleError((e), (l), __VA_ARGS__)) 972 #define bc_err(e) (bc_vm_handleError((e), __FILE__, __LINE__, 0)) 974 #define bc_err(e) (bc_vm_handleError((e), 0)) 983 (bc_vm_handleError((e), __FILE__, __LINE__, 0, __VA_ARGS__)) 985 #define bc_verr(e, ...) (bc_vm_handleError((e), 0, __VA_ARGS__))
|
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__))
|
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__))
|
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, ...);
|
/external/bc/src/ |
D | vm.c | 326 bc_vm_handleError(BcErr e) function 354 bc_vm_handleError(BcErr e, const char* file, int fline, size_t line, ...) function 357 bc_vm_handleError(BcErr e, size_t line, ...)
|