HomeSort by relevance Sort by last modified time
    Searched refs:fin (Results 176 - 200 of 268) sorted by null

1 2 3 4 5 6 78 91011

  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
BasicVerifier.java 293 FieldInsnNode fin = (FieldInsnNode) insn; local
294 expected1 = newValue(Type.getObjectType(fin.owner));
295 expected2 = newValue(Type.getType(fin.desc));
  /external/chromium_org/net/websockets/
websocket_channel.cc 353 void WebSocketChannel::SendFrame(bool fin,
362 << "misbehaving renderer? fin=" << fin << " op_code=" << op_code
384 << "; misbehaving renderer? fin=" << fin
394 (state == StreamingUtf8Validator::VALID_MIDPOINT && fin)) {
403 sending_text_message_ = !fin;
404 DCHECK(!fin || state == StreamingUtf8Validator::VALID_ENDPOINT);
413 AllowUnused(SendFrameFromIOBuffer(fin, op_code, buffer, data.size()));
    [all...]
websocket_channel.h 74 // connection will be closed without sending. |fin| indicates the last frame
75 // in a message, equivalent to "FIN" as specified in section 5.2 of
80 void SendFrame(bool fin,
274 // when the current write finishes. |fin| and |op_code| are defined as for
277 ChannelState SendFrameFromIOBuffer(bool fin,
  /external/chromium_org/net/quic/
quic_stream_sequencer.cc 49 if (data_len == 0 && !frame.fin) {
50 // Stream frames must have data or a fin flag.
52 "Empty stream frame without FIN set.");
56 if (frame.fin) {
quic_network_transaction_unittest.cc 161 bool fin,
165 sequence_number, stream_id, should_include_version, fin, offset, data);
172 bool fin,
175 sequence_number, stream_id, should_include_version, fin, headers);
182 bool fin,
185 sequence_number, stream_id, should_include_version, fin, headers);
    [all...]
quic_session_test.cc 98 void SendBody(const string& data, bool fin) {
99 WriteOrBufferData(data, fin, NULL);
156 bool fin,
161 return QuicConsumedData(data.TotalBufferSize(), fin);
163 return QuicSession::WritevData(id, data, offset, fin, fec_protection,
750 // Test the situation where we receive a FIN on a stream, and before we fully
753 // determined when the FIN arrived, should be marked as consumed at the
790 // receive a FIN from the peer, we correctly adjust our connection level flow
813 // Now receive a response from the peer with a FIN. We should handle this by
    [all...]
quic_data_stream_test.cc 546 // An attempt to write a FIN with no data should not be flow control blocked,
560 // Send a frame with a FIN but no data. This should not be blocked.
562 bool fin = true; local
566 .WillOnce(Return(QuicConsumedData(0, fin)));
568 stream_->WriteOrBufferData(body, fin, NULL);
quic_stream_sequencer_test.cc 114 frame.fin = true;
123 frame.fin = false;
  /external/chromium_org/net/spdy/
spdy_session.h     [all...]
spdy_session.cc 71 bool fin,
79 dict->SetBoolean("fin", fin);
88 bool fin,
97 dict->SetBoolean("fin", fin);
107 bool fin,
113 dict->SetBoolean("fin", fin);
193 bool fin,
    [all...]
spdy_test_util_common.cc 220 bool fin,
226 bool fin,
229 bool fin,
233 bool fin) OVERRIDE {}
237 bool fin) OVERRIDE {}
    [all...]
spdy_test_util_common.h 521 bool fin);
525 uint32 len, bool fin);
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
mux_client_for_testing.py 295 fin, rsv1, rsv2, rsv3, opcode, payload_length = (
326 if fin:
356 def __init__(self, fin, rsv1, rsv2, rsv3, opcode, payload):
357 self.fin = fin
406 fin = (first_byte << 7) & 1
418 return _InnerFrame(fin, rsv1, rsv2, rsv3, opcode, payload)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInstrumentation.py 480 fin = open(input_path, "r")
481 files = load_model_from_idl(fin.read())
482 fin.close()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
mux.py 303 fin = (bits & 0x80) == 0x80
312 return fin, rsv1, rsv2, rsv3, opcode, payload
733 if not frame.fin:
741 if not frame.fin:
752 if not frame.fin:
781 if not frame.fin:
801 receiving non continuation data opcode but the fin flag of
844 frame = Frame(fin=end, opcode=opcode, payload=payload)
853 first_byte = ((frame.fin << 7) | (frame.rsv1 << 6) |
    [all...]
  /external/clang/test/SemaCXX/
conditional-expr.cpp 33 struct Fin : Mid, Derived {};
137 Fin fin; local
140 (void)(i1 ? Base() : Fin()); // expected-error{{ambiguous conversion from derived class 'Fin' to base class 'Base':}}
141 (void)(i1 ? Fin() : Base()); // expected-error{{ambiguous conversion from derived class 'Fin' to base class 'Base':}}
144 (void)(i1 ? base : fin); // expected-error {{ambiguous conversion from derived class 'Fin' to base class 'Base':}}
145 (void)(i1 ? fin : base); // expected-error {{ambiguous conversion from derived class 'Fin' to base class 'Base':}
    [all...]
  /external/chromium_org/net/tools/flip_server/
spdy_interface.cc 227 bool fin) {
246 bool fin,
280 bool fin,
288 bool fin,
534 // If we chunked this block, and the FIN flag was set, there is more
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
NewWebSocketChannelImpl.cpp 440 void NewWebSocketChannelImpl::didReceiveData(WebSocketHandle* handle, bool fin, WebSocketHandle::MessageType type, const char* data, size_t size)
442 WTF_LOG(Network, "NewWebSocketChannelImpl %p didReceiveData(%p, %d, %d, (%p, %zu))", this, handle, fin, type, data, size);
447 ASSERT(fin || size);
465 if (!fin) {
NewWebSocketChannelImpl.h 138 virtual void didReceiveData(blink::WebSocketHandle*, bool fin, blink::WebSocketHandle::MessageType, const char* data, size_t /* size */) OVERRIDE;
  /external/chromium_org/net/tools/quic/
quic_spdy_server_stream_test.cc 151 bool fin,
154 return QuicConsumedData(data.TotalBufferSize(), fin);
  /external/chromium_org/third_party/opus/src/celt/
kiss_fft.c 609 void opus_fft(const kiss_fft_state *st,const kiss_fft_cpx *fin,kiss_fft_cpx *fout)
621 celt_assert2 (fin != fout, "In-place FFT not supported");
625 fout[st->bitrev[i]] = fin[i];
668 void opus_ifft(const kiss_fft_state *st,const kiss_fft_cpx *fin,kiss_fft_cpx *fout)
679 celt_assert2 (fin != fout, "In-place FFT not supported");
682 fout[st->bitrev[i]] = fin[i];
  /external/libopus/celt/
kiss_fft.c 609 void opus_fft(const kiss_fft_state *st,const kiss_fft_cpx *fin,kiss_fft_cpx *fout)
621 celt_assert2 (fin != fout, "In-place FFT not supported");
625 fout[st->bitrev[i]] = fin[i];
668 void opus_ifft(const kiss_fft_state *st,const kiss_fft_cpx *fin,kiss_fft_cpx *fout)
679 celt_assert2 (fin != fout, "In-place FFT not supported");
682 fout[st->bitrev[i]] = fin[i];
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
mux.py 328 fin = (bits & 0x80) == 0x80
337 return fin, rsv1, rsv2, rsv3, opcode, payload
780 opcode, payload, fin, rsv1, rsv2, rsv3 = Stream._receive_frame(self)
788 return opcode, payload, fin, rsv1, rsv2, rsv3
    [all...]
  /external/chromium_org/net/quic/test_tools/
quic_test_utils.h 355 bool fin,
363 bool fin,
  /external/javassist/src/main/javassist/
CtClassType.java 183 InputStream fin = null; local
185 fin = classPool.openClassfile(getName());
186 if (fin == null)
189 fin = new BufferedInputStream(fin);
190 ClassFile cf = new ClassFile(new DataInputStream(fin));
206 if (fin != null)
208 fin.close();
    [all...]

Completed in 1427 milliseconds

1 2 3 4 5 6 78 91011