Lines Matching refs:line
57 char* line = strtok(buffer, "\n"); in uiPrint() local
59 while (line) { in uiPrint()
60 fprintf(ui->cmd_pipe, "ui_print %s\n", line); in uiPrint()
61 line = strtok(NULL, "\n"); in uiPrint()
987 char* line = strtok(buffer, "\n"); in FileGetPropFn() local
990 while (*line && isspace(*line)) ++line; in FileGetPropFn()
993 if (*line == '\0' || *line == '#') continue; in FileGetPropFn()
995 char* equal = strchr(line, '='); in FileGetPropFn()
1002 while (key_end > line && isspace(*key_end)) --key_end; in FileGetPropFn()
1006 if (strcmp(key, line) != 0) continue; in FileGetPropFn()
1020 } while ((line = strtok(NULL, "\n"))); in FileGetPropFn()