fred-mod-eppd-2.12.0
|
macros which make working with error values easier. More...
Defines | |
#define | XERR_OK 0 |
OK status. | |
#define | XERR_LIBXML 1 |
Error in function from libxml library. | |
#define | XERR_ALLOC 2 |
Memory allocation failed. | |
#define | XERR_CONSTR 3 |
Constraints given by caller were not fulfilled. | |
#define | CHK_XERR(_var, _label) if ((_var) != XERR_OK) goto _label |
Macro checks given variable for an error, if the variable has error status, a flow of a program is redirected to given label. | |
#define | RESET_XERR(_var) ((_var) = XERR_OK) |
Macro checks given variable for an error, if the variable has error status, a flow of a program is redirected to given label. |
macros which make working with error values easier.
#define XERR_ALLOC 2 |
Memory allocation failed.
Referenced by xpath_getn().
#define XERR_CONSTR 3 |
Constraints given by caller were not fulfilled.
Referenced by parse_check(), parse_create(), parse_delete(), parse_extension(), parse_info(), parse_update_contact(), xpath_chroot(), xpath_get1(), and xpath_get_attr().
#define XERR_LIBXML 1 |
Error in function from libxml library.
Referenced by parse_create_contact(), parse_extension(), parse_sendAuthInfo(), parse_test(), parse_transfer(), parse_update(), parse_update_contact(), parse_update_domain(), parse_update_keyset(), parse_update_nsset(), xpath_chroot(), xpath_count(), xpath_get1(), xpath_get_attr(), and xpath_getn().
#define XERR_OK 0 |
OK status.
Referenced by parse_check(), parse_command(), parse_create(), parse_create_contact(), parse_delete(), parse_extension(), parse_info(), parse_sendAuthInfo(), parse_test(), parse_transfer(), parse_update(), parse_update_contact(), parse_update_domain(), parse_update_keyset(), and parse_update_nsset().