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

/sssd/src/providers/ipa/
H A Dipa_utils.c33 const char *sep; local
44 sep = strchr(anchor + OVERRIDE_ANCHOR_IPA_PREFIX_LEN, ':');
45 if (sep == NULL || sep[1] == '\0') {
52 sep - anchor - OVERRIDE_ANCHOR_IPA_PREFIX_LEN);
53 *_ipa_uuid = talloc_strdup(mem_ctx, sep + 1);
/sssd/src/providers/krb5/
H A Dkrb5_keytab.c98 char *sep; local
137 sep = strchr(keytab_name, ':');
138 if (sep == NULL || sep[1] == '\0') {
158 mem_name = talloc_asprintf(mem_ctx, "MEMORY:%s", sep + 1);
165 tmp_mem_name = talloc_asprintf(mem_ctx, "MEMORY:%s.tmp", sep + 1);
H A Dkrb5_ccache.c691 char *sep; local
707 sep = strchr(ccache_name, ':');
708 if (sep == NULL || sep[1] == '\0') {
728 mem_name = talloc_asprintf(mem_ctx, "MEMORY:%s", sep + 1);
/sssd/src/util/
H A Dutil.c36 const char sep, bool trim, bool skip_empty,
67 while (*substr_end != sep && *substr_end != '\0') {
35 split_on_separator(TALLOC_CTX *mem_ctx, const char *str, const char sep, bool trim, bool skip_empty, char ***_list, int *size) argument
/sssd/src/providers/ldap/
H A Dsdap.c98 char *sep; local
102 sep = strchr(conf_attr, ':');
103 if (sep == NULL) {
107 if (sep == conf_attr || *(sep + 1) == '\0') {
112 sep - ldap_attr);
113 ldap_attr = talloc_strdup(mem_ctx, sep+1);

Completed in 4539 milliseconds