Searched refs:defval (Results 1 – 4 of 4) sorted by relevance
/PHP-7.1/ext/pdo/ |
H A D | php_pdo_driver.h | 197 …nline zend_long pdo_attr_lval(zval *options, enum pdo_attribute_type option_name, zend_long defval) in pdo_attr_lval() argument 204 return defval; in pdo_attr_lval() 206 …nd_string *pdo_attr_strval(zval *options, enum pdo_attribute_type option_name, zend_string *defval) in pdo_attr_strval() argument 213 return defval ? zend_string_copy(defval) : NULL; in pdo_attr_strval()
|
/PHP-7.1/win32/build/ |
H A D | confutils.js | 237 function ConfigureArg(type, optname, helptext, defval) argument 241 if (defval == "yes" || defval == "yes,shared") { 251 this.defval = defval; 254 this.argval = defval; 257 function ARG_WITH(optname, helptext, defval) argument 262 function ARG_ENABLE(optname, helptext, defval) argument 399 argval = arg.defval; 404 if (arg.defval == "no") { 406 } else if (arg.defval == "no,shared") { 475 analyzed = analyze_arg(arg.defval); [all …]
|
/PHP-7.1/ext/soap/ |
H A D | soap.c | 4425 zval defval; local 4427 ZVAL_UNDEF(&defval); 4433 ZVAL_STRING(&defval, param->element->fixed); 4434 val = &defval; 4436 ZVAL_STRING(&defval, param->element->def); 4437 val = &defval; 4445 zval_ptr_dtor(&defval);
|
/PHP-7.1/ext/openssl/ |
H A D | openssl.c | 1066 #define SET_OPTIONAL_STRING_ARG(key, varname, defval) \ argument 1071 varname = defval; \ 1078 #define SET_OPTIONAL_LONG_ARG(key, varname, defval) \ argument 1082 varname = defval
|
Completed in 46 milliseconds