Lines Matching refs:val

1963 			int val;  in PHP_FUNCTION()  local
1965 if (ldap_get_option(ld->link, option, &val)) { in PHP_FUNCTION()
1969 ZVAL_LONG(retval, val); in PHP_FUNCTION()
2016 char *val = NULL; in PHP_FUNCTION() local
2018 if (ldap_get_option(ld->link, option, &val) || val == NULL || *val == '\0') { in PHP_FUNCTION()
2019 if (val) { in PHP_FUNCTION()
2020 ldap_memfree(val); in PHP_FUNCTION()
2025 ZVAL_STRING(retval, val, 1); in PHP_FUNCTION()
2026 ldap_memfree(val); in PHP_FUNCTION()
2072 int val; in PHP_FUNCTION() local
2075 val = Z_LVAL_PP(newval); in PHP_FUNCTION()
2076 if (ldap_set_option(ldap, option, &val)) { in PHP_FUNCTION()
2119 char *val; in PHP_FUNCTION() local
2121 val = Z_STRVAL_PP(newval); in PHP_FUNCTION()
2122 if (ldap_set_option(ldap, option, val)) { in PHP_FUNCTION()
2132 void *val; in PHP_FUNCTION() local
2134 val = Z_LVAL_PP(newval) in PHP_FUNCTION()
2136 if (ldap_set_option(ldap, option, val)) { in PHP_FUNCTION()
2145 zval **ctrlval, **val; in PHP_FUNCTION() local
2163 if (zend_hash_find(Z_ARRVAL_PP(ctrlval), "oid", sizeof("oid"), (void **) &val) != SUCCESS) { in PHP_FUNCTION()
2169 convert_to_string_ex(val); in PHP_FUNCTION()
2170 ctrl->ldctl_oid = Z_STRVAL_PP(val); in PHP_FUNCTION()
2171 if (zend_hash_find(Z_ARRVAL_PP(ctrlval), "value", sizeof("value"), (void **) &val) == SUCCESS) { in PHP_FUNCTION()
2172 convert_to_string_ex(val); in PHP_FUNCTION()
2173 ctrl->ldctl_value.bv_val = Z_STRVAL_PP(val); in PHP_FUNCTION()
2174 ctrl->ldctl_value.bv_len = Z_STRLEN_PP(val); in PHP_FUNCTION()
2179 …if (zend_hash_find(Z_ARRVAL_PP(ctrlval), "iscritical", sizeof("iscritical"), (void **) &val) == SU… in PHP_FUNCTION()
2180 convert_to_boolean_ex(val); in PHP_FUNCTION()
2181 ctrl->ldctl_iscritical = Z_BVAL_PP(val); in PHP_FUNCTION()