Home
last modified time | relevance | path

Searched refs:wpath (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Tools/msi/
Dmsisupport.c25 WCHAR wpath[PSIZE]; in CheckDir() local
32 result = MsiGetPropertyW(hInstall, L"TARGETDIR", wpath, &size); in CheckDir()
35 wpath[size] = L'\0'; in CheckDir()
38 attributes = GetFileAttributesW(wpath); in CheckDir()
/external/flac/libFLAC/
Dwindows_unicode_filenames.c102 wchar_t *wpath; in flac_internal_stat64_utf8() local
105 if (!(wpath = wchar_from_utf8(path))) return -1; in flac_internal_stat64_utf8()
106 ret = _wstat64(wpath, buffer); in flac_internal_stat64_utf8()
107 free(wpath); in flac_internal_stat64_utf8()
/external/googletest/googletest/test/
Dgoogletest-filepath-test.cc56 LPCWSTR wpath = String::AnsiToUtf16(path); in remove() local
57 int ret = DeleteFile(wpath) ? 0 : -1; in remove()
58 delete [] wpath; in remove()
64 LPCWSTR wpath = String::AnsiToUtf16( in _rmdir() local
66 int ret = RemoveDirectory(wpath) ? 0 : -1; in _rmdir()
67 delete [] wpath; in _rmdir()
/external/google-breakpad/src/testing/gtest/test/
Dgtest-filepath_test.cc69 LPCWSTR wpath = String::AnsiToUtf16(path); in remove() local
70 int ret = DeleteFile(wpath) ? 0 : -1; in remove()
71 delete [] wpath; in remove()
77 LPCWSTR wpath = String::AnsiToUtf16( in _rmdir() local
79 int ret = RemoveDirectory(wpath) ? 0 : -1; in _rmdir()
80 delete [] wpath; in _rmdir()
/external/python/cpython3/Python/
Dfileutils.c914 const wchar_t *wpath; in _Py_stat() local
916 wpath = _PyUnicode_AsUnicode(path); in _Py_stat()
917 if (wpath == NULL) in _Py_stat()
920 err = _wstat(wpath, &wstatbuf); in _Py_stat()
1306 const wchar_t *wpath; in _Py_fopen_obj() local
1318 wpath = _PyUnicode_AsUnicode(path); in _Py_fopen_obj()
1319 if (wpath == NULL) in _Py_fopen_obj()
1331 f = _wfopen(wpath, wmode); in _Py_fopen_obj()
/external/python/cpython2/Modules/
Dposixmodule.c1655 Py_UNICODE *wpath; in posix_do_stat() local
1656 if (PyArg_ParseTuple(args, wformat, &wpath)) { in posix_do_stat()
1658 res = wstatfunc(wpath, &st); in posix_do_stat()
1662 return win32_error_unicode("stat", wpath); in posix_do_stat()
1711 Py_UNICODE *wpath; in posix_access() local
1712 if (PyArg_ParseTuple(args, "ui:access", &wpath, &mode)) { in posix_access()
1714 attr = GetFileAttributesW(wpath); in posix_access()
1861 Py_UNICODE *wpath; in posix_chmod() local
1862 if (PyArg_ParseTuple(args, "ui|:chmod", &wpath, &i)) { in posix_chmod()
1864 attr = GetFileAttributesW(wpath); in posix_chmod()
[all …]
/external/openssh/
DChangeLog5928 pledge "stdio rpath wpath cpath fattr tty proc exec"