Searched refs:nBytesWritten (Results 1 - 5 of 5) sorted by relevance

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DGlobalFunctions.cpp64 unsigned int nBytesWritten = 0; local
65 int nRetVal = pIO->Write(pBuffer, nBytes, &nBytesWritten);
68 if (nBytes != int(nBytesWritten))
H A DAPECompressCreate.cpp145 unsigned int nBytesWritten = 0; local
146 RETURN_ON_ERROR(pIO->Write(&APEDescriptor, sizeof(APEDescriptor), &nBytesWritten))
147 RETURN_ON_ERROR(pIO->Write(&APEHeader, sizeof(APEHeader), &nBytesWritten))
153 RETURN_ON_ERROR(pIO->Write(m_spSeekTable, (nMaxFrames * 4), &nBytesWritten))
160 RETURN_ON_ERROR(pIO->Write((void *) pHeaderData, nHeaderBytes, &nBytesWritten))
173 unsigned int nBytesWritten = 0; local
179 if (pIO->Write((void *) pTerminatingData, nTerminatingBytes, &nBytesWritten) != 0) { return ERROR_IO_WRITE; }
211 if (pIO->Write(&APEDescriptor, sizeof(APEDescriptor), &nBytesWritten) != 0) { return ERROR_IO_WRITE; }
212 if (pIO->Write(&APEHeader, sizeof(APEHeader), &nBytesWritten) != 0) { return ERROR_IO_WRITE; }
215 if (pIO->Write(m_spSeekTable, m_nMaxFrames * 4, &nBytesWritten) !
[all...]
H A DAPESimple.cpp348 unsigned int nBytesWritten = 0; local
349 int nRetVal = spioOutput->Write(spTempBuffer, nBytesToWrite, &nBytesWritten);
350 if ((nRetVal != 0) || (nBytesToWrite != nBytesWritten))
378 unsigned int nBytesWritten = 0; local
379 int nRetVal = spioOutput->Write(spTempBuffer, nBytesToWrite, &nBytesWritten);
380 if ((nRetVal != 0) || (nBytesToWrite != nBytesWritten))
H A DBitArray.cpp72 unsigned int nBytesWritten = 0; local
82 RETURN_ON_ERROR(m_pIO->Write(m_pBitArray, nBytesToWrite, &nBytesWritten))
93 RETURN_ON_ERROR(m_pIO->Write(m_pBitArray, nBytesToWrite, &nBytesWritten))
H A DAPETag.cpp190 unsigned int nBytesWritten = 0; local
193 int nRetVal = m_spIO->Write(pBuffer, nBytes, &nBytesWritten);

Completed in 94 milliseconds