Searched defs:output (Results 1 - 7 of 7) sorted by relevance

/sssd/src/tests/cmocka/
H A Dtest_string_utils.c33 const char *output; member in struct:__anon45
70 assert_string_equal(res, data_set[i].output);
87 const char *output; member in struct:__anon46
129 assert_string_equal(res, data_set[i].output);
H A Dtest_dyndns.c323 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/src/sss_client/idmap/
H A Dsss_nss_idmap.c39 struct output { struct
142 struct output *out)
271 struct output out;
292 struct output out;
314 struct output out;
335 struct output out;
357 struct output out;
379 struct output out;
/sssd/src/responder/secrets/
H A Dproviders.c434 char **output)
453 *output = talloc_strdup(mem_ctx, jsonized);
454 if (!*output) {
469 char **output)
495 *output = talloc_strdup(mem_ctx, jsonized);
496 if (!*output) {
432 sec_simple_secret_to_json(TALLOC_CTX *mem_ctx, const char *secret, char **output) argument
467 sec_array_to_json(TALLOC_CTX *mem_ctx, char **array, int count, char **output) argument
H A Dlocal.c41 char *output; local
61 (uint8_t **)&output, &outlen);
68 if (((strnlen(output, outlen) + 1) != outlen) ||
69 output[outlen - 1] != '\0') {
71 "Output length mismatch or output not NULL-terminated\n");
75 output = talloc_strdup(mem_ctx, secret);
76 if (!output) return ENOMEM;
79 *plain_secret = output;
88 char *output; local
112 output
[all...]
/sssd/src/util/
H A Dusertools.c587 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 Dutil.c88 /* Copy the substring to the output list of strings */
533 char *output; local
539 output = talloc_array(mem_ctx, char, strlen(input) * 3 + 1);
540 if (!output) {
554 output[j++] = input[i++];
560 output[j++] = '\\';
561 output[j++] = '0';
562 output[j++] = '9';
565 output[j++] = '\\';
566 output[
[all...]

Completed in 45 milliseconds