Lines Matching refs:wide

1051  *   path.wide
1079 * At most one of path.wide or path.narrow will be non-NULL.
1082 * both path.wide and path.narrow will be NULL
1104 const wchar_t *wide;
1128 wchar_t *wide = (wchar_t *)path->wide;
1129 path->wide = NULL;
1130 PyMem_Free(wide);
1146 wchar_t *wide = NULL;
1167 path->wide = NULL;
1222 wide = PyUnicode_AsUnicodeAndSize(o, &length);
1225 wide = PyUnicode_AsWideCharString(o, &length);
1227 if (!wide) {
1234 if (wcslen(wide) != length) {
1239 path->wide = wide;
1243 wide = NULL;
1281 path->wide = NULL;
1323 wide = PyUnicode_AsUnicodeAndSize(wo, &length);
1326 wide = PyUnicode_AsWideCharString(wo, &length);
1329 if (!wide) {
1336 if (wcslen(wide) != length) {
1340 path->wide = wide;
1346 wide = NULL;
1349 path->wide = NULL;
1374 PyMem_Free(wide);
1427 if (!path->wide && (dir_fd != DEFAULT_DIR_FD)
2546 result = win32_stat(path->wide, &st);
2548 result = win32_lstat(path->wide, &st);
3007 attr = GetFileAttributesW(path->wide);
3171 result = !win32_wchdir(path->wide);
3275 attr = GetFileAttributesW(path->wide);
3283 result = SetFileAttributesW(path->wide, attr);
3965 if ((src->narrow && dst->wide) || (src->wide && dst->narrow)) {
3980 result = CreateHardLinkW(dst->wide, src->wide, NULL);
4051 if (!path->wide) { /* Default arg: "." */
4055 po_wchars = path->wide;
4056 len = wcslen(path->wide);
4343 if (_PyOS_getfullpathname(path->wide, &abspath) < 0) {
4383 path->wide,
4471 ret = GetVolumePathNameW(path->wide, mountpath,
4506 buffer = (wchar_t*)PyMem_Malloc(sizeof(wchar_t) * (wcslen(path->wide) + 1));
4510 wcscpy(buffer, path->wide);
4523 PyUnicode_FromWideChar(path->wide, rootLen),
4524 PyUnicode_FromWideChar(path->wide + rootLen, -1)
4629 result = CreateDirectoryW(path->wide, pSecAttr);
4808 result = MoveFileExW(src->wide, dst->wide, flags);
4815 if ((src->narrow && dst->wide) || (src->wide && dst->narrow)) {
4929 result = !RemoveDirectoryW(path->wide);
5110 result = !Py_DeleteFileW(path->wide);
5593 hFile = CreateFileW(path->wide, FILE_WRITE_ATTRIBUTES, 0,
5908 _wexecv(path->wide, argvlist);
5988 _wexecve(path->wide, argvlist, envlist);
6606 spawnval = _wspawnv(mode, path->wide, argvlist);
6719 spawnval = _wspawnve(mode, path->wide, argvlist, envlist);
8137 take the same type. Moreover, pid_t is always at least as wide as
8756 path->wide,
8951 if (target_is_directory || _check_dirW(src->wide, dst->wide)) {
8955 result = CreateSymbolicLinkW(dst->wide, src->wide, flags);
8975 result = CreateSymbolicLinkW(dst->wide, src->wide, flags);
8989 if ((src->narrow && dst->wide) || (src->wide && dst->narrow)) {
9309 fd = _wopen(path->wide, flags, mode);
10939 fd = _wopen(path->wide, _O_WRONLY | _O_BINARY | _O_NOINHERIT);
11558 retval = GetDiskFreeSpaceExW(path->wide, &_, &total, &free);
11569 wcscpy_s(dir_path, path->length + 1, path->wide);
12750 rc = Py_ShellExecuteW((HWND)0, operation, filepath->wide,
12751 arguments, cwd->wide, show_cmd);
14069 joined_path = join_path_filenameW(path->wide, dataW->cFileName);
14492 path_strW = join_path_filenameW(iterator->path.wide, L"*.*");
14727 !(cookie = (*AddDllDirectory)(path->wide))) {