/external/bluetooth/glib/glib/ |
gdir.c | 84 wchar_t *wpath; local 92 wpath = g_utf8_to_utf16 (path, -1, NULL, NULL, error); 94 if (wpath == NULL) 99 dir->wdirp = _wopendir (wpath); 100 g_free (wpath);
|
gstdio.c | 403 wchar_t *wpath = g_utf8_to_utf16 (path, -1, NULL, NULL, NULL); local 407 if (wpath == NULL) 413 retval = _wchdir (wpath); 416 g_free (wpath);
|
/external/chromium/testing/gtest/test/ |
gtest-filepath_test.cc | 69 LPCWSTR wpath = String::AnsiToUtf16(path); local 70 int ret = DeleteFile(wpath) ? 0 : -1; 71 delete [] wpath; 77 LPCWSTR wpath = String::AnsiToUtf16( local 79 int ret = RemoveDirectory(wpath) ? 0 : -1; 80 delete [] wpath;
|
/external/protobuf/gtest/test/ |
gtest-filepath_test.cc | 69 LPCWSTR wpath = String::AnsiToUtf16(path); local 70 int ret = DeleteFile(wpath) ? 0 : -1; 71 delete [] wpath; 77 LPCWSTR wpath = String::AnsiToUtf16( local 79 int ret = RemoveDirectory(wpath) ? 0 : -1; 80 delete [] wpath;
|
/external/gtest/test/ |
gtest-filepath_test.cc | 66 LPCWSTR wpath = String::AnsiToUtf16(path); local 67 int ret = DeleteFile(wpath) ? 0 : -1; 68 delete [] wpath; 74 LPCWSTR wpath = String::AnsiToUtf16( local 76 int ret = RemoveDirectory(wpath) ? 0 : -1; 77 delete [] wpath;
|
/external/bluetooth/glib/gio/ |
glocalfile.c | 863 wchar_t *wpath; local 866 wpath = g_utf8_to_utf16 (path, -1, NULL, NULL, NULL); 869 if (!GetVolumePathNameW (wpath, result, MAX_PATH)) 875 g_free (wpath); 887 g_free (wpath); 894 wchar_t *wpath; local 897 wpath = get_volume_for_path (file); 898 if (!wpath) 901 utf8_path = g_utf16_to_utf8 (wpath, -1, NULL, NULL, NULL); 903 g_free (wpath); [all...] |