Searched refs:fin (Results 26 - 50 of 132) sorted by relevance

123456

/external/javassist/sample/evolve/
H A DDemoServer.java90 FileInputStream fin
95 int len = fin.read(buf);
/external/chromium_org/net/quic/
H A Dquic_spdy_decompressor.cc28 bool fin) OVERRIDE {}
32 bool fin) OVERRIDE {}
40 bool fin,
42 virtual void OnSynReply(SpdyStreamId stream_id, bool fin) OVERRIDE {}
51 virtual void OnHeaders(SpdyStreamId stream_id, bool fin) OVERRIDE {}
H A Dreliable_quic_stream.h123 // indicating if the fin bit was consumed. This does not indicate the data
127 // The default implementation always consumed all bytes and any fin, but
130 virtual QuicConsumedData WriteData(base::StringPiece data, bool fin);
146 QuicConsumedData WriteOrBuffer(base::StringPiece data, bool fin);
150 QuicConsumedData WriteDataInternal(base::StringPiece data, bool fin);
H A Dquic_packet_generator.cc72 bool fin) {
82 id, data, offset + total_bytes_consumed, fin, &frame);
87 fin_consumed = fin && bytes_consumed == data.size();
99 // if we're simply writing a fin.
69 ConsumeData(QuicStreamId id, StringPiece data, QuicStreamOffset offset, bool fin) argument
H A Dquic_packet_generator.h96 bool fin);
/external/srec/tools/parseStringTest/
H A DparseStringTest.c50 ESR_ReturnCode process_single_key_line(SR_Grammar* grammar, PFile* fin, PFile* fout);
51 ESR_ReturnCode process_multi_key_line(SR_Grammar* grammar, const LCHAR* rootrule, PFile* fin, PFile* fout);
283 PFile *fin = NULL, *fout = NULL; local
293 fin = PSTDIN;
360 fin = PSTDIN;
362 else if ((fin = pfopen(infilename, "r")) == NULL)
370 if (pfgets(trans, MAX_LINE_LENGTH, fin) == NULL)
372 if (!pfeof(fin))
391 if ((fin = pfopen(inRTfilename, "r")) == NULL)
403 if (0) rc = process_single_key_line(grammar, fin, fou
448 process_single_key_line(SR_Grammar* grammar, PFile* fin, PFile* fout) argument
536 process_multi_key_line(SR_Grammar* grammar, const LCHAR* rootrule, PFile* fin, PFile* fout) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_pwd.c281 goto fin;
287 goto fin;
301 goto fin;
307 goto fin;
314 goto fin;
326 goto fin;
341 goto fin;
350 goto fin;
355 goto fin;
368 goto fin;
[all...]
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_pwd.c281 goto fin;
287 goto fin;
301 goto fin;
307 goto fin;
314 goto fin;
326 goto fin;
341 goto fin;
350 goto fin;
355 goto fin;
368 goto fin;
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_pwd.c281 goto fin;
287 goto fin;
301 goto fin;
307 goto fin;
314 goto fin;
326 goto fin;
341 goto fin;
350 goto fin;
355 goto fin;
368 goto fin;
[all...]
/external/chromium_org/third_party/opus/src/src/
H A Dopus_demo.c199 FILE *fin, *fout; local
454 fin = fopen(inFile, "rb");
455 if (!fin)
463 fseek(fin, 0, SEEK_END);
464 size = ftell(fin);
466 fseek(fin, 0, SEEK_SET);
476 fclose(fin);
486 fclose(fin);
509 fclose(fin);
592 err = fread(ch, 1, 4, fin);
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_websocket_test_util.cc121 bool fin) {
125 SetHeader("fin", fin ? "1" : "0", headers.get());
139 bool fin) {
147 fin ? DATA_FLAG_FIN : DATA_FLAG_NONE);
118 ConstructSpdyWebSocketHeadersFrame( int stream_id, const char* length, bool fin) argument
135 ConstructSpdyWebSocketDataFrame( const char* data, int len, SpdyStreamId stream_id, bool fin) argument
H A Dbuffered_spdy_framer_unittest.cc43 bool fin,
53 bool fin,
62 bool fin,
73 bool fin) OVERRIDE {
/external/chromium_org/net/tools/quic/
H A Dquic_reliable_server_stream.h45 virtual QuicConsumedData WriteData(base::StringPiece data, bool fin) OVERRIDE;
/external/libyuv/files/source/
H A Dcpu_id.cc105 FILE* fin = fopen(cpuinfo_name, "r"); local
106 if (fin) {
108 while (fgets(buf, 511, fin)) {
118 fclose(fin);
/external/javassist/src/main/javassist/
H A DClassPoolTail.java285 InputStream fin = openClassfile(classname);
286 if (fin == null)
290 copyStream(fin, out);
293 fin.close();
307 InputStream fin = openClassfile(classname);
309 fin.close();
384 public static byte[] readStream(InputStream fin) throws IOException { argument
393 len = fin.read(bufs[i], size, bufsize - size);
419 public static void copyStream(InputStream fin, OutputStream fout) argument
428 len = fin
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_pwd.c206 goto fin;
220 goto fin;
227 goto fin;
235 goto fin;
242 goto fin;
249 goto fin;
271 goto fin;
278 fin:
310 goto fin;
319 goto fin;
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_pwd.c206 goto fin;
220 goto fin;
227 goto fin;
235 goto fin;
242 goto fin;
249 goto fin;
271 goto fin;
278 fin:
310 goto fin;
319 goto fin;
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_pwd.c206 goto fin;
220 goto fin;
227 goto fin;
235 goto fin;
242 goto fin;
249 goto fin;
271 goto fin;
278 fin:
310 goto fin;
319 goto fin;
[all...]
/external/javassist/src/main/javassist/tools/web/
H A DWebserver.java274 FileInputStream fin = new FileInputStream(file);
277 len = fin.read(filebuffer);
284 fin.close();
292 InputStream fin
294 if (fin != null) {
298 len = fin.read(filebuffer);
308 fin.close();
H A DViewer.java189 private byte[] readStream(InputStream fin) throws IOException { argument
201 len = fin.read(buf, size, buf.length - size);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DAC3TrackImpl.java41 public AC3TrackImpl(InputStream fin, String lang) throws IOException { argument
43 parse(fin);
46 public AC3TrackImpl(InputStream fin) throws IOException { argument
47 parse(fin);
50 private void parse(InputStream fin) throws IOException { argument
51 inputStream = fin;
H A DEC3TrackImpl.java40 public EC3TrackImpl(InputStream fin, String lang) throws IOException { argument
42 parse(fin);
45 public EC3TrackImpl(InputStream fin) throws IOException { argument
46 parse(fin);
49 private void parse(InputStream fin) throws IOException { argument
50 inputStream = new BufferedInputStream(fin);
/external/chromium_org/net/websockets/
H A Dwebsocket_channel.h60 // connection will be closed without sending. |fin| indicates the last frame
66 void SendFrame(bool fin,
177 // when the current write finishes. |fin| and |op_code| are defined as for
180 void SendIOBufferWithSize(bool fin,
/external/chromium_org/net/tools/flip_server/
H A Dspdy_interface.h68 bool fin,
74 bool fin,
79 bool fin,
91 bool fin) OVERRIDE;
/external/doclava/src/com/google/doclava/apicheck/
H A DApiFile.java119 boolean fin = false;
142 fin = true;
169 fin, false/*isIncluded*/, name, qname, null/*qualifiedTypeName*/, false/*isPrimitive*/);
279 boolean fin = false;
302 fin = true;
323 name, null/*signature*/, cl, cl, pub, prot, pkgpriv, false/*isPrivate*/, fin,
352 boolean fin = false;
376 fin = true;
411 field = new FieldInfo(name, cl, cl, pub, prot, pkgpriv, false/*isPrivate*/, fin, stat,

Completed in 1133 milliseconds

123456