HomeSort by relevance Sort by last modified time
    Searched defs:in_buff (Results 1 - 5 of 5) sorted by null

  /external/qemu/telephony/
modem_driver.c 34 char in_buff[ 1024 ]; member in struct:__anon33947
53 int ret = sizeof(md->in_buff) - md->in_pos;
87 md->in_buff[ md->in_pos ] = c;
99 md->in_buff[ md->in_pos ] = 0;
102 D( "%s: << %s\n", __FUNCTION__, md->in_buff );
103 answer = amodem_send(android_modem, md->in_buff);
118 md->in_buff[ md->in_pos++ ] = c;
119 if (md->in_pos == sizeof(md->in_buff)) {
simulator.c 25 char in_buff[ 128 ]; member in struct:__anon33958
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' ) {
107 const char* cmd = client->in_buff;
108 client->in_buff[client->in_pos] = 0;
test2.c 41 char in_buff[ 128 ]; member in struct:__anon33965
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' ) {
119 const char* cmd = client->in_buff;
120 client->in_buff[client->in_pos] = 0;
  /system/core/adb/
jdwp_service.c 112 char in_buff[4]; /* input character to read PID */ member in struct:JdwpProcess
242 char* p = proc->in_buff + proc->in_len;
267 memcpy(temp, proc->in_buff, 4);
  /external/qemu/hw/android/goldfish/
audio.c 110 struct goldfish_audio_buff in_buff[1]; member in struct:goldfish_audio_state
265 goldfish_audio_buff_put (s->in_buff, f);
281 goldfish_audio_buff_get (s->in_buff, f, version_id);
308 goldfish_audio_buff_reset( s->in_buff );
317 goldfish_audio_buff_set_length( s->in_buff, count );
418 goldfish_audio_buff_write( s->in_buff );
479 goldfish_audio_buff_set_address( s->in_buff, val );
492 goldfish_audio_buff_set_address_high( s->in_buff, val );
555 if (goldfish_audio_buff_available( s->in_buff ) == 0 )
559 int read = goldfish_audio_buff_recv( s->in_buff, avail, s )
    [all...]

Completed in 1016 milliseconds