resolved_path_buff  903 ext/openssl/xp_ssl.c 		char resolved_path_buff[MAXPATHLEN];
resolved_path_buff  906 ext/openssl/xp_ssl.c 		if (VCWD_REALPATH(certfile, resolved_path_buff)) {
resolved_path_buff  908 ext/openssl/xp_ssl.c 			if (SSL_CTX_use_certificate_chain_file(ctx, resolved_path_buff) != 1) {
resolved_path_buff  923 ext/openssl/xp_ssl.c 				if (SSL_CTX_use_PrivateKey_file(ctx, resolved_path_buff, SSL_FILETYPE_PEM) != 1) {
resolved_path_buff  924 ext/openssl/xp_ssl.c 					php_error_docref(NULL, E_WARNING, "Unable to set private key file `%s'", resolved_path_buff);
resolved_path_buff 1328 ext/openssl/xp_ssl.c 	char resolved_path_buff[MAXPATHLEN];
resolved_path_buff 1370 ext/openssl/xp_ssl.c 		if (VCWD_REALPATH(Z_STRVAL_P(current), resolved_path_buff)) {
resolved_path_buff 1375 ext/openssl/xp_ssl.c 			if (SSL_CTX_use_certificate_chain_file(ctx, resolved_path_buff) != 1) {
resolved_path_buff 1380 ext/openssl/xp_ssl.c 					resolved_path_buff
resolved_path_buff 1384 ext/openssl/xp_ssl.c 			} else if (SSL_CTX_use_PrivateKey_file(ctx, resolved_path_buff, SSL_FILETYPE_PEM) != 1) {
resolved_path_buff 1387 ext/openssl/xp_ssl.c 					resolved_path_buff
resolved_path_buff 2346 ext/standard/file.c 	char resolved_path_buff[MAXPATHLEN];
resolved_path_buff 2358 ext/standard/file.c 	if (VCWD_REALPATH(filename, resolved_path_buff)) {
resolved_path_buff 2359 ext/standard/file.c 		if (php_check_open_basedir(resolved_path_buff)) {
resolved_path_buff 2364 ext/standard/file.c 		if (VCWD_ACCESS(resolved_path_buff, F_OK)) {
resolved_path_buff 2368 ext/standard/file.c 		RETURN_STRING(resolved_path_buff);
resolved_path_buff   28 win32/readdir.c 	char resolved_path_buff[MAXPATHLEN];
resolved_path_buff   30 win32/readdir.c 	if (!VCWD_REALPATH(dir, resolved_path_buff)) {
resolved_path_buff   34 win32/readdir.c 	filespec = (char *)malloc(strlen(resolved_path_buff) + 2 + 1);
resolved_path_buff   38 win32/readdir.c 	strcpy(filespec, resolved_path_buff);
resolved_path_buff   63 win32/readdir.c 	dp->dir = strdup(resolved_path_buff);