Searched refs:s1 (Results 1 - 10 of 10) sorted by relevance
/sssd-io/src/util/ |
H A D | sss_utf8.h | 42 errno_t sss_utf8_case_eq(const uint8_t *s1, const uint8_t *s2);
|
H A D | sss_utf8.c | 116 errno_t sss_utf8_case_eq(const uint8_t *s1, const uint8_t *s2) argument 130 n1 = u8_strlen(s1); 133 ret = u8_casecmp(s1, n1, 149 errno_t sss_utf8_case_eq(const uint8_t *s1, const uint8_t *s2) argument 157 n1 = g_utf8_strlen((const gchar *)s1, -1); 160 gs1 = g_utf8_casefold((const gchar *)s1, n1); 187 bool sss_string_equal(bool cs, const char *s1, const char *s2) argument 190 return strcmp(s1, s2) == 0; 193 return sss_utf8_case_eq((const uint8_t *)s1, (const uint8_t *)s2) == EOK;
|
H A D | util_ext.c | 128 int(*compare)(const char *s1, const char *s2);
|
H A D | util.h | 516 bool sss_string_equal(bool cs, const char *s1, const char *s2);
|
/sssd-io/src/tests/cmocka/ |
H A D | test_fo_srv.c | 354 struct ares_srv_reply *s1; local 358 s1 = mock_ares_reply(test_ctx, "ldap1.sssd.com", 100, 1, 389); 359 assert_non_null(s1); 364 s1->next = s2; 369 mock_srv_results(s1, ttl, dns_domain); 565 struct ares_srv_reply *s1; local 580 s1 = mock_ares_reply(test_ctx, "ldap1.sssd.com", 100, 2, 389); 581 assert_non_null(s1); 586 s1->next = s2; 591 mock_srv_results(s1, test_ct 609 struct ares_srv_reply *s1; local [all...] |
H A D | test_ifp.c | 208 static void assert_string_list_equal(const char **s1, argument 213 for (i=0; s1[i]; i++) { 215 assert_string_equal(s1[i], s2[i]);
|
/sssd-io/src/sss_client/nfs/ |
H A D | sss_nfs_client.c | 375 static bool str_equal(const char *s1, const char *s2) argument 381 len1 = strlen(s1); 385 res = (strncasecmp(s1, s2, len1) == 0);
|
/sssd-io/src/tests/ |
H A D | ipa_ldap_opt-tests.c | 268 char *s1, *s2; local 275 s1 = dp_opt_get_string(opts, i); 278 if (s1 != NULL || s2 != NULL) { 279 fail_unless(strcmp(s1, s2) == 0,
|
/sssd-io/src/sss_client/ |
H A D | pam_sss.c | 210 static int null_strcmp(const char *s1, const char *s2) { argument 211 if (s1 == NULL && s2 == NULL) return 0; 212 if (s1 == NULL && s2 != NULL) return -1; 213 if (s1 != NULL && s2 == NULL) return 1; 214 return strcmp(s1, s2);
|
/sssd-io/src/providers/ |
H A D | fail_over.c | 735 static bool fo_server_cmp(struct fo_server *s1, struct fo_server *s2) argument 743 return fo_server_match(s1, name, s2->port, s2->user_data);
|
Completed in 29 milliseconds