/external/qemu/telephony/ |
modem_driver.c | 35 int in_pos; member in struct:__anon25689 53 int ret = sizeof(md->in_buff) - md->in_pos; 87 md->in_buff[ md->in_pos ] = c; 88 md->in_pos++; 96 if (md->in_pos == 0) /* skip empty lines */ 99 md->in_buff[ md->in_pos ] = 0; 100 md->in_pos = 0; 118 md->in_buff[ md->in_pos++ ] = c; 119 if (md->in_pos == sizeof(md->in_buff)) { 121 md->in_pos = 0 [all...] |
simulator.c | 26 int in_pos; member in struct:__anon25700 99 ret = sys_channel_read( client->channel, client->in_buff + client->in_pos, 1 ); 105 if (client->in_buff[client->in_pos] == '\r' || 106 client->in_buff[client->in_pos] == '\n' ) { 108 client->in_buff[client->in_pos] = 0; 110 if (client->in_pos > 0) { 112 client->in_pos = 0; 115 client->in_pos += 1;
|
test2.c | 42 int in_pos; member in struct:__anon25707 111 ret = sys_channel_read( client->channel, client->in_buff + client->in_pos, 1 ); 117 if (client->in_buff[client->in_pos] == '\r' || 118 client->in_buff[client->in_pos] == '\n' ) { 120 client->in_buff[client->in_pos] = 0; 127 client->in_pos = 0; 129 client->in_pos += 1;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/ |
nvc0_program.h | 47 uint8_t in_pos[PIPE_MAX_SHADER_INPUTS]; member in struct:nvc0_program::__anon12689
|
/external/harfbuzz/src/ |
harfbuzz-buffer.h | 70 HB_UInt in_pos; member in struct:HB_BufferRec_
|
/external/harfbuzz_ng/src/hb-old/ |
harfbuzz-buffer.h | 70 HB_UInt in_pos; member in struct:HB_BufferRec_
|
/external/mesa3d/src/gallium/drivers/nvc0/ |
nvc0_program.h | 47 uint8_t in_pos[PIPE_MAX_SHADER_INPUTS]; member in struct:nvc0_program::__anon23156
|
/external/wpa_supplicant_8/src/tls/ |
tlsv1_client.c | 145 u8 *msg = NULL, *in_msg = NULL, *in_pos, *in_end, alert, ct; local 213 in_pos = in_msg; 218 while (in_pos < in_end) { 219 in_msg_len = in_end - in_pos; 220 if (tlsv1_client_process_handshake(conn, ct, in_pos, 225 in_pos += in_msg_len;
|
tlsv1_server.c | 112 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; local 147 in_pos = in_msg; 152 while (in_pos < in_end) { 153 in_msg_len = in_end - in_pos; 154 if (tlsv1_server_process_handshake(conn, ct, in_pos, 157 in_pos += in_msg_len;
|
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
fulltext.c | 398 int in_pos = readPosition(&m->in); local 400 while( block_pos!=-1 || in_pos!=-1 ){ 401 if( block_pos-m->iOffset==in_pos ){ 407 docListAddPos(m->pOut, in_pos); 410 in_pos = readPosition(&m->in); 411 } else if( in_pos==-1 || (block_pos!=-1 && block_pos-m->iOffset<in_pos) ){ 414 in_pos = readPosition(&m->in); [all...] |