Searched refs:linebuffer (Results 1 – 3 of 3) sorted by relevance
/external/apache-http/src/org/apache/http/impl/io/ |
D | AbstractSessionInputBuffer.java | 60 private ByteArrayBuffer linebuffer = null; field in AbstractSessionInputBuffer 82 this.linebuffer = new ByteArrayBuffer(buffersize); in init() 168 this.linebuffer.clear(); in readLine() 176 if (this.linebuffer.isEmpty()) { in readLine() 182 this.linebuffer.append(this.buffer, this.bufferpos, len); in readLine() 188 this.linebuffer.append(this.buffer, this.bufferpos, len); in readLine() 196 if (this.maxLineLen > 0 && this.linebuffer.length() >= this.maxLineLen) { in readLine() 200 if (noRead == -1 && this.linebuffer.isEmpty()) { in readLine() 210 int l = this.linebuffer.length(); in lineFromLineBuffer() 212 if (this.linebuffer.byteAt(l - 1) == HTTP.LF) { in lineFromLineBuffer() [all …]
|
/external/srec/srec/test/SRecTestAudio/src/ |
D | SRecTestAudio.c | 1717 LCHAR linebuffer [MAX_LINE_LENGTH]; in srec_test_process_commands() local 1731 got_line_ok = pfgets ( linebuffer, MAX_LINE_LENGTH, command_file ); in srec_test_process_commands() 1734 …srec_test_execute_command ( data, audio_input_handle, linebuffer, results_file, &recognition_count… in srec_test_process_commands() 1992 LCHAR linebuffer [MAX_LINE_LENGTH]; in srec_test_process_nbest_list() local 1999 … esr_status = SR_RecognizerResultGetValue ( data->result, 0, L("conf"), linebuffer, &line_length ); in srec_test_process_nbest_list() 2003 LPRINTF ( L("CONFIDENCE SCORE : '%s'\n"), linebuffer ); in srec_test_process_nbest_list() 2012 … = SR_RecognizerResultGetValue ( data->result, nbest_num, L("literal"), linebuffer, &line_length ); in srec_test_process_nbest_list() 2016 … LPRINTF ( L("LITERAL[%2lu] : '%s'\n"), (unsigned long)nbest_num, linebuffer ); in srec_test_process_nbest_list() 2018 … = SR_RecognizerResultGetValue ( data->result, nbest_num, L("meaning"), linebuffer, &line_length ); in srec_test_process_nbest_list() 2022 linebuffer [0] = L('\0') ; in srec_test_process_nbest_list() [all …]
|
/external/srec/srec/test/SRecTest/src/ |
D | SRecTest.c | 1957 LCHAR linebuffer [MAX_LINE_LENGTH]; in srec_test_process_commands() local 1971 got_line_ok = pfgets ( linebuffer, MAX_LINE_LENGTH, command_file ); in srec_test_process_commands() 1974 … srec_test_execute_command ( data, linebuffer, results_file, &recognition_count ); in srec_test_process_commands() 2299 LCHAR linebuffer [MAX_LINE_LENGTH]; in srec_test_process_nbest_list() local 2314 … = SR_RecognizerResultGetValue ( data->result, nbest_num, L("literal"), linebuffer, &line_length ); in srec_test_process_nbest_list() 2318 LPRINTF ( L("LITERAL[%2lu] : '%s'\n"), (unsigned long)nbest_num, linebuffer ); in srec_test_process_nbest_list() 2320 … = SR_RecognizerResultGetValue ( data->result, nbest_num, L("meaning"), linebuffer, &line_length ); in srec_test_process_nbest_list() 2324 linebuffer [0] = L('\0') ; in srec_test_process_nbest_list() 2326 LPRINTF ( L("MEANING[%2lu] : '%s'\n"), (unsigned long)nbest_num, linebuffer ); in srec_test_process_nbest_list() 2329 …tus = SR_RecognizerResultGetValue (data->result, nbest_num , L("conf"), linebuffer, &line_length ); in srec_test_process_nbest_list() [all …]
|