Lines Matching refs:modification_index
2713 zend_ulong modification_index = 0; in PHP_FUNCTION() local
2714 ZEND_HASH_FOREACH_NUM_KEY_VAL(modifications, modification_index, modification_zv) { in PHP_FUNCTION()
2715 ldap_mods[modification_index] = safe_emalloc(1, sizeof(LDAPMod), 0); in PHP_FUNCTION()
2741 ldap_mods[modification_index]->mod_op = ldap_operation | LDAP_MOD_BVALUES; in PHP_FUNCTION()
2742 ldap_mods[modification_index]->mod_type = estrndup(Z_STRVAL_P(attrib_zv), Z_STRLEN_P(attrib_zv)); in PHP_FUNCTION()
2746 ldap_mods[modification_index]->mod_bvalues = NULL; in PHP_FUNCTION()
2750 …ldap_mods[modification_index]->mod_bvalues = safe_emalloc((num_modification_values+1), sizeof(stru… in PHP_FUNCTION()
2759 ldap_mods[modification_index]->mod_bvalues[value_index] = NULL; in PHP_FUNCTION()
2760 num_mods = modification_index + 1; in PHP_FUNCTION()
2765 …ldap_mods[modification_index]->mod_bvalues[value_index] = safe_emalloc(1, sizeof(struct berval), 0… in PHP_FUNCTION()
2768 ldap_mods[modification_index]->mod_bvalues[value_index]->bv_len = ZSTR_LEN(modval); in PHP_FUNCTION()
2769 …ldap_mods[modification_index]->mod_bvalues[value_index]->bv_val = estrndup(ZSTR_VAL(modval), ZSTR_… in PHP_FUNCTION()
2774 ldap_mods[modification_index]->mod_bvalues[num_modification_values] = NULL; in PHP_FUNCTION()