Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
DSourceBuffer.cpp378 if (!m_pendingAppendData.isEmpty()) { in abortIfUpdating()
390 m_pendingAppendData.clear(); in abortIfUpdating()
521 m_pendingAppendData.append(data, size); in appendBufferInternal()
545 ASSERT(m_pendingAppendData.size() >= m_pendingAppendDataOffset); in appendBufferAsyncPart()
546 size_t appendSize = m_pendingAppendData.size() - m_pendingAppendDataOffset; in appendBufferAsyncPart()
565 appendData = m_pendingAppendData.data() + m_pendingAppendDataOffset; in appendBufferAsyncPart()
571 if (m_pendingAppendDataOffset < m_pendingAppendData.size()) { in appendBufferAsyncPart()
579 m_pendingAppendData.clear(); in appendBufferAsyncPart()
DSourceBuffer.h134 Vector<unsigned char> m_pendingAppendData; variable