Lines Matching refs:ldap_value
1770 struct berval **ldap_value; in PHP_FUNCTION() local
1807 ldap_value = ldap_get_values_len(ldap, ldap_result_entry, attribute); in PHP_FUNCTION()
1808 num_values = ldap_count_values_len(ldap_value); in PHP_FUNCTION()
1813 add_index_stringl(&tmp2, i, ldap_value[i]->bv_val, ldap_value[i]->bv_len); in PHP_FUNCTION()
1815 ldap_value_free_len(ldap_value); in PHP_FUNCTION()
1933 struct berval **ldap_value; in PHP_FUNCTION() local
1951 ldap_value = ldap_get_values_len(ld->link, resultentry->data, attribute); in PHP_FUNCTION()
1952 num_values = ldap_count_values_len(ldap_value); in PHP_FUNCTION()
1957 add_index_stringl(&tmp, i, ldap_value[i]->bv_val, ldap_value[i]->bv_len); in PHP_FUNCTION()
1959 ldap_value_free_len(ldap_value); in PHP_FUNCTION()
2053 char *dn, **ldap_value; in PHP_FUNCTION() local
2061 if (!(ldap_value = ldap_explode_dn(dn, with_attrib))) { in PHP_FUNCTION()
2067 while (ldap_value[i] != NULL) i++; in PHP_FUNCTION()
2074 add_index_string(return_value, i, ldap_value[i]); in PHP_FUNCTION()
2077 ldap_memvfree((void **)ldap_value); in PHP_FUNCTION()