Lines Matching refs:name_len

533 zend_bool php_std_auto_global_callback(char *name, uint name_len TSRMLS_DC)  in php_std_auto_global_callback()
705 static zend_bool php_auto_globals_create_server(const char *name, uint name_len TSRMLS_DC);
706 static zend_bool php_auto_globals_create_env(const char *name, uint name_len TSRMLS_DC);
707 static zend_bool php_auto_globals_create_request(const char *name, uint name_len TSRMLS_DC);
722 static zend_bool php_auto_globals_create_get(const char *name, uint name_len TSRMLS_DC) in php_auto_globals_create_get()
739 zend_hash_update(&EG(symbol_table), name, name_len + 1, &vars, sizeof(zval *), NULL); in php_auto_globals_create_get()
745 static zend_bool php_auto_globals_create_post(const char *name, uint name_len TSRMLS_DC) in php_auto_globals_create_post()
765 zend_hash_update(&EG(symbol_table), name, name_len + 1, &vars, sizeof(zval *), NULL); in php_auto_globals_create_post()
771 static zend_bool php_auto_globals_create_cookie(const char *name, uint name_len TSRMLS_DC) in php_auto_globals_create_cookie()
788 zend_hash_update(&EG(symbol_table), name, name_len + 1, &vars, sizeof(zval *), NULL); in php_auto_globals_create_cookie()
794 static zend_bool php_auto_globals_create_files(const char *name, uint name_len TSRMLS_DC) in php_auto_globals_create_files()
807 zend_hash_update(&EG(symbol_table), name, name_len + 1, &vars, sizeof(zval *), NULL); in php_auto_globals_create_files()
830 static zend_bool php_auto_globals_create_server(const char *name, uint name_len TSRMLS_DC) in php_auto_globals_create_server()
863 …zend_hash_update(&EG(symbol_table), name, name_len + 1, &PG(http_globals)[TRACK_VARS_SERVER], size… in php_auto_globals_create_server()
869 static zend_bool php_auto_globals_create_env(const char *name, uint name_len TSRMLS_DC) in php_auto_globals_create_env()
885 …zend_hash_update(&EG(symbol_table), name, name_len + 1, &PG(http_globals)[TRACK_VARS_ENV], sizeof(… in php_auto_globals_create_env()
891 static zend_bool php_auto_globals_create_request(const char *name, uint name_len TSRMLS_DC) in php_auto_globals_create_request()
933 zend_hash_update(&EG(symbol_table), name, name_len + 1, &form_variables, sizeof(zval *), NULL); in php_auto_globals_create_request()