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