Lines Matching defs:line
192 char *line = NULL;
214 // Record line number of fstab file
216 while ((readn = getline(&line, &allocn, fp)) != -1) {
219 if (line[readn - 1] == '\n') {
220 line[readn - 1] = '\0';
222 p = line;
236 // If one line in fstab file parsed with a failure. just give a warning
238 BEGET_LOGW("Cannot parse file \" %s \" at line %zu. skip it", file, ln);
242 if (line != NULL) {
243 free(line);