Lines Matching refs:m_handle
45 m_handle = handle; in Stream()
51 if (m_handle) { in ~Stream()
52 gnome_vfs_close (m_handle); in ~Stream()
53 m_handle = NULL; in ~Stream()
111 if( ! m_handle ) in readBytes()
126 result = gnome_vfs_read( m_handle, aData.getArray(), in readBytes()
162 if( ! m_handle ) in skipBytes()
165 result = gnome_vfs_seek( m_handle, GNOME_VFS_SEEK_CURRENT, nBytesToSkip ); in skipBytes()
205 if( ! m_handle ) in seek()
212 result = gnome_vfs_seek( m_handle, GNOME_VFS_SEEK_START, location ); in seek()
226 if( ! m_handle ) in getPosition()
229 throwOnError( gnome_vfs_tell( m_handle, &nBytesIn ) ); in getPosition()
254 if( ! m_handle ) in truncate()
257 throwOnError( gnome_vfs_truncate_handle( m_handle, 0 ) ); in truncate()
274 if( ! m_handle ) in writeBytes()
280 result = gnome_vfs_write( m_handle, p, toWrite, &bytesWritten ); in writeBytes()
317 if (m_handle) { in closeStream()
318 gnome_vfs_close (m_handle); in closeStream()
319 m_handle = NULL; in closeStream()