channel 252 Source/core/inspector/InspectorController.cpp InspectorFrontendChannel* frontendChannel = m_inspectorFrontend->channel(); channel 170 Source/core/inspector/InspectorWorkerAgent.cpp WorkerFrontendChannel* channel = m_idToChannel.get(workerId); channel 171 Source/core/inspector/InspectorWorkerAgent.cpp if (channel) channel 172 Source/core/inspector/InspectorWorkerAgent.cpp channel->connectToWorkerGlobalScope(); channel 179 Source/core/inspector/InspectorWorkerAgent.cpp WorkerFrontendChannel* channel = m_idToChannel.get(workerId); channel 180 Source/core/inspector/InspectorWorkerAgent.cpp if (channel) channel 181 Source/core/inspector/InspectorWorkerAgent.cpp channel->disconnectFromWorkerGlobalScope(); channel 188 Source/core/inspector/InspectorWorkerAgent.cpp WorkerFrontendChannel* channel = m_idToChannel.get(workerId); channel 189 Source/core/inspector/InspectorWorkerAgent.cpp if (channel) channel 190 Source/core/inspector/InspectorWorkerAgent.cpp channel->proxy()->sendMessageToInspector(message->toJSONString()); channel 242 Source/core/inspector/InspectorWorkerAgent.cpp WorkerFrontendChannel* channel = new WorkerFrontendChannel(m_inspectorFrontend, workerGlobalScopeProxy); channel 243 Source/core/inspector/InspectorWorkerAgent.cpp m_idToChannel.set(channel->id(), channel); channel 248 Source/core/inspector/InspectorWorkerAgent.cpp channel->connectToWorkerGlobalScope(); channel 249 Source/core/inspector/InspectorWorkerAgent.cpp m_inspectorFrontend->worker()->workerCreated(channel->id(), url, autoconnectToWorkers); channel 66 Source/core/workers/SharedWorker.cpp RefPtr<MessageChannel> channel = MessageChannel::create(context); channel 67 Source/core/workers/SharedWorker.cpp worker->m_port = channel->port1(); channel 68 Source/core/workers/SharedWorker.cpp OwnPtr<blink::WebMessagePortChannel> remotePort = channel->port2()->disentangle(); channel 35 Source/modules/mediastream/RTCDataChannelEvent.cpp PassRefPtrWillBeRawPtr<RTCDataChannelEvent> RTCDataChannelEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel> channel) channel 37 Source/modules/mediastream/RTCDataChannelEvent.cpp return adoptRefWillBeNoop(new RTCDataChannelEvent(type, canBubble, cancelable, channel)); channel 46 Source/modules/mediastream/RTCDataChannelEvent.cpp RTCDataChannelEvent::RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel> channel) channel 48 Source/modules/mediastream/RTCDataChannelEvent.cpp , m_channel(channel) channel 41 Source/modules/mediastream/RTCDataChannelEvent.h RTCDataChannel* channel() const; channel 504 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCDataChannel> channel = RTCDataChannel::create(executionContext(), m_peerHandler.get(), label, init, exceptionState); channel 507 Source/modules/mediastream/RTCPeerConnection.cpp m_dataChannels.append(channel); channel 508 Source/modules/mediastream/RTCPeerConnection.cpp return channel.release(); channel 629 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCDataChannel> channel = RTCDataChannel::create(executionContext(), adoptPtr(handler)); channel 630 Source/modules/mediastream/RTCPeerConnection.cpp m_dataChannels.append(channel); channel 632 Source/modules/mediastream/RTCPeerConnection.cpp scheduleDispatchEvent(RTCDataChannelEvent::create(EventTypeNames::datachannel, false, false, channel.release())); channel 122 Source/modules/webaudio/AudioBuffer.cpp channelDataArray->setRange(bus->channel(i)->data(), m_length, 0); channel 128 Source/modules/webaudio/AudioBufferSourceNode.cpp m_destinationChannels[i] = outputBus->channel(i)->mutableData(); channel 110 Source/modules/webaudio/AudioScheduledSourceNode.cpp memset(outputBus->channel(i)->mutableData(), 0, sizeof(float) * quantumFrameOffset); channel 130 Source/modules/webaudio/AudioScheduledSourceNode.cpp memset(outputBus->channel(i)->mutableData() + zeroStartFrame, 0, sizeof(float) * framesToZero); channel 111 Source/modules/webaudio/BiquadProcessor.cpp m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess); channel 86 Source/modules/webaudio/ChannelMergerNode.cpp AudioChannel* inputChannel = input->bus()->channel(j); channel 87 Source/modules/webaudio/ChannelMergerNode.cpp AudioChannel* outputChannel = output->bus()->channel(outputChannelIndex); channel 74 Source/modules/webaudio/ChannelSplitterNode.cpp destination->channel(0)->copyFrom(source->channel(i)); channel 127 Source/modules/webaudio/OfflineAudioDestinationNode.cpp const float* source = m_renderBus->channel(channelIndex)->data(); channel 258 Source/modules/webaudio/OscillatorNode.cpp float* destP = outputBus->channel(0)->mutableData(); channel 92 Source/modules/webaudio/RealtimeAnalyser.cpp bool isBusGood = bus && bus->numberOfChannels() > 0 && bus->channel(0)->length() >= framesToProcess; channel 104 Source/modules/webaudio/RealtimeAnalyser.cpp const float* source = bus->channel(0)->data(); channel 114 Source/modules/webaudio/RealtimeAnalyser.cpp source = bus->channel(i)->data(); channel 206 Source/modules/webaudio/ScriptProcessorNode.cpp memcpy(outputBus->channel(i)->mutableData(), outputBuffer->getChannelData(i)->data() + m_bufferReadWriteIndex, sizeof(float) * framesToProcess); channel 92 Source/modules/webaudio/WaveShaperProcessor.cpp m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess); channel 75 Source/modules/websockets/NewWebSocketChannelImpl.cpp NewWebSocketChannelImpl::BlobLoader::BlobLoader(PassRefPtr<BlobDataHandle> blobDataHandle, NewWebSocketChannelImpl* channel) channel 76 Source/modules/websockets/NewWebSocketChannelImpl.cpp : m_channel(channel) channel 79 Source/modules/websockets/NewWebSocketChannelImpl.cpp m_loader.start(channel->executionContext(), blobDataHandle); channel 71 Source/platform/audio/AudioBus.cpp PassOwnPtr<AudioChannel> channel = allocate ? adoptPtr(new AudioChannel(length)) : adoptPtr(new AudioChannel(0, length)); channel 72 Source/platform/audio/AudioBus.cpp m_channels.append(channel); channel 81 Source/platform/audio/AudioBus.cpp channel(channelIndex)->set(storage, length); channel 111 Source/platform/audio/AudioBus.cpp return channel(0); channel 116 Source/platform/audio/AudioBus.cpp case ChannelLeft: return channel(0); channel 117 Source/platform/audio/AudioBus.cpp case ChannelRight: return channel(1); channel 123 Source/platform/audio/AudioBus.cpp case ChannelLeft: return channel(0); channel 124 Source/platform/audio/AudioBus.cpp case ChannelRight: return channel(1); channel 125 Source/platform/audio/AudioBus.cpp case ChannelSurroundLeft: return channel(2); channel 126 Source/platform/audio/AudioBus.cpp case ChannelSurroundRight: return channel(3); channel 132 Source/platform/audio/AudioBus.cpp case ChannelLeft: return channel(0); channel 133 Source/platform/audio/AudioBus.cpp case ChannelRight: return channel(1); channel 134 Source/platform/audio/AudioBus.cpp case ChannelCenter: return channel(2); channel 135 Source/platform/audio/AudioBus.cpp case ChannelSurroundLeft: return channel(3); channel 136 Source/platform/audio/AudioBus.cpp case ChannelSurroundRight: return channel(4); channel 142 Source/platform/audio/AudioBus.cpp case ChannelLeft: return channel(0); channel 143 Source/platform/audio/AudioBus.cpp case ChannelRight: return channel(1); channel 144 Source/platform/audio/AudioBus.cpp case ChannelCenter: return channel(2); channel 145 Source/platform/audio/AudioBus.cpp case ChannelLFE: return channel(3); channel 146 Source/platform/audio/AudioBus.cpp case ChannelSurroundLeft: return channel(4); channel 147 Source/platform/audio/AudioBus.cpp case ChannelSurroundRight: return channel(5); channel 191 Source/platform/audio/AudioBus.cpp audioBus->channel(i)->copyFromRange(sourceBuffer->channel(i), startFrame, endFrame); channel 200 Source/platform/audio/AudioBus.cpp const AudioChannel* channel = this->channel(i); channel 201 Source/platform/audio/AudioBus.cpp max = std::max(max, channel->maxAbsValue()); channel 217 Source/platform/audio/AudioBus.cpp channel(i)->scale(scale); channel 230 Source/platform/audio/AudioBus.cpp channel(i)->copyFrom(sourceBus.channel(i)); channel 255 Source/platform/audio/AudioBus.cpp channel(i)->sumFrom(sourceBus.channel(i)); channel 281 Source/platform/audio/AudioBus.cpp const AudioChannel* sourceChannel = sourceBus.channel(0); channel 282 Source/platform/audio/AudioBus.cpp channel(0)->copyFrom(sourceChannel); channel 283 Source/platform/audio/AudioBus.cpp channel(1)->copyFrom(sourceChannel); channel 297 Source/platform/audio/AudioBus.cpp channel(2)->copyFrom(sourceBus.channel(0)); channel 298 Source/platform/audio/AudioBus.cpp channel(0)->zero(); channel 299 Source/platform/audio/AudioBus.cpp channel(1)->zero(); channel 300 Source/platform/audio/AudioBus.cpp channel(3)->zero(); channel 301 Source/platform/audio/AudioBus.cpp channel(4)->zero(); channel 302 Source/platform/audio/AudioBus.cpp channel(5)->zero(); channel 323 Source/platform/audio/AudioBus.cpp const AudioChannel* sourceChannel = sourceBus.channel(0); channel 324 Source/platform/audio/AudioBus.cpp channel(0)->sumFrom(sourceChannel); channel 325 Source/platform/audio/AudioBus.cpp channel(1)->sumFrom(sourceChannel); channel 339 Source/platform/audio/AudioBus.cpp channel(2)->sumFrom(sourceBus.channel(0)); channel 388 Source/platform/audio/AudioBus.cpp channel(i)->copyFrom(sourceBus.channel(i)); channel 392 Source/platform/audio/AudioBus.cpp channel(i)->copyFrom(sourceBus.channel(i)); channel 394 Source/platform/audio/AudioBus.cpp channel(i)->zero(); channel 406 Source/platform/audio/AudioBus.cpp channel(i)->sumFrom(sourceBus.channel(i)); channel 410 Source/platform/audio/AudioBus.cpp channel(i)->sumFrom(sourceBus.channel(i)); channel 441 Source/platform/audio/AudioBus.cpp sources[i] = sourceBusSafe.channel(i)->data(); channel 442 Source/platform/audio/AudioBus.cpp destinations[i] = channel(i)->mutableData(); channel 519 Source/platform/audio/AudioBus.cpp const float* source = sourceBus.channel(0)->data(); channel 522 Source/platform/audio/AudioBus.cpp source = sourceBus.channel(channelIndex)->data(); channel 523 Source/platform/audio/AudioBus.cpp float* destination = channel(channelIndex)->mutableData(); channel 579 Source/platform/audio/AudioBus.cpp const float* source = resamplerSourceBus->channel(i)->data(); channel 580 Source/platform/audio/AudioBus.cpp float* destination = destinationBus->channel(i)->mutableData(); channel 605 Source/platform/audio/AudioBus.cpp const float* sourceL = sourceBus->channel(0)->data(); channel 606 Source/platform/audio/AudioBus.cpp const float* sourceR = sourceBus->channel(1)->data(); channel 607 Source/platform/audio/AudioBus.cpp float* destination = destinationBus->channel(0)->mutableData(); channel 77 Source/platform/audio/AudioBus.h AudioChannel* channel(unsigned channel) { return m_channels[channel].get(); } channel 78 Source/platform/audio/AudioBus.h const AudioChannel* channel(unsigned channel) const { return const_cast<AudioBus*>(this)->m_channels[channel].get(); } channel 95 Source/platform/audio/AudioDSPKernelProcessor.cpp m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess); channel 62 Source/platform/audio/AudioFIFO.cpp float* destinationData = destination->channel(channelIndex)->mutableData(); channel 63 Source/platform/audio/AudioFIFO.cpp const float* sourceData = m_fifoAudioBus->channel(channelIndex)->data(); channel 99 Source/platform/audio/AudioFIFO.cpp float* destination = m_fifoAudioBus->channel(channelIndex)->mutableData(); channel 100 Source/platform/audio/AudioFIFO.cpp const float* source = sourceBus->channel(channelIndex)->data(); channel 105 Source/platform/audio/AudioResampler.cpp float* destination = destinationBus->channel(i)->mutableData(); channel 116 Source/platform/audio/DynamicsCompressor.cpp m_sourceChannels[0] = sourceBus->channel(0)->data(); channel 119 Source/platform/audio/DynamicsCompressor.cpp m_sourceChannels[1] = sourceBus->channel(1)->data(); channel 133 Source/platform/audio/DynamicsCompressor.cpp m_destinationChannels[i] = destinationBus->channel(i)->mutableData(); channel 66 Source/platform/audio/EqualPowerPanner.cpp const float* sourceL = inputBus->channel(0)->data(); channel 67 Source/platform/audio/EqualPowerPanner.cpp const float* sourceR = numberOfInputChannels > 1 ? inputBus->channel(1)->data() : sourceL; channel 173 Source/platform/audio/HRTFElevation.cpp AudioChannel* leftEarImpulseResponse = response->channel(AudioBus::ChannelLeft); channel 174 Source/platform/audio/HRTFElevation.cpp AudioChannel* rightEarImpulseResponse = response->channel(AudioBus::ChannelRight); channel 47 Source/platform/audio/HRTFKernel.cpp static float extractAverageGroupDelay(AudioChannel* channel, size_t analysisFFTSize) channel 49 Source/platform/audio/HRTFKernel.cpp ASSERT(channel); channel 51 Source/platform/audio/HRTFKernel.cpp float* impulseP = channel->mutableData(); channel 53 Source/platform/audio/HRTFKernel.cpp bool isSizeGood = channel->length() >= analysisFFTSize; channel 70 Source/platform/audio/HRTFKernel.cpp HRTFKernel::HRTFKernel(AudioChannel* channel, size_t fftSize, float sampleRate) channel 74 Source/platform/audio/HRTFKernel.cpp ASSERT(channel); channel 77 Source/platform/audio/HRTFKernel.cpp m_frameDelay = extractAverageGroupDelay(channel, fftSize / 2); channel 79 Source/platform/audio/HRTFKernel.cpp float* impulseResponse = channel->mutableData(); channel 80 Source/platform/audio/HRTFKernel.cpp size_t responseLength = channel->length(); channel 101 Source/platform/audio/HRTFKernel.cpp OwnPtr<AudioChannel> channel = adoptPtr(new AudioChannel(fftSize())); channel 106 Source/platform/audio/HRTFKernel.cpp fftFrame.doInverseFFT(channel->mutableData()); channel 108 Source/platform/audio/HRTFKernel.cpp return channel.release(); channel 54 Source/platform/audio/HRTFKernel.h static PassRefPtr<HRTFKernel> create(AudioChannel* channel, size_t fftSize, float sampleRate) channel 56 Source/platform/audio/HRTFKernel.h return adoptRef(new HRTFKernel(channel, fftSize, sampleRate)); channel 80 Source/platform/audio/MultiChannelResampler.cpp memcpy(bus->channel(0)->mutableData(), m_multiChannelBus->channel(m_currentChannel)->data(), sizeof(float) * framesToProcess); channel 116 Source/platform/audio/MultiChannelResampler.cpp destination->channel(channelIndex)->mutableData(), channel 67 Source/platform/audio/Reverb.cpp vsvesq(response->channel(i)->data(), 1, &channelPower, length); channel 122 Source/platform/audio/Reverb.cpp AudioChannel* channel = impulseResponseBuffer->channel(i); channel 124 Source/platform/audio/Reverb.cpp OwnPtr<ReverbConvolver> convolver = adoptPtr(new ReverbConvolver(channel, renderSliceSize, maxFFTSize, convolverRenderPhase, useBackgroundThreads)); channel 153 Source/platform/audio/Reverb.cpp AudioChannel* destinationChannelL = destinationBus->channel(0); channel 154 Source/platform/audio/Reverb.cpp const AudioChannel* sourceChannelL = sourceBus->channel(0); channel 163 Source/platform/audio/Reverb.cpp const AudioChannel* sourceChannelR = sourceBus->channel(1); channel 164 Source/platform/audio/Reverb.cpp AudioChannel* destinationChannelR = destinationBus->channel(1); channel 170 Source/platform/audio/Reverb.cpp AudioChannel* destinationChannel = destinationBus->channel(i); channel 178 Source/platform/audio/Reverb.cpp AudioChannel* destinationChannelR = destinationBus->channel(1); channel 189 Source/platform/audio/Reverb.cpp const AudioChannel* sourceChannelR = sourceBus->channel(1); channel 190 Source/platform/audio/Reverb.cpp AudioChannel* destinationChannelR = destinationBus->channel(1); channel 192 Source/platform/audio/Reverb.cpp AudioChannel* tempChannelL = m_tempBuffer->channel(0); channel 193 Source/platform/audio/Reverb.cpp AudioChannel* tempChannelR = m_tempBuffer->channel(1); channel 207 Source/platform/audio/Reverb.cpp AudioChannel* destinationChannelR = destinationBus->channel(1); channel 209 Source/platform/audio/Reverb.cpp AudioChannel* tempChannelL = m_tempBuffer->channel(0); channel 210 Source/platform/audio/Reverb.cpp AudioChannel* tempChannelR = m_tempBuffer->channel(1); channel 164 Source/platform/audio/SincResampler.cpp float* buffer = bus->channel(0)->mutableData(); channel 132 Source/platform/exported/WebAudioBus.cpp return m_private->channel(channelIndex)->mutableData(); channel 204 Source/platform/exported/WebMediaStreamSource.cpp busVector[i] = bus->channel(i)->data(); channel 224 Source/platform/graphics/filters/FEComponentTransfer.cpp for (unsigned channel = 0; channel < 4; channel++) { channel 225 Source/platform/graphics/filters/FEComponentTransfer.cpp ASSERT_WITH_SECURITY_IMPLICATION(static_cast<size_t>(transferFunction[channel].type) < WTF_ARRAY_LENGTH(callEffect)); channel 226 Source/platform/graphics/filters/FEComponentTransfer.cpp (*callEffect[transferFunction[channel].type])(tables[channel], transferFunction[channel]); channel 230 Source/platform/graphics/filters/FEConvolveMatrix.cpp static ALWAYS_INLINE unsigned char clampRGBAValue(float channel, unsigned char max = 255) channel 232 Source/platform/graphics/filters/FEConvolveMatrix.cpp if (channel <= 0) channel 234 Source/platform/graphics/filters/FEConvolveMatrix.cpp if (channel >= max) channel 236 Source/platform/graphics/filters/FEConvolveMatrix.cpp return channel; channel 150 Source/platform/graphics/filters/FEDisplacementMap.cpp for (unsigned channel = 0; channel < 4; ++channel) { channel 152 Source/platform/graphics/filters/FEDisplacementMap.cpp dstPixelArray->set(dstIndex + channel, static_cast<unsigned char>(0)); channel 154 Source/platform/graphics/filters/FEDisplacementMap.cpp unsigned char pixelValue = srcPixelArrayA->item(srcY * stride + srcX * 4 + channel); channel 155 Source/platform/graphics/filters/FEDisplacementMap.cpp dstPixelArray->set(dstIndex + channel, pixelValue); channel 181 Source/platform/graphics/filters/FETurbulence.cpp for (int channel = 0; channel < 4; ++channel) { channel 184 Source/platform/graphics/filters/FETurbulence.cpp gradient = paintingData.gradient[channel][i]; channel 202 Source/platform/graphics/filters/FETurbulence.cpp for (int channel = 0; channel < 4; ++channel) { channel 203 Source/platform/graphics/filters/FETurbulence.cpp paintingData.gradient[channel][s_blockSize + i][0] = paintingData.gradient[channel][i][0]; channel 204 Source/platform/graphics/filters/FETurbulence.cpp paintingData.gradient[channel][s_blockSize + i][1] = paintingData.gradient[channel][i][1]; channel 217 Source/platform/graphics/filters/FETurbulence.cpp float FETurbulence::noise2D(int channel, PaintingData& paintingData, StitchData& stitchData, const FloatPoint& noiseVector) channel 252 Source/platform/graphics/filters/FETurbulence.cpp q = paintingData.gradient[channel][temp]; channel 255 Source/platform/graphics/filters/FETurbulence.cpp q = paintingData.gradient[channel][temp]; channel 259 Source/platform/graphics/filters/FETurbulence.cpp q = paintingData.gradient[channel][temp]; channel 262 Source/platform/graphics/filters/FETurbulence.cpp q = paintingData.gradient[channel][temp]; channel 268 Source/platform/graphics/filters/FETurbulence.cpp unsigned char FETurbulence::calculateTurbulenceValueForPoint(int channel, PaintingData& paintingData, StitchData& stitchData, const FloatPoint& point, float baseFrequencyX, float baseFrequencyY) channel 305 Source/platform/graphics/filters/FETurbulence.cpp turbulenceFunctionResult += noise2D(channel, paintingData, stitchData, noiseVector) / ratio; channel 307 Source/platform/graphics/filters/FETurbulence.cpp turbulenceFunctionResult += fabsf(noise2D(channel, paintingData, stitchData, noiseVector)) / ratio; channel 335 Source/platform/graphics/filters/FETurbulence.cpp int channel; channel 343 Source/platform/graphics/filters/FETurbulence.cpp for (channel = 0; channel < 4; ++channel, ++indexOfPixelChannel) channel 344 Source/platform/graphics/filters/FETurbulence.cpp pixelArray->set(indexOfPixelChannel, calculateTurbulenceValueForPoint(channel, paintingData, stitchData, filter()->mapAbsolutePointToLocalPoint(point), baseFrequencyX, baseFrequencyY)); channel 123 Source/platform/graphics/filters/FETurbulence.h float noise2D(int channel, PaintingData&, StitchData&, const FloatPoint&); channel 124 Source/platform/graphics/filters/FETurbulence.h unsigned char calculateTurbulenceValueForPoint(int channel, PaintingData&, StitchData&, const FloatPoint&, float, float); channel 84 Source/platform/mediastream/MediaStreamComponent.cpp webAudioData[i] = bus->channel(i)->mutableData(); channel 66 Source/platform/mediastream/MediaStreamWebAudioSource.cpp webAudioData[i] = bus->channel(i)->mutableData(); channel 62 Source/web/SharedWorkerRepositoryClientImpl.cpp SharedWorkerConnector(PassRefPtrWillBeRawPtr<SharedWorker> worker, const KURL& url, const String& name, PassOwnPtr<WebMessagePortChannel> channel, PassOwnPtr<WebSharedWorkerConnector> webWorkerConnector) channel 67 Source/web/SharedWorkerRepositoryClientImpl.cpp , m_channel(channel) { } channel 250 Source/web/WebKit.cpp WTFLogChannel* channel = WebCore::getChannelFromName(name); channel 251 Source/web/WebKit.cpp if (channel) channel 252 Source/web/WebKit.cpp channel->state = WTFLogChannelOn; channel 555 Source/web/WebMediaPlayerClientImpl.cpp webAudioData[i] = bus->channel(i)->mutableData(); channel 307 Source/web/WebSharedWorkerImpl.cpp void WebSharedWorkerImpl::connectTask(ExecutionContext* context, PassOwnPtr<WebMessagePortChannel> channel) channel 311 Source/web/WebSharedWorkerImpl.cpp port->entangle(channel); channel 355 Source/wtf/Assertions.cpp void WTFLog(WTFLogChannel* channel, const char* format, ...) channel 357 Source/wtf/Assertions.cpp if (channel->state != WTFLogChannelOn) channel 366 Source/wtf/Assertions.cpp void WTFLogVerbose(const char* file, int line, const char* function, WTFLogChannel* channel, const char* format, ...) channel 368 Source/wtf/Assertions.cpp if (channel->state != WTFLogChannelOn) channel 324 Source/wtf/Assertions.h #define WTF_LOG(channel, ...) ((void)0) channel 326 Source/wtf/Assertions.h #define WTF_LOG(channel, ...) WTFLog(&JOIN_LOG_CHANNEL_WITH_PREFIX(LOG_CHANNEL_PREFIX, channel), __VA_ARGS__) channel 327 Source/wtf/Assertions.h #define JOIN_LOG_CHANNEL_WITH_PREFIX(prefix, channel) JOIN_LOG_CHANNEL_WITH_PREFIX_LEVEL_2(prefix, channel) channel 328 Source/wtf/Assertions.h #define JOIN_LOG_CHANNEL_WITH_PREFIX_LEVEL_2(prefix, channel) prefix ## channel channel 69 public/platform/WebMessagePortChannel.h static void deletePtr(blink::WebMessagePortChannel* channel) channel 71 public/platform/WebMessagePortChannel.h if (channel) channel 72 public/platform/WebMessagePortChannel.h channel->destroy();