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

1 2 3 4 5 6 7 891011

  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
CheckClassAdapter.java 473 int fin = (access & Opcodes.ACC_FINAL) == 0 ? 0 : 1; local
475 if (fin + abs > 1) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
work_unit.py 175 fin, fout = os.popen2( 'nm %s' % libname )
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
SpdyConnectionTest.java 514 MockSpdyPeer.InFrame fin = peer.takeFrame();
515 assertEquals(TYPE_DATA, fin.type);
516 assertTrue(fin.inFinished);
641 MockSpdyPeer.InFrame fin = peer.takeFrame();
642 assertEquals(TYPE_DATA, fin.type);
643 assertTrue(fin.inFinished);
644 assertFalse(fin.outFinished);
    [all...]
  /external/chromium_org/net/quic/
quic_packet_creator_test.cc 92 bool fin) {
99 EXPECT_EQ(fin, frame.stream_frame->fin);
795 // Ensure that if CreateStreamFrame does not consume any data (e.g. a FIN only
802 bool fin = true;
804 1u, empty_iovector, 0u, fin, &notifier, &frame);
    [all...]
quic_protocol.h 363 // We got two fin or reset offsets which did not match.
396 // There were data frames after the a fin or reset.
467 // We received a STREAM_FRAME with no data and no fin flag set.
608 bool fin,
620 bool fin; member in struct:net::QuicStreamFrame
776 // FIN) or through a RST.
    [all...]
quic_connection.h 240 // indicating if the fin bit was consumed. This does not indicate the data
252 bool fin,
quic_framer_test.cc     [all...]
quic_connection_test.cc 461 bool fin,
463 return SendStreamDataWithStringHelper(id, data, offset, fin,
471 bool fin,
473 return SendStreamDataWithStringHelper(id, data, offset, fin,
481 bool fin,
488 return QuicConnection::SendStreamData(id, data_iov, offset, fin,
789 bool fin,
794 connection_.SendStreamDataWithString(id, data, offset, fin, NULL);
    [all...]
quic_connection.cc     [all...]
quic_framer.cc 89 // Fin bit may be set or not.
    [all...]
  /external/webrtc/src/modules/audio_processing/ns/
ns_core.c 735 float fin[BLOCKL_MAX], fout[BLOCKL_MAX]; local
780 fin[i] = (float)speechFrame[i];
785 memcpy(inst->dataBuf + inst->anaLen - inst->blockLen10ms, fin,
791 fin[i] = (float)speechFrameHB[i];
796 memcpy(inst->dataBufHB + inst->anaLen - inst->blockLen10ms, fin,
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsHelper.java 173 FileInputStream fin = null; local
175 fin = new FileInputStream(path);
176 byte[] data = readFully(fin);
184 if (fin != null) {
186 fin.close();
    [all...]
  /external/android-clat/
dump.c 188 printf("urg = %x ack = %x psh = %x rst = %x syn = %x fin = %x\n",
189 tcp->urg, tcp->ack, tcp->psh, tcp->rst, tcp->syn, tcp->fin);
  /external/chromium_org/net/spdy/
spdy_protocol.h 563 // Abstract class intended to be inherited by IRs that have the option of a FIN
568 bool fin() const { return fin_; } function in class:net::SpdyFrameWithFinIR
569 void set_fin(bool fin) { fin_ = fin; }
    [all...]
spdy_framer_test.cc 88 bool fin) OVERRIDE {
94 bool fin) OVERRIDE {
117 bool fin,
124 syn_stream.set_fin(fin);
132 virtual void OnSynReply(SpdyStreamId stream_id, bool fin) OVERRIDE {
136 headers.set_fin(fin);
162 bool fin,
167 headers.set_fin(fin);
274 bool fin) OVERRIDE {
282 bool fin) OVERRIDE
    [all...]
spdy_framer.cc     [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vertex_generic.c 1047 GLfloat fin[4], fout[4], fdst[4]; local
1049 a[j].extract( &a[j], fin, vin + a[j].vertoffset );
1052 INTERP_4F(t, fdst, fout, fin);
  /external/iproute2/ip/
ipxfrm.c 528 goto fin;
537 goto fin;
547 fin:
  /external/mesa3d/src/mesa/tnl/
t_vertex_generic.c 1047 GLfloat fin[4], fout[4], fdst[4]; local
1049 a[j].extract( &a[j], fin, vin + a[j].vertoffset );
1052 INTERP_4F(t, fdst, fout, fin);
  /frameworks/base/libs/androidfw/
AssetManager.cpp 769 FILE* fin = fopen(pathOverlaysList, "r"); local
770 if (fin == NULL) {
775 while (fgets(buf, sizeof(buf), fin)) {
803 fclose(fin);
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_mux.py 90 opcode, payload, fin, rsv1, rsv2, rsv3 = (
102 if not fin:
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicColorMatrix.cpp 784 uint32_t vsin, uint32_t vsout, bool fin, bool fout) {
787 if (fin) {
  /ndk/build/tools/
prebuilt-common.sh 385 local opt optname otype value name fin funcname
    [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 246 std::ifstream fin("gcsuspects");
249 while (fin >> s) gc_suspects.insert(s);
    [all...]
  /external/libpcap/
scanner.l 380 tcp-fin { yylval.i = 0x01; return NUM; }

Completed in 715 milliseconds

1 2 3 4 5 6 7 891011