Lines Matching refs:joined_path
14048 wchar_t *joined_path;
14069 joined_path = join_path_filenameW(path->wide, dataW->cFileName);
14070 if (!joined_path)
14073 entry->path = PyUnicode_FromWideChar(joined_path, -1);
14074 PyMem_Free(joined_path);
14136 char *joined_path;
14149 joined_path = NULL;
14153 joined_path = join_path_filename(path->narrow, name, name_len);
14154 if (!joined_path)
14160 if (joined_path)
14161 entry->path = PyUnicode_DecodeFSDefault(joined_path);
14165 if (joined_path)
14166 entry->path = PyBytes_FromString(joined_path);
14168 PyMem_Free(joined_path);