Searched defs:output (Results 1 - 7 of 7) sorted by relevance
| /sssd-io/src/tests/cmocka/ |
| H A D | test_string_utils.c | 33 const char *output; member in struct:__anon54 70 assert_string_equal(res, data_set[i].output); 87 const char *output; member in struct:__anon55 129 assert_string_equal(res, data_set[i].output);
|
| H A D | test_dyndns.c | 323 char **output; local 347 ret = sss_iface_addr_list_as_str_list(dyndns_test_ctx, addrlist, &output); 351 assert_int_equal(strcmp(input[i].addr, output[size - 1 - i]), 0); 355 talloc_free(output);
|
| /sssd-io/src/sss_client/idmap/ |
| H A D | sss_nss_idmap.c | 43 struct output { struct 205 unsigned int timeout, struct output *out) 367 struct output out; 395 struct output out; 422 struct output out; 450 struct output out; 478 struct output out; 506 struct output out; 534 struct output out;
|
| /sssd-io/src/responder/secrets/ |
| H A D | providers.c | 573 char **output) 592 *output = talloc_strdup(mem_ctx, jsonized); 593 if (!*output) { 608 char **output) 634 *output = talloc_strdup(mem_ctx, jsonized); 635 if (!*output) { 571 sec_simple_secret_to_json(TALLOC_CTX *mem_ctx, const char *secret, char **output) argument 606 sec_array_to_json(TALLOC_CTX *mem_ctx, char **array, int count, char **output) argument
|
| H A D | local.c | 46 char *output; local 66 (uint8_t **)&output, &outlen); 73 if (((strnlen(output, outlen) + 1) != outlen) || 74 output[outlen - 1] != '\0') { 76 "Output length mismatch or output not NULL-terminated\n"); 80 output = talloc_strdup(mem_ctx, secret); 81 if (!output) return ENOMEM; 84 *plain_secret = output; 93 char *output; local 117 output [all...] |
| /sssd-io/src/util/ |
| H A D | usertools.c | 587 char **output = data; local 588 if (*output != NULL) 589 *output = talloc_strndup_append(*output, piece, len); 598 char *output; local 602 output = talloc_strdup(mem_ctx, ""); 603 if (safe_format_string_cb(safe_talloc_callback, &output, nctx->fq_fmt, args, 3) < 0) 604 output = NULL; 605 else if (output == NULL) 607 return output; [all...] |
| H A D | util.c | 444 char *output; local 450 output = talloc_array(mem_ctx, char, strlen(input) * 3 + 1); 451 if (!output) { 465 output[j++] = input[i++]; 471 output[j++] = '\\'; 472 output[j++] = '0'; 473 output[j++] = '9'; 476 output[j++] = '\\'; 477 output[j++] = '2'; 478 output[ [all...] |
Completed in 36 milliseconds