ch 109 bsp/boot/common/string.c memset(void *dest, int ch, size_t count) ch 114 bsp/boot/common/string.c *p++ = (char)ch; ch 96 bsp/drv/arm/gba/lcd.c lcd_putc(void *aux, int row, int col, int ch) ch 100 bsp/drv/arm/gba/lcd.c sc->vram[row * VSCR_COLS + col] = ch; ch 151 bsp/drv/dev/video/vga.c vga_putc(void *aux, int row, int col, int ch) ch 155 bsp/drv/dev/video/vga.c sc->vram[row * sc->cols + col] = ch | (sc->attr << 8); ch 39 bsp/drv/include/cons.h void (*cnputc)(device_t dev, int ch); /* kernel putchar */ ch 95 bsp/drv/include/ddi.h void *memset(void *dest, int ch, size_t count); ch 40 bsp/drv/include/wscons.h void (*putc) (void *aux, int row, int col, int ch); ch 111 bsp/drv/lib/string.c memset(void *dest, int ch, size_t count) ch 118 bsp/drv/lib/string.c *p++ = (char)ch; ch 103 sys/lib/string.c memset(void *dest, int ch, size_t count) ch 110 sys/lib/string.c *p++ = (char)ch; ch 58 usr/bin/cat/cat.c int ch, fd; ch 60 usr/bin/cat/cat.c while ((ch = getopt(argc, argv, "")) != -1) ch 61 usr/bin/cat/cat.c switch(ch) { ch 59 usr/bin/cp/cp.c int r, ch, checkch, i, iflag = 0; ch 63 usr/bin/cp/cp.c while ((ch = getopt(argc, argv, "")) != -1) ch 64 usr/bin/cp/cp.c switch(ch) { ch 100 usr/bin/cp/cp.c checkch = ch = getchar(); ch 101 usr/bin/cp/cp.c while (ch != '\n' && ch != EOF) ch 102 usr/bin/cp/cp.c ch = getchar(); ch 58 usr/bin/head/head.c int ch; ch 64 usr/bin/head/head.c while ((ch = getopt(argc, argv, "n:")) != EOF) ch 65 usr/bin/head/head.c switch(ch) { ch 100 usr/bin/head/head.c int ch; ch 103 usr/bin/head/head.c while ((ch = getc(fp)) != EOF) { ch 104 usr/bin/head/head.c if (putchar(ch) == EOF) ch 106 usr/bin/head/head.c if (ch == '\n') ch 69 usr/bin/ls/ls.c int ch, rc; ch 73 usr/bin/ls/ls.c while ((ch = getopt(argc, argv, "1ClFaA")) != -1) { ch 74 usr/bin/ls/ls.c switch(ch) { ch 48 usr/bin/mkdir/mkdir.c int ch, exitval, pflag; ch 51 usr/bin/mkdir/mkdir.c while ((ch = getopt(argc, argv, "p")) != EOF) ch 52 usr/bin/mkdir/mkdir.c switch(ch) { ch 48 usr/bin/more/more.c int ch; ch 53 usr/bin/more/more.c while ((ch = getopt(argc, argv, "")) != -1) ch 54 usr/bin/more/more.c switch(ch) { ch 55 usr/bin/printenv/printenv.c int ch; ch 57 usr/bin/printenv/printenv.c while ((ch = getopt(argc, argv, "")) != EOF) ch 58 usr/bin/printenv/printenv.c switch(ch) { ch 86 usr/bin/ps/ps.c int ch, rc, ps_flag = 0; ch 89 usr/bin/ps/ps.c while ((ch = getopt(argc, argv, "lx")) != -1) ch 90 usr/bin/ps/ps.c switch(ch) { ch 51 usr/bin/rm/rm.c int ch, rc; ch 53 usr/bin/rm/rm.c while ((ch = getopt(argc, argv, "")) != -1) ch 54 usr/bin/rm/rm.c switch(ch) { ch 50 usr/bin/rmdir/rmdir.c int ch, rc; ch 52 usr/bin/rmdir/rmdir.c while ((ch = getopt(argc, argv, "")) != -1) ch 53 usr/bin/rmdir/rmdir.c switch(ch) { ch 43 usr/bin/sleep/sleep.c int ch, secs; ch 45 usr/bin/sleep/sleep.c while ((ch = getopt(argc, argv, "")) != -1) ch 46 usr/bin/sleep/sleep.c switch(ch) { ch 56 usr/bin/touch/touch.c int ch; ch 59 usr/bin/touch/touch.c while ((ch = getopt(argc, argv, "")) != -1) ch 60 usr/bin/touch/touch.c switch(ch) { ch 60 usr/bin/uname/uname.c int ch; ch 64 usr/bin/uname/uname.c while ((ch = getopt(argc, argv, "amnrsv")) != EOF) { ch 65 usr/bin/uname/uname.c switch(ch) { ch 68 usr/lib/crt/crt1.c _strrchr(char *p, int ch) ch 73 usr/lib/crt/crt1.c if (*p == ch) ch 42 usr/lib/libc/gen/getpass.c register int ch; ch 69 usr/lib/libc/gen/getpass.c for (p = buf; (ch = getc(fp)) != EOF && ch != '\n';) { ch 71 usr/lib/libc/gen/getpass.c *p++ = ch; ch 187 usr/lib/libc/stdio/vfprintf.c int ch; /* character from fmt */ ch 282 usr/lib/libc/stdio/vfprintf.c for (cp = fmt; (ch = *fmt) != '\0' && ch != '%'; fmt++) ch 288 usr/lib/libc/stdio/vfprintf.c if (ch == '\0') ch 298 usr/lib/libc/stdio/vfprintf.c rflag: ch = *fmt++; ch 299 usr/lib/libc/stdio/vfprintf.c reswitch: switch (ch) { ch 330 usr/lib/libc/stdio/vfprintf.c if ((ch = *fmt++) == '*') { ch 336 usr/lib/libc/stdio/vfprintf.c while (is_digit(ch)) { ch 337 usr/lib/libc/stdio/vfprintf.c n = 10 * n + to_digit(ch); ch 338 usr/lib/libc/stdio/vfprintf.c ch = *fmt++; ch 354 usr/lib/libc/stdio/vfprintf.c n = 10 * n + to_digit(ch); ch 355 usr/lib/libc/stdio/vfprintf.c ch = *fmt++; ch 356 usr/lib/libc/stdio/vfprintf.c } while (is_digit(ch)); ch 409 usr/lib/libc/stdio/vfprintf.c ch = 'x'; ch 473 usr/lib/libc/stdio/vfprintf.c if (ch == '\0') ch 477 usr/lib/libc/stdio/vfprintf.c *cp = ch; ch 513 usr/lib/libc/stdio/vfprintf.c ox[1] = ch; ch 36 usr/lib/libc/string/index.c strchr(p, ch) ch 38 usr/lib/libc/string/index.c index(p, ch) ch 40 usr/lib/libc/string/index.c const char *p, ch; ch 43 usr/lib/libc/string/index.c if (*p == ch) ch 35 usr/lib/libc/string/rindex.c strrchr(p, ch) ch 37 usr/lib/libc/string/rindex.c rindex(p, ch) ch 40 usr/lib/libc/string/rindex.c int ch; ch 45 usr/lib/libc/string/rindex.c if (*p == ch) ch 73 usr/lib/libsa/_stdio.c char ch; ch 79 usr/lib/libsa/_stdio.c device_read(__console_dev, &ch, &len, 0); ch 80 usr/lib/libsa/_stdio.c return ch; ch 38 usr/lib/libsa/putchar.c char ch; ch 40 usr/lib/libsa/putchar.c ch = (char)c; ch 41 usr/lib/libsa/putchar.c __console_write(&ch, 1); ch 126 usr/sample/tetris/tetris.c int ch; ch 128 usr/sample/tetris/tetris.c while ((ch = getopt(argc, argv, "l")) != EOF) ch 129 usr/sample/tetris/tetris.c switch(ch) { ch 65 usr/sbin/install/install.c int r, ch, checkch, i; ch 90 usr/sbin/install/install.c checkch = ch = getchar(); ch 91 usr/sbin/install/install.c while (ch != '\n' && ch != EOF) ch 92 usr/sbin/install/install.c ch = getchar(); ch 109 usr/sbin/pmctrl/pmctrl.c int ch, checkch; ch 112 usr/sbin/pmctrl/pmctrl.c checkch = ch = getchar(); ch 113 usr/sbin/pmctrl/pmctrl.c while (ch != '\n' && ch != EOF) ch 114 usr/sbin/pmctrl/pmctrl.c ch = getchar(); ch 46 usr/test/fdd/fdd.c unsigned char ch; ch 71 usr/test/fdd/fdd.c ch = disk_buf[i * 16 + j]; ch 72 usr/test/fdd/fdd.c if (isprint(ch)) ch 73 usr/test/fdd/fdd.c putchar(ch); ch 48 usr/test/ramdisk/ramdisk.c unsigned char ch; ch 73 usr/test/ramdisk/ramdisk.c ch = disk_buf[i * 16 + j]; ch 74 usr/test/ramdisk/ramdisk.c if (isprint(ch)) ch 75 usr/test/ramdisk/ramdisk.c putchar(ch); ch 55 usr/test/shutdown/shutdown.c int ch, checkch, rflag; ch 70 usr/test/shutdown/shutdown.c checkch = ch = getchar(); ch 71 usr/test/shutdown/shutdown.c while (ch != '\n' && ch != EOF) ch 72 usr/test/shutdown/shutdown.c ch = getchar();