Searched refs:sep (Results 1 - 6 of 6) sorted by relevance
/sssd/src/providers/ipa/ |
H A D | ipa_utils.c | 33 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 D | krb5_keytab.c | 98 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 D | krb5_ccache.c | 691 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/providers/ldap/ |
H A D | sdap.c | 98 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);
|
/sssd/src/util/ |
H A D | util.h | 350 const char sep, bool trim, bool skip_empty,
|
H A D | util.c | 36 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
|
Completed in 25 milliseconds