HomeSort by relevance Sort by last modified time
    Searched refs:FrameWriter (Results 1 - 15 of 15) sorted by null

  /external/webrtc/test/testsupport/
frame_writer.h 23 class FrameWriter {
25 virtual ~FrameWriter() {}
44 class FrameWriterImpl : public FrameWriter {
frame_writer_unittest.cc 37 FrameWriter* frame_writer_;
  /external/chromium_org/third_party/webrtc/test/testsupport/
frame_writer.h 24 class FrameWriter {
26 virtual ~FrameWriter() {}
45 class FrameWriterImpl : public FrameWriter {
frame_writer_unittest.cc 37 FrameWriter* frame_writer_;
  /external/chromium_org/third_party/webrtc/test/testsupport/mock/
mock_frame_writer.h 21 class MockFrameWriter : public FrameWriter {
  /external/webrtc/test/testsupport/mock/
mock_frame_writer.h 21 class MockFrameWriter : public FrameWriter {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Variant.java 36 FrameWriter newWriter(BufferedSink sink, boolean client);
FrameWriter.java 25 public interface FrameWriter extends Closeable {
Http20Draft09.java 63 @Override public FrameWriter newWriter(BufferedSink sink, boolean client) {
291 static final class Writer implements FrameWriter {
Spdy3.java 102 @Override public FrameWriter newWriter(BufferedSink sink, boolean client) {
293 static final class Writer implements FrameWriter {
SpdyConnection.java 58 // Socket writes are guarded by frameWriter.
63 // frameWriter (to do blocking I/O) and this (to create streams). Such
120 final FrameWriter frameWriter;
154 frameWriter = variant.newWriter(builder.sink, client);
240 synchronized (frameWriter) {
254 frameWriter.synStream(outFinished, inFinished, streamId, associatedStreamId, priority, slot,
259 frameWriter.pushPromise(associatedStreamId, streamId, requestHeaders);
264 frameWriter.flush();
272 frameWriter.synReply(outFinished, streamId, alternating)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test/
videoprocessor.h 161 FrameWriter* frame_writer,
190 FrameWriter* frame_writer_;
videoprocessor.cc 44 FrameWriter* frame_writer,
videoprocessor_integrationtest.cc 106 webrtc::test::FrameWriter* frame_writer_;
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
MockSpdyPeer.java 44 private FrameWriter frameWriter = variant.newWriter(bytesOut, client);
59 this.frameWriter = variant.newWriter(bytesOut, client);
71 public FrameWriter sendFrame() {
73 return frameWriter;
90 public FrameWriter sendTruncatedFrame(int truncateToLength) {
92 return frameWriter;

Completed in 399 milliseconds