/src/sys/dev/ofisa/ |
ofisa.c | 358 const char *modestr; local in function:ofisa_dma_print 369 modestr = "compat"; 372 modestr = "A"; 375 modestr = "B"; 378 modestr = "F"; 381 modestr = "C"; 386 modestr = unkmode; 391 descp[i].drq, modestr, descp[i].width,
|
/src/sys/arch/sgimips/dev/ |
crmfb.c | 256 const char *modestr; local in function:crmfb_attach 311 modestr = arcbios_GetEnvironmentVariable("crmfb_mode"); 312 if (crmfb_parse_mode(modestr, &mode) == 0) 1856 crmfb_parse_mode(const char *modestr, struct videomode *mode) 1861 if (modestr == NULL) 1864 x = strchr(modestr, 'x'); 1865 at = strchr(modestr, '@'); 1870 width = strtoul(modestr, NULL, 10);
|
/src/tests/dev/audio/ |
audiotest.c | 973 char modestr[32]; local in function:debug_open 977 n = snprintf(modestr, sizeof(modestr), "%s", 980 n = snprintf(modestr, sizeof(modestr), "%d", mode & 3); 983 n += snprintf(modestr + n, sizeof(modestr) - n, "|O_NONBLOCK"); 985 DPRINTFF(line, "open(\"%s\", %s)", name, modestr);
|