Home
last modified time | relevance | path

Searched refs:val (Results 201 – 225 of 411) sorted by relevance

12345678910>>...17

/PHP-5.5/ext/soap/
H A Dphp_encoding.c1238 Z_DELREF_P(val); in set_zval_property()
1318 if (Z_TYPE_P(val) == IS_STRING && *Z_STRVAL_P(val) == '<') { in model_to_zval_any()
1325 add_string_to_string(val, val, val2); in model_to_zval_any()
1344 any = val; in model_to_zval_any()
1385 zval *val; in model_to_zval_object() local
1434 val = array; in model_to_zval_object()
1443 val = array; in model_to_zval_object()
1614 if (val && val->children && val->children->content) { in to_zval_object_ex()
1720 zval **val; in model_to_xml_object() local
1800 zval **val; in model_to_xml_object() local
[all …]
/PHP-5.5/Zend/
H A Dzend_closures.c323 zval *val; in zend_closure_get_debug_info() local
335 MAKE_STD_ZVAL(val); in zend_closure_get_debug_info()
336 array_init(val); in zend_closure_get_debug_info()
337 …zend_hash_copy(Z_ARRVAL_P(val), static_variables, (copy_ctor_func_t)zval_add_ref, NULL, sizeof(zva… in zend_closure_get_debug_info()
338 …zend_hash_update(closure->debug_info, "static", sizeof("static"), (void *) &val, sizeof(zval *), N… in zend_closure_get_debug_info()
349 MAKE_STD_ZVAL(val); in zend_closure_get_debug_info()
350 array_init(val); in zend_closure_get_debug_info()
366 add_assoc_stringl_ex(val, name, name_len + 1, info, info_len, 0); in zend_closure_get_debug_info()
370 …zend_hash_update(closure->debug_info, "parameter", sizeof("parameter"), (void *) &val, sizeof(zval… in zend_closure_get_debug_info()
/PHP-5.5/sapi/cgi/
H A Dfastcgi.c159 char *val; member
269 p->val = fcgi_hash_strndup(h, val, val_len); in fcgi_hash_set()
270 return p->val; in fcgi_hash_set()
291 p->val = fcgi_hash_strndup(h, val, val_len); in fcgi_hash_set()
292 return p->val; in fcgi_hash_set()
324 return p->val; in fcgi_hash_get()
336 if (EXPECTED(p->val != NULL)) { in fcgi_hash_apply()
1487 if (val == NULL) {
1491 return fcgi_hash_set(&req->env, FCGI_HASH_FUNC(var, var_len), var, var_len, val, strlen(val));
1497 if (val == NULL) {
[all …]
H A Dcgi_main.c622 if (sapi_module.input_filter(filter_arg, var, &val, strlen(val), &new_val_len TSRMLS_CC)) { in cgi_php_load_env_var()
1593 char **env, *p, *q, *var, *val, *t = buf; local
1598 val = strchr(*env, '=');
1599 if (!val) { /* malformed entry? */
1602 var_len = val - *env;
1654 val++;
1852 char *val; local
1854 if ((val = strchr(php_optarg, '='))) {
1855 val++;
1856 if (!isalnum(*val) && *val != '"' && *val != '\'' && *val != '\0') {
[all …]
/PHP-5.5/ext/xml/
H A Dxml.c721 if (Z_TYPE_P(val) == IS_STRING) { in _xml_zval_strdup()
723 memcpy(buf, Z_STRVAL_P(val), Z_STRLEN_P(val)); in _xml_zval_strdup()
724 buf[Z_STRLEN_P(val)] = '\0'; in _xml_zval_strdup()
776 char *att, *val; in _xml_startElementHandler() local
1619 zval *pind, **val; in PHP_FUNCTION() local
1629 convert_to_long_ex(val); in PHP_FUNCTION()
1633 convert_to_long_ex(val); in PHP_FUNCTION()
1634 parser->toffset = Z_LVAL_PP(val); in PHP_FUNCTION()
1637 convert_to_long_ex(val); in PHP_FUNCTION()
1638 parser->skipwhite = Z_LVAL_PP(val); in PHP_FUNCTION()
[all …]
/PHP-5.5/tests/lang/
H A Dengine_assignExecutionOrder_003.phpt62 $val = $arr[0][1];
63 echo "Expect 15 and get...$val\n";
H A DforeachLoop.017.phpt6 foreach ($a as $val=>$key) echo $key;
/PHP-5.5/ext/dba/
H A Ddba_gdbm.c104 gval.dptr = (char *) val; in DBA_UPDATE_FUNC()
113 php_error_docref2(NULL TSRMLS_CC, key, val, E_WARNING, "%s", gdbm_strerror(gdbm_errno)); in DBA_UPDATE_FUNC()
116 php_error_docref2(NULL TSRMLS_CC, key, val, E_WARNING, "Unknown return value"); in DBA_UPDATE_FUNC()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_sockets.c471 int val; in fpm_socket_get_listening_queue() local
472 socklen_t len = sizeof(val); in fpm_socket_get_listening_queue()
475 if (0 > getsockopt(sock, SOL_SOCKET, SO_LISTENQLEN, &val, &len)) { in fpm_socket_get_listening_queue()
479 *cur_lq = val; in fpm_socket_get_listening_queue()
483 if (0 > getsockopt(sock, SOL_SOCKET, SO_LISTENQLIMIT, &val, &len)) { in fpm_socket_get_listening_queue()
487 *max_lq = val; in fpm_socket_get_listening_queue()
H A Dfpm_main.c568 char *var, **val; in cgi_php_import_environment_variables() local
604 zend_hash_get_current_data_ex(request->env, (void **) &val, &pos) == SUCCESS; in cgi_php_import_environment_variables()
609 if (sapi_module.input_filter(filter_arg, var, val, strlen(*val), &new_val_len TSRMLS_CC)) { in cgi_php_import_environment_variables()
610 php_register_variable_safe(var, *val, new_val_len, array_ptr TSRMLS_CC); in cgi_php_import_environment_variables()
1640 char *val; local
1642 if ((val = strchr(php_optarg, '='))) {
1643 val++;
1644 if (!isalnum(*val) && *val != '"' && *val != '\'' && *val != '\0') {
1647 ini_entries_len += (val - php_optarg);
1650 memcpy(cgi_sapi_module.ini_entries + ini_entries_len, val, len - (val - php_optarg));
[all …]
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_string.h44 unsigned char *val; member
/PHP-5.5/Zend/tests/
H A Dbug33512.phpt9 function __set($var, $val) {
10 $this->Var[$var] = $val;
H A Dforeach_undefined.phpt6 foreach($a as $val);
H A Dforeach_unset_globals.phpt7 foreach ($arr as $key => $val) {
H A Dmagic_by_ref_002.phpt7 function __set($name, &$val) { }
H A Dmagic_by_ref_001.phpt7 function __set(&$name, $val) { }
/PHP-5.5/ext/standard/tests/array/
H A Darray_fill_variation1.phpt9 /* Prototype : proto array array_fill(int start_key, int num, mixed val)
10 …ion: Create an array containing num elements starting with index start_key each initialized to val
22 $val = 100;
99 var_dump( array_fill($start_key,$num,$val) );
H A Darray_fill_variation1_64bit.phpt9 /* Prototype : proto array array_fill(int start_key, int num, mixed val)
10 …ion: Create an array containing num elements starting with index start_key each initialized to val
22 $val = 100;
99 var_dump( array_fill($start_key,$num,$val) );
H A Darray_fill_keys_variation3.phpt5 /* Prototype : proto array array_fill_keys(array keys, mixed val)
6 …ription: Create an array using the elements of the first parameter as keys each initialized to val
H A Dextract_error.phpt18 $val = 1;
19 var_dump( extract($val) );
/PHP-5.5/ext/spl/tests/
H A Dheap_it_current_empty.phpt10 foreach ($h as $val) { echo 'FAIL'; }
/PHP-5.5/ext/mysqli/
H A Dmysqli_api.c424 bind[ofs].buffer = stmt->result.buf[ofs].val; in mysqli_stmt_bind_result_do_bind()
436 bind[ofs].buffer = stmt->result.buf[ofs].val; in mysqli_stmt_bind_result_do_bind()
463 bind[ofs].buffer = stmt->result.buf[ofs].val; in mysqli_stmt_bind_result_do_bind()
476 bind[ofs].buffer = stmt->result.buf[ofs].val; in mysqli_stmt_bind_result_do_bind()
534 bind[ofs].buffer = stmt->result.buf[ofs].val; in mysqli_stmt_bind_result_do_bind()
552 if (stmt->result.buf[i].val) { in mysqli_stmt_bind_result_do_bind()
553 efree(stmt->result.buf[i].val); in mysqli_stmt_bind_result_do_bind()
1025 STR_FREE(stmt->result.vars[i]->value.str.val);
1034 uval= *(unsigned int *) stmt->result.buf[i].val;
1069 dval = *((double *)stmt->result.buf[i].val);
[all …]
/PHP-5.5/ext/pdo_mysql/
H A Dmysql_driver.c371 static int pdo_mysql_set_attribute(pdo_dbh_t *dbh, long attr, zval *val TSRMLS_DC) in pdo_mysql_set_attribute()
378 convert_to_boolean(val); in pdo_mysql_set_attribute()
381 if (dbh->auto_commit ^ Z_BVAL_P(val)) { in pdo_mysql_set_attribute()
382 dbh->auto_commit = Z_BVAL_P(val); in pdo_mysql_set_attribute()
388 ((pdo_mysql_db_handle *)dbh->driver_data)->buffered = Z_BVAL_P(val); in pdo_mysql_set_attribute()
392 ((pdo_mysql_db_handle *)dbh->driver_data)->emulate_prepare = Z_BVAL_P(val); in pdo_mysql_set_attribute()
395 ((pdo_mysql_db_handle *)dbh->driver_data)->fetch_table_names = Z_BVAL_P(val); in pdo_mysql_set_attribute()
399 if (Z_LVAL_P(val) < 0) { in pdo_mysql_set_attribute()
404 ((pdo_mysql_db_handle *)dbh->driver_data)->max_buffer_size = Z_LVAL_P(val); in pdo_mysql_set_attribute()
/PHP-5.5/ext/standard/tests/strings/
H A Dstrtok_error.phpt31 $str = 'string val';
54 string(10) "string val"
/PHP-5.5/ext/standard/
H A Dassert.c144 int val, description_len = 0; in PHP_FUNCTION() local
187 val = Z_LVAL(retval); in PHP_FUNCTION()
190 val = Z_LVAL_PP(assertion); in PHP_FUNCTION()
193 if (val) { in PHP_FUNCTION()

Completed in 105 milliseconds

12345678910>>...17