Home
last modified time | relevance | path

Searched refs:line (Results 1 – 25 of 1461) sorted by path

12345678910>>...59

/illumos-gate/exception_lists/
H A Dinterface_cmp250 # 6689937 libresolv2's mapfile-vers needs updating to line up
/illumos-gate/usr/src/boot/
H A DREADME.loader81 The top line causes the splash_bmp module to get loaded.
82 The second line has the parameter "-t" which tells the
95 Then, edit /boot/loader.conf so that the following line
96 shows up (overwriting, in effect, a similar line in
101 My own pnp line looks like:
/illumos-gate/usr/src/boot/common/
H A Dbootstrap.h58 int bf_run(char *line);
H A Dcommands.c67 char line[81], *cp, *ep; in help_getnext() local
75 if (strlen(line) < 3 || line[0] != '#' || line[1] != ' ') in help_getnext()
79 cp = line + 2; in help_getnext()
452 char line[80]; in command_more() local
457 snprintf(line, sizeof (line), "*** FILE %s BEGIN ***\n", in command_more()
459 if (pager_output(line)) in command_more()
463 snprintf(line, sizeof (line), "*** FILE %s END ***\n", in command_more()
465 res = pager_output(line); in command_more()
500 char line[80]; in command_lsdev() local
525 snprintf(line, sizeof (line), "%s: (unknown)\n", in command_lsdev()
[all …]
H A Ddisk.c111 char line[80]; in ptable_print() local
120 snprintf(line, sizeof (line), " %s%s: %s", pa->prefix, pname, in ptable_print()
122 if (pager_output(line)) in ptable_print()
127 if (strlen(line) < 24) in ptable_print()
130 snprintf(line, sizeof (line), "\t%s", in ptable_print()
132 if (pager_output(line)) in ptable_print()
147 snprintf(line, sizeof (line), " %s%s", in ptable_print()
150 bsd.prefix = line; in ptable_print()
H A Dhelp.common82 most useful in conjunction with scripts and the '@' line prefix.
338 The read command reads a line of input from the terminal. If the
H A Dinterp.c188 int line; member
202 int prevsrcid, fd, line; in include() local
214 line = 0; in include()
217 line++; in include()
235 filename, line); in include()
240 sp->line = line; in include()
266 filename, sp->line, sp->text); in include()
H A Dinterp_forth.c74 char *name, *line, *tail, *cp; in bf_command() local
110 strcpy(line, name); in bf_command()
118 strcat(line, " "); in bf_command()
119 strncat(line, cp, len); in bf_command()
131 strcpy(line, name); in bf_command()
133 strcat(line, " "); in bf_command()
134 strncat(line, tail, len); in bf_command()
138 DPRINTF("cmd '%s'", line); in bf_command()
142 if (!parse(&argc, &argv, line)) { in bf_command()
158 free(line); in bf_command()
[all …]
H A Dmisc.c178 caddr_t line; in hexdump() local
184 for (line = region; line < (region + len); line += 16) { in hexdump()
185 emit("%08lx ", (long) line); in hexdump()
188 if ((line + x) < (region + len)) { in hexdump()
189 emit("%02x ", *(u_int8_t *)(line + x)); in hexdump()
198 if ((line + x) < (region + len)) { in hexdump()
199 c = *(u_int8_t *)(line + x); in hexdump()
H A Dmultiboot2.c588 char **line) in mb_kernel_cmdline() argument
655 *line = update_cmdline(cmdline, mb2); in mb_kernel_cmdline()
H A Dvdisk.c374 char line[80]; in vdisk_print() local
391 snprintf(line, sizeof (line), in vdisk_print()
393 printf("%s: %" PRIu64 " X %u blocks", line, in vdisk_print()
406 ret = disk_print(&vd_dev, line, verbose); in vdisk_print()
/illumos-gate/usr/src/boot/common/linenoise/
H A DREADME.markdown6 * Single and multi line editing mode with the usual key bindings implemented.
12 ## Can a line editing library be 20k lines of code?
14line utilities. Instead of retyping almost the same stuff again and again it's just much better to…
18 …* Large programs with configure scripts disabling line editing if readline is not present in the s…
19 …* Smaller programs not using a configure script not supporting line editing at all (A problem we h…
21 The result is a pollution of binaries without line editing support.
23line editing library to be 20k lines of code? Apparently not, it is possibe to get a very small, z…
H A Dexample.c15 char *line; in main() local
48 while((line = linenoise("hello> ")) != NULL) { in main()
50 if (line[0] != '\0' && line[0] != '/') { in main()
51 printf("echo: '%s'\n", line); in main()
52 linenoiseHistoryAdd(line); /* Add to the history. */ in main()
54 } else if (!strncmp(line,"/historylen",11)) { in main()
56 int len = atoi(line+11); in main()
58 } else if (line[0] == '/') { in main()
59 printf("Unreconized command: %s\n", line); in main()
61 free(line); in main()
H A Dlinenoise.c796 int linenoiseHistoryAdd(const char *line) { in linenoiseHistoryAdd() argument
809 if (history_len && !strcmp(history[history_len-1], line)) return 0; in linenoiseHistoryAdd()
813 linecopy = strdup(line); in linenoiseHistoryAdd()
H A Dlinenoise.h56 int linenoiseHistoryAdd(const char *line);
/illumos-gate/usr/src/boot/efi/libefi/
H A Defipart.c772 char line[80]; in efipart_print_common() local
792 snprintf(line, sizeof (line), in efipart_print_common()
794 printf("%s:", line); in efipart_print_common()
825 ret = disk_print(&pd_dev, line, verbose); in efipart_print_common()
/illumos-gate/usr/src/boot/efi/loader/
H A Dframebuffer.c138 efifb_uga_find_pixel(EFI_UGA_DRAW_PROTOCOL *uga, uint_t line, in efifb_uga_find_pixel() argument
149 0, line, 0, 0, 1, 1, 0); in efifb_uga_find_pixel()
178 0, 0, 0, line, 1, 1, 0); in efifb_uga_find_pixel()
191 0, 0, 0, line, 1, 1, 0); in efifb_uga_find_pixel()
H A Dmain.c1050 char line[80]; in command_memmap() local
1066 snprintf(line, 80, "%23s %12s %12s %8s %4s\n", in command_memmap()
1069 rv = pager_output(line); in command_memmap()
1077 snprintf(line, 80, "%23s %012jx %012jx %08jx ", in command_memmap()
1080 rv = pager_output(line); in command_memmap()
/illumos-gate/usr/src/boot/forth/
H A Dbeadm.4th16 \ and switching Boot Environments (BE) from command line and
22 also line-reading definitions also builtins definitions
135 read_line \ skip over next line
274 \ for get_arguments reading the rest of the line and parsing it
427 read_line \ read title line
437 read_line \ read value line
H A Dcheck-password.4th112 10 emit \ Echo new line
H A Ddelay.4th106 \ if we were throwing up dots, throw up a line-break
H A Dframes.4th72 : hline ( len x y -- ) \ Draw horizontal single line
112 : vline ( len x y -- ) \ Draw vertical single line
134 vline \ Draw left vert line
136 vline \ Draw right vert line
138 hline \ Draw top horiz line
140 hline \ Draw bottom horiz line
H A Dloader.4th76 \ note the command line switched for boot command will cause
553 \ line, if interpreted, or given on the stack, if compiled in.
H A Dpcibios.4th38 \ for get_arguments reading the rest of the line and parsing it
H A Dsupport.4th34 \ print_line ( -- ) print last line processed
421 \ Line by line file reading functions
430 vocabulary line-reading
431 also line-reading definitions
438 \ File's line reading function
542 \ Conf file line parser:
551 \ bootenv line parser:
579 \ classifiers for various character classes in the input line
624 \ manipulation of input line
816 \ Process line
[all …]

12345678910>>...59