Lines Matching defs:temp_w
134 wchar_t *temp_w;
142 temp_w = (wchar_t *)av_calloc(num_chars, sizeof(wchar_t));
143 if (!temp_w) {
148 num_chars = GetFullPathNameW(*ppath_w, num_chars, temp_w, NULL);
150 av_free(temp_w);
156 *ppath_w = temp_w;
199 wchar_t *temp_w;
210 temp_w = (wchar_t *)av_calloc(len - 2 + 8 + 1, sizeof(wchar_t));
211 if (!temp_w) {
215 wcscpy(temp_w, unc_prefix);
216 wcscat(temp_w, path_w + 2);
219 temp_w = (wchar_t *)av_calloc(len + 4 + 1, sizeof(wchar_t));
220 if (!temp_w) {
224 wcscpy(temp_w, extended_path_prefix);
225 wcscat(temp_w, path_w);
229 *ppath_w = temp_w;