Lines Matching refs:strSysPath
711 rtl_uString * strSysPath = 0; in osl_openFile() local
712 oslFileError result = _osl_getSystemPathFromFileURL( strPath, &strSysPath, sal_False ); in osl_openFile()
732 reinterpret_cast<LPCWSTR>(rtl_uString_getStr( strSysPath )), in osl_openFile()
741 rtl_uString_release( strSysPath ); in osl_openFile()
1118 rtl_uString *strSysPath = NULL; in osl_removeFile() local
1119 oslFileError error = _osl_getSystemPathFromFileURL( strPath, &strSysPath, sal_False ); in osl_removeFile()
1123 if ( DeleteFile( reinterpret_cast<LPCTSTR>(rtl_uString_getStr( strSysPath )) ) ) in osl_removeFile()
1128 rtl_uString_release( strSysPath ); in osl_removeFile()
1139 rtl_uString *strSysPath = NULL, *strSysDestPath = NULL; in osl_copyFile() local
1140 oslFileError error = _osl_getSystemPathFromFileURL( strPath, &strSysPath, sal_False ); in osl_copyFile()
1147 LPCTSTR src = reinterpret_cast<LPCTSTR>(rtl_uString_getStr( strSysPath )); in osl_copyFile()
1156 if ( strSysPath ) in osl_copyFile()
1157 rtl_uString_release( strSysPath ); in osl_copyFile()
1167 rtl_uString *strSysPath = NULL, *strSysDestPath = NULL; in osl_moveFile() local
1168 oslFileError error = _osl_getSystemPathFromFileURL( strPath, &strSysPath, sal_False ); in osl_moveFile()
1175 LPCTSTR src = reinterpret_cast<LPCTSTR>(rtl_uString_getStr( strSysPath )); in osl_moveFile()
1184 if ( strSysPath ) in osl_moveFile()
1185 rtl_uString_release( strSysPath ); in osl_moveFile()