Lines Matching refs:read_pos
134 int read_pos; member
151 kcs->read_pos = 0; in init_kcs_data()
221 if (kcs->read_pos >= MAX_KCS_READ_SIZE) { in read_next_byte()
226 kcs->read_data[kcs->read_pos] = read_data(kcs); in read_next_byte()
227 (kcs->read_pos)++; in read_next_byte()
274 kcs->read_pos = 0; in restart_kcs_transaction()
305 kcs->read_pos = 0; in start_kcs_transaction()
315 if (length < kcs->read_pos) { in get_kcs_result()
316 kcs->read_pos = length; in get_kcs_result()
320 memcpy(data, kcs->read_data, kcs->read_pos); in get_kcs_result()
322 if ((length >= 3) && (kcs->read_pos < 3)) { in get_kcs_result()
326 kcs->read_pos = 3; in get_kcs_result()
338 return kcs->read_pos; in get_kcs_result()