variable_buf      150 sapi/isapi/php5isapi.c 	char variable_buf[ISAPI_SERVER_VAR_BUF_SIZE];
variable_buf      170 sapi/isapi/php5isapi.c 			if (lpECB->GetServerVariable(lpECB->ConnID, *p, variable_buf, &variable_len)
variable_buf      171 sapi/isapi/php5isapi.c 				&& variable_buf[0]) {
variable_buf      172 sapi/isapi/php5isapi.c 				php_info_print_table_row(2, *p, variable_buf);
variable_buf      178 sapi/isapi/php5isapi.c 					&& variable_buf[0]) {
variable_buf      360 sapi/isapi/php5isapi.c 	char variable_buf[ISAPI_SERVER_VAR_BUF_SIZE];
variable_buf      363 sapi/isapi/php5isapi.c 	if (lpECB->GetServerVariable(lpECB->ConnID, "HTTP_COOKIE", variable_buf, &variable_len)) {
variable_buf      364 sapi/isapi/php5isapi.c 		return estrndup(variable_buf, variable_len);
variable_buf      567 sapi/isapi/php5isapi.c 	char *variable_buf;
variable_buf      578 sapi/isapi/php5isapi.c 			variable_buf = (char *) emalloc(variable_len+1);
variable_buf      579 sapi/isapi/php5isapi.c 			if (lpECB->GetServerVariable(lpECB->ConnID, *p, variable_buf, &variable_len)
variable_buf      580 sapi/isapi/php5isapi.c 				&& variable_buf[0]) {
variable_buf      581 sapi/isapi/php5isapi.c 				php_register_variable(*p, variable_buf, track_vars_array TSRMLS_CC);
variable_buf      584 sapi/isapi/php5isapi.c 				recorded_values[p-server_variables] = variable_buf;
variable_buf      586 sapi/isapi/php5isapi.c 				efree(variable_buf);
variable_buf       51 sapi/pi3web/pi3web_sapi.c 	char variable_buf[PI3WEB_SERVER_VAR_BUF_SIZE];
variable_buf       62 sapi/pi3web/pi3web_sapi.c 	snprintf(variable_buf, 511, "%d", HTTPCore_debugEnabled());
variable_buf       63 sapi/pi3web/pi3web_sapi.c 	php_info_print_table_row(2, "Debug Enabled", variable_buf);
variable_buf       64 sapi/pi3web/pi3web_sapi.c 	PIPlatform_getCurrentDirectory( variable_buf, PI3WEB_SERVER_VAR_BUF_SIZE);
variable_buf       65 sapi/pi3web/pi3web_sapi.c 	php_info_print_table_row(2, "Current Path", variable_buf);
variable_buf       66 sapi/pi3web/pi3web_sapi.c 	if (lpCB->GetServerVariable(lpCB->ConnID, "SERVER_NAME", variable_buf, &variable_len)
variable_buf       67 sapi/pi3web/pi3web_sapi.c 		&& variable_buf[0]) {
variable_buf       68 sapi/pi3web/pi3web_sapi.c 		php_info_print_table_row(2, "Main Virtual Hostname", variable_buf);
variable_buf       70 sapi/pi3web/pi3web_sapi.c 	snprintf(variable_buf, 511, "%d", PIPlatform_getProcessId());
variable_buf       71 sapi/pi3web/pi3web_sapi.c 	php_info_print_table_row(2, "Server PID", variable_buf);
variable_buf       90 sapi/pi3web/pi3web_sapi.c 		if (lpCB->GetServerVariable(lpCB->ConnID, pKey, variable_buf, &variable_len)
variable_buf       91 sapi/pi3web/pi3web_sapi.c 			&& variable_buf[0]) {
variable_buf       92 sapi/pi3web/pi3web_sapi.c 			php_info_print_table_row(2, pKey, variable_buf);
variable_buf       98 sapi/pi3web/pi3web_sapi.c 				&& variable_buf[0]) {
variable_buf      248 sapi/pi3web/pi3web_sapi.c 	char variable_buf[PI3WEB_SERVER_VAR_BUF_SIZE];
variable_buf      251 sapi/pi3web/pi3web_sapi.c 	if (lpCB->GetServerVariable(lpCB->ConnID, "HTTP_COOKIE", variable_buf, &variable_len)) {
variable_buf      252 sapi/pi3web/pi3web_sapi.c 		return estrndup(variable_buf, variable_len);
variable_buf      283 sapi/pi3web/pi3web_sapi.c 	char *variable_buf;
variable_buf      301 sapi/pi3web/pi3web_sapi.c 			variable_buf = (char *) emalloc(variable_len);
variable_buf      302 sapi/pi3web/pi3web_sapi.c 			if (lpCB->GetServerVariable(lpCB->ConnID, pKey, variable_buf, &variable_len)) {
variable_buf      303 sapi/pi3web/pi3web_sapi.c 				php_register_variable(pKey, variable_buf, track_vars_array TSRMLS_CC);
variable_buf      305 sapi/pi3web/pi3web_sapi.c 			efree(variable_buf);