Searched defs:line (Results 1 - 8 of 8) sorted by relevance

/scripts/kconfig/lxdialog/
H A Dtextbox.c154 case 'K': /* Previous line */
168 wscrl(box, -1); /* Scroll box region down one line */
174 /* print first line of page */
200 case 'J': /* Next line */
206 scroll(box); /* Scroll box region up one line */
224 case '0': /* Beginning of line */
269 * 'page' will be updated to point to the desired line in 'buf'.
319 * Print a new line of text. Called by dialog_textbox() and print_page().
324 char *line; local
326 line
353 static char line[MAX_LEN + 1]; local
[all...]
/scripts/rt-tester/
H A Drt-tester.py136 line = fd.readline() variable
137 if not len(line):
140 line = line.strip() variable
141 parts = line.split(":")
151 progress(line)
157 progress(line)
193 sys.stderr.write("Test failed in line %d\n" %(linenr))
211 sys.stderr.write("\nSyntax error in line %d\n" %(linenr))
/scripts/kconfig/
H A Dconf.c44 static char line[128]; variable
91 line[0] = '\n';
92 line[1] = 0;
96 line[0] = '\n';
97 line[1] = 0;
111 xfgets(line, 128, stdin);
126 printf("%s", line);
143 switch (line[0]) {
148 if (line[1] == '\n') {
154 line[strle
[all...]
H A Dnconf.gui.c203 int get_line_length(const char *line) argument
206 while (*line != '\0' && *line != '\n') {
207 line++;
221 /* do not go over end of line */
225 const char *line = get_line(text, i); local
226 int len = get_line_length(line);
227 strncpy(tmp, line, min(len, x));
268 /* find the widest line of msg: */
271 const char *line local
375 const char *line = get_line(prompt, i); local
527 const char *line = get_line(text, i); local
[all...]
H A Dconfdata.c185 char line[1024]; local
246 while (fgets(line, sizeof(line), in)) {
249 if (line[0] == '#') {
250 if (memcmp(line + 2, CONFIG_, strlen(CONFIG_)))
252 p = strchr(line + 2 + strlen(CONFIG_), ' ');
259 sym = sym_find(line + 2 + strlen(CONFIG_));
265 sym = sym_lookup(line + 2 + strlen(CONFIG_), 0);
281 } else if (memcmp(line, CONFIG_, strlen(CONFIG_)) == 0) {
282 p = strchr(line
[all...]
/scripts/
H A Ddocproc.c61 typedef void FILELINE(char * file, char * line);
182 static void adddep2(char * file, char * line) { line = line; adddep(file); } argument
183 static void noaction(char * line) { line = line; } argument
184 static void noaction2(char * file, char * line) { file = file; line = line; } argument
187 printline(char * line) argument
198 char line[MAXLINESZ]; local
291 singfunc(char * filename, char * line) argument
327 docsect(char *filename, char *line) argument
442 char line[MAXLINESZ]; local
[all...]
/scripts/mod/
H A Dsumversion.c303 /* We have dir/file.o. Open dir/.file.o.cmd, look for source_ and deps_ line
307 char *cmd, *file, *line, *dir; local
333 /* There will be a line like so:
341 while ((line = get_next_line(&pos, file, flen)) != NULL) {
342 char* p = line;
344 if (strncmp(line, "source_", sizeof("source_")-1) == 0) {
345 p = strrchr(line, ' ');
347 warn("malformed line: %s\n", line);
358 if (strncmp(line, "deps
[all...]
H A Dmodpost.c357 * Return a copy of the next line in a mmap'ed file.
358 * spaces in the beginning of the line is trimmed away.
363 static char line[4096]; local
367 char *s = line;
383 return line;
820 ".GCC-command-line", /* mn10300 */
2003 /* parse Module.symvers file. line format:
2010 char *line; local
2016 while ((line = get_next_line(&pos, file, size))) {
2022 if (!(symname = strchr(line, '\
[all...]

Completed in 83 milliseconds