Lines Matching defs:to

17  *  along with this program; if not, write to the Free Software
22 * Use is subject to license terms.
159 /* reorder to correct direction!! */
232 equal to NUM_HISTORY, return NULL. Otherwise return a valid string. */
242 /* Add CMDLINE to the history buffer. */
269 first part of a command-line when it is too long to be fit in the
273 position 78 (zero-origin), to inform the user of the hidden
286 section is switched to another section, only if the cursor is put
349 /* If the cursor goes outside, scroll the screen to the right. */
390 /* From the start to the end. */
411 /* Compute the index to start writing BUF and the resulting position
467 /* Back to XPOS. */
487 /* Insert STR to BUF. */
552 /* POS points to the first space after a command. */
586 /* Copy this word to COMPLETION_BUFFER and do the
616 case 1: /* C-a go to beginning of line */
619 case 5: /* C-e go to end of line */
630 case 21: /* C-u kill to beginning of line */
633 /* Copy the string being deleted to KILL_BUF. */
645 case 11: /* C-k kill to end of line */
648 /* Copy the string being deleted to KILL_BUF. */
748 /* Copy the working buffer to CMDLINE. */
776 /* Because it is hard to deal with different conditions simultaneously,
823 /* Complicated features are left to real_get_cmdline. */
964 * print to a buffer, unless verbose mode is on
1062 strategy to determine what should be defined and what shouldn't be
1063 defined for each image. For example, it would be better to create
1065 each image with the library. Complicated things should be left to
1068 /* Make some grub_str* routines available to ZFS plug-in as well */
1153 /* It's important to disable the feature temporarily, because
1161 grub_printf ("[Hit return to continue]");
1173 /* Restart to count lines. */
1201 /* If the terminal is dumb, there is no way to clean the terminal. */
1353 grub_memmove (void *to, const void *from, int len)
1355 if (memcheck ((int) to, len))
1362 if (to < from)
1368 : "0" (len),"1" (from),"2" (to)
1380 "2" (len - 1 + (char *) to)
1383 return to;
1414 /* GCC emits references to memcpy() for struct copies etc. */