Lines Matching refs:newDstUnqPath
1185 rtl::OUString newDstUnqPath; in move() local
1204 newDstUnqPath = dstUnqPath; in move()
1209 newDstUnqPath = newDstUnqPath.replaceAt( nPos, 0, aPostFix ); in move()
1211 nError = osl_File_move( srcUnqPath,newDstUnqPath,true ); in move()
1230 dstUnqPath = newDstUnqPath; in move()
1414 rtl::OUString newDstUnqPath; in copy() local
1434 newDstUnqPath = dstUnqPath; in copy()
1439 newDstUnqPath = newDstUnqPath.replaceAt( nPos, 0, aPostFix ); in copy()
1441 nError = copy_recursive( rslvdSrcUnqPath,newDstUnqPath,IsWhat,true ); in copy()
1460 dstUnqPath = newDstUnqPath; in copy()
2051 rtl::OUString newDstUnqPath = dstUnqPath; in copy_recursive() local
2059 if( newDstUnqPath.lastIndexOf( sal_Unicode('/') ) != newDstUnqPath.getLength()-1 ) in copy_recursive()
2060 newDstUnqPath += rtl::OUString::createFromAscii( "/" ); in copy_recursive()
2062 newDstUnqPath += tit; in copy_recursive()
2065 err = copy_recursive( newSrcUnqPath,newDstUnqPath,newTypeToCopy,false ); in copy_recursive()