mbstr_to_wstr     361 win32/file.c   	wpath = mbstr_to_wstr(cp, RSTRING_PTR(path), path_len, &wpath_len);
mbstr_to_wstr     444 win32/file.c   	    wdir = mbstr_to_wstr(cp, RSTRING_PTR(dir), dir_len, &wdir_len);
mbstr_to_wstr     712 win32/file.c       wpath = mbstr_to_wstr(CP_UTF8, path, -1, &len);
mbstr_to_wstr    1209 win32/win32.c  #define acp_to_wstr(str, plen) mbstr_to_wstr(CP_ACP, str, -1, plen)
mbstr_to_wstr    1211 win32/win32.c  #define filecp_to_wstr(str, plen) mbstr_to_wstr(filecp(), str, -1, plen)
mbstr_to_wstr    1213 win32/win32.c  #define utf8_to_wstr(str, plen) mbstr_to_wstr(CP_UTF8, str, -1, plen)
mbstr_to_wstr    1325 win32/win32.c      if (!e && shell && !(wshell = mbstr_to_wstr(cp, shell, -1, NULL))) e = E2BIG;
mbstr_to_wstr    1327 win32/win32.c      if (!e && cmd && !(wcmd = mbstr_to_wstr(cp, cmd, -1, NULL))) e = E2BIG;
mbstr_to_wstr    1412 win32/win32.c      if (!e && cmd && !(wcmd = mbstr_to_wstr(cp, cmd, -1, NULL))) e = E2BIG;
mbstr_to_wstr    1414 win32/win32.c      if (!e && prog && !(wprog = mbstr_to_wstr(cp, prog, -1, NULL))) e = E2BIG;
mbstr_to_wstr    5629 win32/win32.c      if (!(wpath = mbstr_to_wstr(cp, path, -1, NULL)))
mbstr_to_wstr    5657 win32/win32.c      if (!(wpath = mbstr_to_wstr(cp, path, -1, NULL)))
mbstr_to_wstr    5731 win32/win32.c      if (!(wpath = mbstr_to_wstr(cp, path, -1, NULL)))
mbstr_to_wstr    7070 win32/win32.c  	ptr = wbuffer = mbstr_to_wstr(CP_UTF8, RSTRING_PTR(str), RSTRING_LEN(str), &len);