Searched defs:m_outputs (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/webaudio/
H A DAudioNodeInput.h71 // This copies m_outputs to m_renderingOutputs. Please see comments for these lists below.
87 // m_outputs contains the AudioNodeOutputs representing current connections which are not disabled.
89 HashSet<AudioNodeOutput*> m_outputs; member in class:WebCore::AudioNodeInput
93 unsigned numberOfConnections() const { return m_outputs.size(); }
95 // This must be called whenever we modify m_outputs.
98 // m_renderingOutputs is a copy of m_outputs which will never be modified during the graph rendering on the audio thread.
100 // Whenever m_outputs is modified, the context is told so it can later update m_renderingOutputs from m_outputs at a safe time.
101 // Most of the time, m_renderingOutputs is identical to m_outputs.
104 // m_renderingStateNeedUpdating keeps track if m_outputs i
[all...]
H A DAudioNode.h106 unsigned numberOfOutputs() const { return m_outputs.size(); }
151 Vector<OwnPtr<AudioNodeOutput> > m_outputs; member in class:WebCore::AudioNode

Completed in 211 milliseconds