Searched defs:code (Results 1 - 5 of 5) sorted by relevance

/sssd-io/src/sss_client/
H A Dsssd_pac.c207 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-io/src/lib/ipa_hbac/
H A Dhbac_evaluator.c164 (*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 Dipa_hbac.h239 * 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-io/src/responder/secrets/
H A Dproviders.c248 enum sec_http_status_codes code)
257 sec_http_status_format_table[code].status,
258 sec_http_status_format_table[code].text,
259 sec_http_status_format_table[code].text,
260 sec_http_status_format_table[code].description);
269 sec_http_status_format_table[code].status,
270 sec_http_status_format_table[code].text,
279 sec_http_status_format_table[code].status,
280 sec_http_status_format_table[code].text);
286 enum sec_http_status_codes code,
247 sec_http_status_reply(TALLOC_CTX *mem_ctx, struct sec_data *reply, enum sec_http_status_codes code) argument
285 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-io/src/python/
H A Dpyhbac.c283 obj = Py_BuildValue(sss_py_const_p(char, "(i,s)"), error->code,
1843 "hbac_result_string(code) -> string\n"
1844 "Returns a string representation of the HBAC result code");
1867 "hbac_error_string(code) -> string\n"
1868 "Returns a string representation of the HBAC error code");
1873 enum hbac_error_code code; local
1876 if (!PyArg_ParseTuple(args, sss_py_const_p(char, "i"), &code)) {
1880 str = hbac_error_string(code);
1910 "rule. HbacError.args argument is a tuple that contains error code and\n"

Completed in 40 milliseconds