Searched defs:new (Results 1 - 4 of 4) sorted by relevance

/sssd/src/providers/
H A Ddp_pam_data_util.c126 * instead of copying, new empty authtok will be created.
184 struct response_data *new; local
186 new = talloc(pd, struct response_data);
187 if (new == NULL) return ENOMEM;
189 new->type = type;
190 new->len = len;
191 new->data = talloc_memdup(pd, data, len);
192 if (new->data == NULL) return ENOMEM;
193 new->do_not_send_to_client = false;
194 new
[all...]
/sssd/src/tests/cmocka/
H A Dtest_ipa_subdomains_server.c157 int __real_rename(const char *old, const char *new);
159 int __wrap_rename(const char *old, const char *new) argument
162 return __real_rename(old, new);
/sssd/src/util/
H A Dutil.c669 /* If the input is a NULL list a new one is created with the new
675 /* Allocate one extra space for the new service and one for
850 char **new; local
863 new = talloc_array(mem_ctx, char *, new_count + 1);
864 if (new == NULL) {
868 new [new_count] = NULL;
872 new[c] = talloc_strdup(new, l1[c]);
873 if (new[
[all...]
/sssd/src/lib/idmap/
H A Dsss_idmap.c75 char *new = NULL; local
82 new = ctx->alloc_func(len, ctx->alloc_pvt);
83 if (new == NULL) {
87 memcpy(new, str, len);
89 return new;
414 /* If slice is -1, we're being asked to pick a new slice */
938 /* Have to generate a whole new range. */

Completed in 38 milliseconds