tmp_variable_buf  174 sapi/isapi/php5isapi.c 				char *tmp_variable_buf;
tmp_variable_buf  176 sapi/isapi/php5isapi.c 				tmp_variable_buf = (char *) emalloc(variable_len);
tmp_variable_buf  177 sapi/isapi/php5isapi.c 				if (lpECB->GetServerVariable(lpECB->ConnID, *p, tmp_variable_buf, &variable_len)
tmp_variable_buf  179 sapi/isapi/php5isapi.c 					php_info_print_table_row(2, *p, tmp_variable_buf);
tmp_variable_buf  181 sapi/isapi/php5isapi.c 				efree(tmp_variable_buf);
tmp_variable_buf  366 sapi/isapi/php5isapi.c 		char *tmp_variable_buf = (char *) emalloc(variable_len+1);
tmp_variable_buf  368 sapi/isapi/php5isapi.c 		if (lpECB->GetServerVariable(lpECB->ConnID, "HTTP_COOKIE", tmp_variable_buf, &variable_len)) {
tmp_variable_buf  369 sapi/isapi/php5isapi.c 			tmp_variable_buf[variable_len] = 0;
tmp_variable_buf  370 sapi/isapi/php5isapi.c 			return tmp_variable_buf;
tmp_variable_buf  372 sapi/isapi/php5isapi.c 			efree(tmp_variable_buf);
tmp_variable_buf   94 sapi/pi3web/pi3web_sapi.c 			char *tmp_variable_buf;
tmp_variable_buf   96 sapi/pi3web/pi3web_sapi.c 			tmp_variable_buf = (char *) emalloc(variable_len);
tmp_variable_buf   97 sapi/pi3web/pi3web_sapi.c 			if (lpCB->GetServerVariable(lpCB->ConnID, pKey, tmp_variable_buf, &variable_len)
tmp_variable_buf   99 sapi/pi3web/pi3web_sapi.c 				php_info_print_table_row(2, pKey, tmp_variable_buf);
tmp_variable_buf  101 sapi/pi3web/pi3web_sapi.c 			efree(tmp_variable_buf);
tmp_variable_buf  254 sapi/pi3web/pi3web_sapi.c 		char *tmp_variable_buf = (char *) emalloc(variable_len+1);
tmp_variable_buf  256 sapi/pi3web/pi3web_sapi.c 		if (lpCB->GetServerVariable(lpCB->ConnID, "HTTP_COOKIE", tmp_variable_buf, &variable_len)) {
tmp_variable_buf  257 sapi/pi3web/pi3web_sapi.c 			tmp_variable_buf[variable_len] = 0;
tmp_variable_buf  258 sapi/pi3web/pi3web_sapi.c 			return tmp_variable_buf;
tmp_variable_buf  260 sapi/pi3web/pi3web_sapi.c 			efree(tmp_variable_buf);