Home
last modified time | relevance | path

Searched refs:converted_path (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/cygwin/
H A Dcygwin.c288 char *converted_path; in S_convert_path_common() local
343 converted_path = wide_to_utf8(wconverted); in S_convert_path_common()
353 converted_path = (char *) safemalloc (len + PATH_LEN_GUESS); in S_convert_path_common()
354 err = cygwin_conv_path(what, src_path, converted_path, len + PATH_LEN_GUESS); in S_convert_path_common()
356 int newlen = cygwin_conv_path(what, src_path, converted_path, 0); in S_convert_path_common()
357 converted_path = (char *) realloc(&converted_path, newlen); in S_convert_path_common()
358 err = cygwin_conv_path(what, src_path, converted_path, newlen); in S_convert_path_common()
363 converted_path = (char *) safemalloc (len + PATH_LEN_GUESS); in S_convert_path_common()
367 err = cygwin_conv_to_full_posix_path(src_path, converted_path); in S_convert_path_common()
370 err = cygwin_conv_to_posix_path(src_path, converted_path); in S_convert_path_common()
[all …]