Lines Matching refs:line_len
46 static void get_token(char *line, int *curr_pos, int line_len, char *buf,
233 int pos, line_len; in parse_line() local
235 line_len = strlen(line); in parse_line()
238 get_token(line, &pos, line_len, fname, PATH_MAX); in parse_line()
239 get_token(line, &pos, line_len, type, TYPE_SIZE); in parse_line()
240 get_token(line, &pos, line_len, size, MISC_SIZE); in parse_line()
241 get_token(line, &pos, line_len, mode, MISC_SIZE); in parse_line()
242 get_token(line, &pos, line_len, acl, ACL_SIZE); in parse_line()
243 get_token(line, &pos, line_len, mtime, MISC_SIZE); in parse_line()
244 get_token(line, &pos, line_len, uid, MISC_SIZE); in parse_line()
245 get_token(line, &pos, line_len, gid, MISC_SIZE); in parse_line()
255 get_token(line, &pos, line_len, contents, PATH_MAX); in parse_line()
257 get_token(line, &pos, line_len, devnode, PATH_MAX); in parse_line()
259 get_token(line, &pos, line_len, dest, PATH_MAX); in parse_line()
263 get_token(char *line, int *curr_pos, int line_len, char *buf, int buf_size) in get_token() argument
267 while (isspace(line[*curr_pos]) && (*curr_pos < line_len)) in get_token()
271 (*curr_pos < line_len) && (cnt < (buf_size-1))) { in get_token()
285 int line_len, pos; in extract_fname_ftype() local
288 line_len = strlen(line); in extract_fname_ftype()
290 get_token(line, &pos, line_len, fname, PATH_MAX); in extract_fname_ftype()
291 get_token(line, &pos, line_len, type, TYPE_SIZE); in extract_fname_ftype()