Home
last modified time | relevance | path

Searched refs:m_tmpfl (Results 1 – 2 of 2) sorted by relevance

/AOO41X/main/ucb/source/ucp/ftp/
H A Dftpinpstr.cxx48 : m_tmpfl(tmpfl) in FTPInputStream()
51 if ( !m_tmpfl ) in FTPInputStream()
52 osl_createTempFile( NULL, &m_tmpfl, NULL ); in FTPInputStream()
53 OSL_ENSURE( m_tmpfl, "input stream without tempfile!" ); in FTPInputStream()
55 if ( osl_setFilePos( m_tmpfl, osl_Pos_End, 0 ) == osl_File_E_None ) in FTPInputStream()
58 if ( osl_getFilePos( m_tmpfl, &nFileSize ) == osl_File_E_None ) in FTPInputStream()
60 osl_setFilePos( m_tmpfl, osl_Pos_Absolut, 0 ); in FTPInputStream()
66 if ( 0 != m_tmpfl) in ~FTPInputStream()
67 osl_closeFile(m_tmpfl); in ~FTPInputStream()
83 osl_getFilePos( m_tmpfl, &nBeforePos ); in readBytes()
[all …]
H A Dftpinpstr.hxx133 oslFileHandle m_tmpfl; member in ftp::FTPInputStream