Lines Matching defs:error

99 	ns_ldap_error_t **error);
105 __door_getldapconfig(char **buffer, int *buflen, ns_ldap_error_t **error);
114 LoadCacheConfiguration(ns_config_t *, ns_ldap_error_t **error);
552 /* error: not enough space to hold returned value */
1301 * Includes extra error checking
1398 char *value, ns_ldap_error_t **error)
1407 MKERROR(LOG_ERR, *error, NS_CONFIG_SYNTAX, strdup(errstr),
1423 ret = __ns_ldap_setParamValue(configptr, i, value, error);
1658 const void *data, ns_ldap_error_t **error)
1680 MKERROR(LOG_ERR, *error, NS_CONFIG_SYNTAX, strdup(errstr),
1726 MKERROR(LOG_ERR, *error, NS_CONFIG_SYNTAX,
1748 MKERROR(LOG_ERR, *error, NS_CONFIG_SYNTAX,
1777 MKERROR(LOG_ERR, *error, NS_CONFIG_SYNTAX,
1885 MKERROR(LOG_ERR, *error, NS_CONFIG_SYNTAX,
1997 MKERROR(LOG_ERR, *error, NS_CONFIG_SYNTAX,
2239 MKERROR(LOG_ERR, *error,
2265 MKERROR(LOG_ERR, *error, NS_CONFIG_SYNTAX,
2311 MKERROR(LOG_ERR, *error,
2337 MKERROR(LOG_ERR, *error, NS_CONFIG_SYNTAX,
2356 MKERROR(LOG_ERR, *error, NS_CONFIG_SYNTAX,
2414 MKERROR(LOG_ERR, *error,
2429 MKERROR(LOG_ERR, *error,
2507 * ignore "map already existed" error,
2524 MKERROR(LOG_ERR, *error,
2602 MKERROR(LOG_ERR, *error,
2616 MKERROR(LOG_ERR, *error,
2647 MKERROR(LOG_ERR, *error, NS_CONFIG_SYNTAX, strdup(errstr),
2665 MKERROR(LOG_WARNING, *error, NS_CONFIG_SYNTAX,
2725 const void *data, ns_ldap_error_t **error)
2750 * This code always return error here on client side,
2757 MKERROR(LOG_WARNING, *error, NS_CONFIG_SYNTAX, strdup(errstr),
2782 MKERROR(LOG_WARNING, *error, NS_CONFIG_NOTLOADED,
2801 ret = __ns_ldap_setParamValue(cfg, type, data, error);
2945 void ***data, ns_ldap_error_t **error)
2982 MKERROR(LOG_WARNING, *error, NS_CONFIG_NOTLOADED,
3003 MKERROR(LOG_ERR, *error, NS_CONFIG_NOTLOADED,
3299 __door_getconf(char **buffer, int *buflen, ns_ldap_error_t **error,
3316 *error = NULL;
3343 "ldap_cachemgr failed - error: %d."),
3345 MKERROR(LOG_WARNING, *error, NS_CONFIG_CACHEMGR,
3375 __door_getldapconfig(char **buffer, int *buflen, ns_ldap_error_t **error)
3377 return (__door_getconf(buffer, buflen, error, GETLDAPCONFIGV1));
3528 LoadCacheConfiguration(ns_config_t *oldcfg, ns_ldap_error_t **error)
3538 *error = NULL;
3539 ret = __door_getldapconfig(&buffer, &buflen, error);
3542 if (*error != NULL && (*error)->message != NULL)
3543 syslog(LOG_WARNING, "libsldap: %s", (*error)->message);
3560 cfg = SetDoorInfo(buffer, error);
3563 if (cfg == NULL && *error != NULL && (*error)->message != NULL)
3564 syslog(LOG_WARNING, "libsldap: %s", (*error)->message);