Home | History | Annotate | Download | only in adb

Lines Matching refs:path_wide

410     std::wstring path_wide;
411 if (!android::base::UTF8ToWide(path, &path_wide)) {
414 f->fh_handle = CreateFileW( path_wide.c_str(), desiredAccess, shareMode,
454 std::wstring path_wide;
455 if (!android::base::UTF8ToWide(path, &path_wide)) {
458 f->fh_handle = CreateFileW( path_wide.c_str(), GENERIC_WRITE,
2285 std::wstring path_wide;
2286 if (!android::base::UTF8ToWide(path, &path_wide)) {
2290 return _wopen(path_wide.c_str(), options);
2297 return _wopen(path_wide.c_str(), options, mode);
2303 std::wstring path_wide;
2304 if (!android::base::UTF8ToWide(path, &path_wide)) {
2311 return reinterpret_cast<DIR*>(_wopendir(path_wide.c_str()));
2377 std::wstring path_wide;
2378 if (!android::base::UTF8ToWide(path, &path_wide)) {
2382 return _wmkdir(path_wide.c_str());
2387 std::wstring path_wide;
2388 if (!android::base::UTF8ToWide(path, &path_wide)) {
2395 return _wutime(path_wide.c_str(), reinterpret_cast<struct _utimbuf*>(u));
2400 std::wstring path_wide;
2401 if (!android::base::UTF8ToWide(path, &path_wide)) {
2405 return _wchmod(path_wide.c_str(), mode);
2663 std::wstring path_wide;
2664 if (!android::base::UTF8ToWide(path, &path_wide)) {
2673 return _wfopen(path_wide.c_str(), mode_wide.c_str());