Lines Matching refs:path_wide
117 *path_wide; in access_utf8()
119 path_wide=create_wchar_path(path); in access_utf8()
120 if (path_wide == (wchar_t *) NULL) in access_utf8()
122 status=_waccess(path_wide,mode); in access_utf8()
123 path_wide=(wchar_t *) RelinquishMagickMemory(path_wide); in access_utf8()
138 *path_wide; in fopen_utf8()
140 path_wide=create_wchar_path(path); in fopen_utf8()
141 if (path_wide == (wchar_t *) NULL) in fopen_utf8()
146 path_wide=(wchar_t *) RelinquishMagickMemory(path_wide); in fopen_utf8()
149 file=_wfopen(path_wide,mode_wide); in fopen_utf8()
151 path_wide=(wchar_t *) RelinquishMagickMemory(path_wide); in fopen_utf8()
187 *path_wide; in open_utf8()
189 path_wide=create_wchar_path(path); in open_utf8()
190 if (path_wide == (wchar_t *) NULL) in open_utf8()
192 status=_wopen(path_wide,flags,mode); in open_utf8()
193 path_wide=(wchar_t *) RelinquishMagickMemory(path_wide); in open_utf8()
235 *path_wide; in remove_utf8()
237 path_wide=create_wchar_path(path); in remove_utf8()
238 if (path_wide == (wchar_t *) NULL) in remove_utf8()
240 status=_wremove(path_wide); in remove_utf8()
241 path_wide=(wchar_t *) RelinquishMagickMemory(path_wide); in remove_utf8()
283 *path_wide; in stat_utf8()
285 path_wide=create_wchar_path(path); in stat_utf8()
286 if (path_wide == (WCHAR *) NULL) in stat_utf8()
288 status=wstat(path_wide,attributes); in stat_utf8()
289 path_wide=(WCHAR *) RelinquishMagickMemory(path_wide); in stat_utf8()