Lines Matching full:tuple
49 static struct tuple *find_tuple_in_list(struct tuple_list *, unsigned char);
55 {"Null tuple", CIS_NULL, 0},
124 struct tuple *tp; in freecis()
177 * - If a CIS_END is the first tuple, look for
178 * a tuple list at common memory offset 0; this list
180 * - If a long link tuple was encountered, execute the long
182 * - If a no-link tuple was seen, terminate processing.
183 * - If no no-link tuple exists, and no long link tuple
184 * exists while processing the primary tuple list,
185 * then look for a LINKTARGET tuple in common memory.
186 * - If a long link tuple is found in any list, then process
195 struct tuple *tp; in read_tuples()
220 * If a link was found, it looks sane read the tuple list from it. in read_tuples()
230 * If the primary list had no NOLINK tuple, and no LINKTARGET, then try in read_tuples()
231 * to read a tuple list at common memory (offset 0). in read_tuples()
245 * Read one tuple list from the card.
250 struct tuple *tp, *last_tp = 0; in read_one_tuplelist()
285 printf("Tuple code = 0x%x, len = %d\n", code, length); in read_one_tuplelist()
302 * Check the tuple, and ignore it if it isn't in the table in read_one_tuplelist()
330 * return true if the offset points to a LINKTARGET tuple.
355 * find_tuple_in_list - find a tuple within a
356 * single tuple list.
358 static struct tuple *
361 struct tuple *tp; in find_tuple_in_list()