decoded_vpath_end 1460 sapi/cli/php_cli_server.c 	char *decoded_vpath_end;
decoded_vpath_end 1470 sapi/cli/php_cli_server.c 	decoded_vpath_end = decoded_vpath + php_raw_url_decode(decoded_vpath, (int)vpath_len);
decoded_vpath_end 1486 sapi/cli/php_cli_server.c 	if (p < decoded_vpath_end && *p == '/') {
decoded_vpath_end 1488 sapi/cli/php_cli_server.c 		while (n < decoded_vpath_end && *n == '/') n++;
decoded_vpath_end 1489 sapi/cli/php_cli_server.c 		memmove(++p, n, decoded_vpath_end - n);
decoded_vpath_end 1490 sapi/cli/php_cli_server.c 		decoded_vpath_end -= n - p;
decoded_vpath_end 1493 sapi/cli/php_cli_server.c 	while (p < decoded_vpath_end) {
decoded_vpath_end 1495 sapi/cli/php_cli_server.c 		while (n < decoded_vpath_end && *n != '/') n++;
decoded_vpath_end 1512 sapi/cli/php_cli_server.c 			while (n < decoded_vpath_end && *n == '/') n++;
decoded_vpath_end 1513 sapi/cli/php_cli_server.c 			memmove(p, n, decoded_vpath_end - n);
decoded_vpath_end 1514 sapi/cli/php_cli_server.c 			decoded_vpath_end -= n - p;
decoded_vpath_end 1516 sapi/cli/php_cli_server.c 			while (n < decoded_vpath_end && *n == '/') n++;
decoded_vpath_end 1517 sapi/cli/php_cli_server.c 			memmove(p, n, decoded_vpath_end - n);
decoded_vpath_end 1518 sapi/cli/php_cli_server.c 			decoded_vpath_end -= n - p;
decoded_vpath_end 1520 sapi/cli/php_cli_server.c 			if (n < decoded_vpath_end) {
decoded_vpath_end 1522 sapi/cli/php_cli_server.c 				while (nn < decoded_vpath_end && *nn == '/') nn++;
decoded_vpath_end 1524 sapi/cli/php_cli_server.c 				memmove(p, nn, decoded_vpath_end - nn);
decoded_vpath_end 1525 sapi/cli/php_cli_server.c 				decoded_vpath_end -= nn - p;
decoded_vpath_end 1532 sapi/cli/php_cli_server.c 	*decoded_vpath_end = '\0';
decoded_vpath_end 1534 sapi/cli/php_cli_server.c 	*retval_len = decoded_vpath_end - decoded_vpath;