Lines Matching refs:tl
17 struct fru_type_length *tl; in __fru_get_board_tl() local
20 tl = bia->tl; in __fru_get_board_tl()
21 while (nr > 0 && !fru_is_eof(tl)) { in __fru_get_board_tl()
22 tl = fru_next_tl(tl); in __fru_get_board_tl()
25 if (fru_is_eof(tl)) in __fru_get_board_tl()
27 return tl; in __fru_get_board_tl()
32 struct fru_type_length *tl; in __fru_alloc_get_tl() local
36 tl = __fru_get_board_tl(header, nr); in __fru_alloc_get_tl()
37 if (!tl) in __fru_alloc_get_tl()
39 len = fru_strlen(tl); in __fru_alloc_get_tl()
40 res = fru_alloc(fru_strlen(tl) + 1); in __fru_alloc_get_tl()
43 return fru_strcpy(res, tl); in __fru_alloc_get_tl()