Searched refs:command_count (Results 1 – 2 of 2) sorted by relevance
66 if ( st->command_count == command_max_count ) write_command(st, false);\67 st->command[st->command_count++] = (byte)(b)957 st->command_count = 4; /* leave room for extension */ in begin_command()968 int count = st->command_count; in write_command()994 st->command_count = 2; /* leave room for extension header */ in write_command()1109 while (length > (count = command_max_count - st->command_count)) { in put_bytes()1110 memcpy(st->command + st->command_count, data, count); in put_bytes()1111 st->command_count += count; in put_bytes()1116 memcpy(st->command + st->command_count, data, length); in put_bytes()1117 st->command_count += length; in put_bytes()
181 int command_count; member