Lines Matching refs:name_len

444 zend_bool php_std_auto_global_callback(char *name, uint name_len TSRMLS_DC)  in php_std_auto_global_callback()
616 static zend_bool php_auto_globals_create_server(const char *name, uint name_len TSRMLS_DC);
617 static zend_bool php_auto_globals_create_env(const char *name, uint name_len TSRMLS_DC);
618 static zend_bool php_auto_globals_create_request(const char *name, uint name_len TSRMLS_DC);
633 static zend_bool php_auto_globals_create_get(const char *name, uint name_len TSRMLS_DC) in php_auto_globals_create_get()
650 zend_hash_update(&EG(symbol_table), name, name_len + 1, &vars, sizeof(zval *), NULL); in php_auto_globals_create_get()
656 static zend_bool php_auto_globals_create_post(const char *name, uint name_len TSRMLS_DC) in php_auto_globals_create_post()
677 zend_hash_update(&EG(symbol_table), name, name_len + 1, &vars, sizeof(zval *), NULL); in php_auto_globals_create_post()
683 static zend_bool php_auto_globals_create_cookie(const char *name, uint name_len TSRMLS_DC) in php_auto_globals_create_cookie()
700 zend_hash_update(&EG(symbol_table), name, name_len + 1, &vars, sizeof(zval *), NULL); in php_auto_globals_create_cookie()
706 static zend_bool php_auto_globals_create_files(const char *name, uint name_len TSRMLS_DC) in php_auto_globals_create_files()
719 zend_hash_update(&EG(symbol_table), name, name_len + 1, &vars, sizeof(zval *), NULL); in php_auto_globals_create_files()
742 static zend_bool php_auto_globals_create_server(const char *name, uint name_len TSRMLS_DC) in php_auto_globals_create_server()
775 …zend_hash_update(&EG(symbol_table), name, name_len + 1, &PG(http_globals)[TRACK_VARS_SERVER], size… in php_auto_globals_create_server()
781 static zend_bool php_auto_globals_create_env(const char *name, uint name_len TSRMLS_DC) in php_auto_globals_create_env()
797 …zend_hash_update(&EG(symbol_table), name, name_len + 1, &PG(http_globals)[TRACK_VARS_ENV], sizeof(… in php_auto_globals_create_env()
803 static zend_bool php_auto_globals_create_request(const char *name, uint name_len TSRMLS_DC) in php_auto_globals_create_request()
845 zend_hash_update(&EG(symbol_table), name, name_len + 1, &form_variables, sizeof(zval *), NULL); in php_auto_globals_create_request()