Searched defs:code (Results 1 - 5 of 5) sorted by relevance
/sssd/src/sss_client/ |
H A D | sssd_pac.c | 207 krb5_error_code code = 0; local 229 code = ENOMEM; 239 return code; 251 krb5_error_code code; local 261 code = krb5_ser_unpack_int32(&ibuf, &bp, &remain); 262 if (code != 0) { 263 return code; 283 code = krb5_ser_unpack_int32(&ibuf, &bp, &remain); 284 if (code != 0) { 286 return code; [all...] |
/sssd/src/lib/ipa_hbac/ |
H A D | hbac_evaluator.c | 164 (*info)->code = HBAC_ERROR_UNKNOWN; 180 (*info)->code = HBAC_SUCCESS; 185 (*info)->code = HBAC_ERROR_OUT_OF_MEMORY; 196 (*info)->code = ret; 382 const char *hbac_error_string(enum hbac_error_code code) argument 384 switch (code) { 395 return "Unknown error code";
|
H A D | ipa_hbac.h | 239 * Error code returned by the evaluator 262 * this will be an error code. 265 enum hbac_error_code code; member in struct:hbac_info 301 * @param code Error code returned in #hbac_info 304 const char *hbac_error_string(enum hbac_error_code code);
|
/sssd/src/responder/secrets/ |
H A D | providers.c | 192 enum sec_http_status_codes code) 201 sec_http_status_format_table[code].status, 202 sec_http_status_format_table[code].text, 203 sec_http_status_format_table[code].text, 204 sec_http_status_format_table[code].description); 213 sec_http_status_format_table[code].status, 214 sec_http_status_format_table[code].text, 223 sec_http_status_format_table[code].status, 224 sec_http_status_format_table[code].text); 230 enum sec_http_status_codes code, 191 sec_http_status_reply(TALLOC_CTX *mem_ctx, struct sec_data *reply, enum sec_http_status_codes code) argument 229 sec_http_reply_with_body(TALLOC_CTX *mem_ctx, struct sec_data *reply, enum sec_http_status_codes code, const char *content_type, struct sec_data *body) argument [all...] |
/sssd/src/python/ |
H A D | pyhbac.c | 281 obj = Py_BuildValue(sss_py_const_p(char, "(i,s)"), error->code, 1840 "hbac_result_string(code) -> string\n" 1841 "Returns a string representation of the HBAC result code"); 1864 "hbac_error_string(code) -> string\n" 1865 "Returns a string representation of the HBAC error code"); 1870 enum hbac_error_code code; local 1873 if (!PyArg_ParseTuple(args, sss_py_const_p(char, "i"), &code)) { 1877 str = hbac_error_string(code); 1907 "rule. HbacError.args argument is a tuple that contains error code and\n"
|
Completed in 550 milliseconds