decoded_vpath_end 1571 sapi/cli/php_cli_server.c 	char *decoded_vpath_end;
decoded_vpath_end 1581 sapi/cli/php_cli_server.c 	decoded_vpath_end = decoded_vpath + php_raw_url_decode(decoded_vpath, vpath_len);
decoded_vpath_end 1597 sapi/cli/php_cli_server.c 	if (p < decoded_vpath_end && *p == '/') {
decoded_vpath_end 1599 sapi/cli/php_cli_server.c 		while (n < decoded_vpath_end && *n == '/') n++;
decoded_vpath_end 1600 sapi/cli/php_cli_server.c 		memmove(++p, n, decoded_vpath_end - n);
decoded_vpath_end 1601 sapi/cli/php_cli_server.c 		decoded_vpath_end -= n - p;
decoded_vpath_end 1604 sapi/cli/php_cli_server.c 	while (p < decoded_vpath_end) {
decoded_vpath_end 1606 sapi/cli/php_cli_server.c 		while (n < decoded_vpath_end && *n != '/') n++;
decoded_vpath_end 1623 sapi/cli/php_cli_server.c 			while (n < decoded_vpath_end && *n == '/') n++;
decoded_vpath_end 1624 sapi/cli/php_cli_server.c 			memmove(p, n, decoded_vpath_end - n);
decoded_vpath_end 1625 sapi/cli/php_cli_server.c 			decoded_vpath_end -= n - p;
decoded_vpath_end 1627 sapi/cli/php_cli_server.c 			while (n < decoded_vpath_end && *n == '/') n++;
decoded_vpath_end 1628 sapi/cli/php_cli_server.c 			memmove(p, n, decoded_vpath_end - n);
decoded_vpath_end 1629 sapi/cli/php_cli_server.c 			decoded_vpath_end -= n - p;
decoded_vpath_end 1631 sapi/cli/php_cli_server.c 			if (n < decoded_vpath_end) {
decoded_vpath_end 1633 sapi/cli/php_cli_server.c 				while (nn < decoded_vpath_end && *nn == '/') nn++;
decoded_vpath_end 1635 sapi/cli/php_cli_server.c 				memmove(p, nn, decoded_vpath_end - nn);
decoded_vpath_end 1636 sapi/cli/php_cli_server.c 				decoded_vpath_end -= nn - p;
decoded_vpath_end 1643 sapi/cli/php_cli_server.c 	*decoded_vpath_end = '\0';
decoded_vpath_end 1645 sapi/cli/php_cli_server.c 	*retval_len = decoded_vpath_end - decoded_vpath;