tag | line | file | source code |
fmt | 24 | arch/alpha/boot/main.c | int printk(const char * fmt, ...) |
fmt | 30 | arch/alpha/boot/main.c | va_start(args, fmt); |
fmt | 31 | arch/alpha/boot/main.c | i = vsprintf(buf, fmt, args); |
fmt | 18 | arch/sparc/prom/printf.c | prom_printf(char *fmt, ...) |
fmt | 27 | arch/sparc/prom/printf.c | va_start(args, fmt); |
fmt | 28 | arch/sparc/prom/printf.c | while(*fmt) { |
fmt | 29 | arch/sparc/prom/printf.c | if(*fmt != '%') { |
fmt | 30 | arch/sparc/prom/printf.c | if(*fmt == '\n') |
fmt | 32 | arch/sparc/prom/printf.c | prom_putchar(*fmt++); |
fmt | 36 | arch/sparc/prom/printf.c | fmt++; |
fmt | 37 | arch/sparc/prom/printf.c | if(!*fmt) break; |
fmt | 39 | arch/sparc/prom/printf.c | switch(*fmt) { |
fmt | 45 | arch/sparc/prom/printf.c | fmt++; |
fmt | 53 | arch/sparc/prom/printf.c | fmt++; |
fmt | 68 | arch/sparc/prom/printf.c | fmt++; |
fmt | 83 | arch/sparc/prom/printf.c | fmt++; |
fmt | 97 | arch/sparc/prom/printf.c | fmt++; |
fmt | 101 | arch/sparc/prom/printf.c | fmt++; |
fmt | 203 | drivers/block/mcdx.c | static void TRACE((int level, const char* fmt, ...)); |
fmt | 206 | drivers/block/mcdx.c | static void WARN((const char* fmt, ...)); |
fmt | 911 | drivers/block/mcdx.c | void trace(int level, const char* fmt, ...) |
fmt | 916 | drivers/block/mcdx.c | va_start(args, fmt); |
fmt | 917 | drivers/block/mcdx.c | if (sizeof(s) < vsprintf(s, fmt, args)) |
fmt | 925 | drivers/block/mcdx.c | void warn(const char* fmt, ...) |
fmt | 929 | drivers/block/mcdx.c | va_start(args, fmt); |
fmt | 930 | drivers/block/mcdx.c | if (sizeof(s) < vsprintf(s, fmt, args)) |
fmt | 694 | drivers/block/sbpcd.c | static void msg(int level, char *fmt, ...) |
fmt | 705 | drivers/block/sbpcd.c | va_start(args, fmt); |
fmt | 706 | drivers/block/sbpcd.c | vsprintf(&buf[15], fmt, args); |
fmt | 123 | drivers/net/ibmtr.c | static void DummyCall(char * fmt,...) {DummyCallCount++;return;} |
fmt | 909 | drivers/scsi/aic7xxx.c | debug(const char *fmt, ...) |
fmt | 914 | drivers/scsi/aic7xxx.c | va_start(ap, fmt); |
fmt | 915 | drivers/scsi/aic7xxx.c | vsprintf(buf, fmt, ap); |
fmt | 1023 | drivers/scsi/aic7xxx.c | # define debug(fmt, args...) |
fmt | 287 | drivers/scsi/aic7xxx_asm.c | int fmt; /* instruction format - 1, 2, or 3 */ |
fmt | 507 | drivers/scsi/aic7xxx_asm.c | switch (instr[i].fmt) { |
fmt | 200 | drivers/scsi/eata_dma_proc.h | fmt:1, |
fmt | 328 | drivers/scsi/ultrastor.c | static char fmt[80] = "abort %d (%x); MSCP free pool: %x;"; |
fmt | 336 | drivers/scsi/ultrastor.c | fmt[20 + i*2] = ' '; |
fmt | 338 | drivers/scsi/ultrastor.c | fmt[21 + i*2] = '0' + config->mscp[i].target_id; |
fmt | 340 | drivers/scsi/ultrastor.c | fmt[21 + i*2] = '-'; |
fmt | 342 | drivers/scsi/ultrastor.c | fmt[20 + ULTRASTOR_MAX_CMDS * 2] = '\n'; |
fmt | 343 | drivers/scsi/ultrastor.c | fmt[21 + ULTRASTOR_MAX_CMDS * 2] = 0; |
fmt | 344 | drivers/scsi/ultrastor.c | printk(fmt, command, &config->mscp[command], config->mscp_free); |
fmt | 61 | drivers/sound/audio.c | set_format (int dev, int fmt) |
fmt | 63 | drivers/sound/audio.c | if (fmt != AFMT_QUERY) |
fmt | 68 | drivers/sound/audio.c | if (!(audio_devs[dev]->format_mask & fmt)) /* Not supported */ |
fmt | 69 | drivers/sound/audio.c | if (fmt == AFMT_MU_LAW) |
fmt | 71 | drivers/sound/audio.c | fmt = AFMT_U8; |
fmt | 75 | drivers/sound/audio.c | fmt = AFMT_U8; /* This is always supported */ |
fmt | 77 | drivers/sound/audio.c | audio_format[dev] = DMAbuf_ioctl (dev, SNDCTL_DSP_SETFMT, fmt, 1); |
fmt | 72 | fs/exec.c | int register_binfmt(struct linux_binfmt * fmt) |
fmt | 76 | fs/exec.c | if (!fmt) |
fmt | 78 | fs/exec.c | if (fmt->next) |
fmt | 81 | fs/exec.c | if (fmt == *tmp) |
fmt | 85 | fs/exec.c | *tmp = fmt; |
fmt | 89 | fs/exec.c | int unregister_binfmt(struct linux_binfmt * fmt) |
fmt | 94 | fs/exec.c | if (fmt == *tmp) { |
fmt | 95 | fs/exec.c | *tmp = fmt->next; |
fmt | 272 | fs/exec.c | struct linux_binfmt * fmt; |
fmt | 280 | fs/exec.c | for (fmt = formats ; fmt ; fmt = fmt->next) { |
fmt | 281 | fs/exec.c | int (*fn)(int) = fmt->load_shlib; |
fmt | 560 | fs/exec.c | struct linux_binfmt * fmt; |
fmt | 706 | fs/exec.c | for (fmt = formats ; fmt ; fmt = fmt->next) { |
fmt | 707 | fs/exec.c | int (*fn)(struct linux_binprm *, struct pt_regs *) = fmt->load_binary; |
fmt | 34 | fs/ext2/super.c | const char * fmt, ...) |
fmt | 44 | fs/ext2/super.c | va_start (args, fmt); |
fmt | 45 | fs/ext2/super.c | vsprintf (error_buf, fmt, args); |
fmt | 63 | fs/ext2/super.c | const char * fmt, ...) |
fmt | 73 | fs/ext2/super.c | va_start (args, fmt); |
fmt | 74 | fs/ext2/super.c | vsprintf (error_buf, fmt, args); |
fmt | 81 | fs/ext2/super.c | const char * fmt, ...) |
fmt | 85 | fs/ext2/super.c | va_start (args, fmt); |
fmt | 86 | fs/ext2/super.c | vsprintf (error_buf, fmt, args); |
fmt | 186 | include/asm-sparc/openprom.h | void (*pv_printf)(const char *fmt, ...); |
fmt | 150 | include/asm-sparc/oplib.h | void prom_printf(char *fmt, ...); |
fmt | 40 | include/linux/kernel.h | NORET_TYPE void panic(const char * fmt, ...) |
fmt | 45 | include/linux/kernel.h | extern int sprintf(char * buf, const char * fmt, ...); |
fmt | 54 | include/linux/kernel.h | asmlinkage int printk(const char * fmt, ...) |
fmt | 442 | init/main.c | static int printf(const char *fmt, ...) |
fmt | 447 | init/main.c | va_start(args, fmt); |
fmt | 448 | init/main.c | write(1,printbuf,i=vsprintf(printbuf, fmt, args)); |
fmt | 18 | kernel/panic.c | NORET_TYPE void panic(const char * fmt, ...) |
fmt | 23 | kernel/panic.c | va_start(args, fmt); |
fmt | 24 | kernel/panic.c | vsprintf(buf, fmt, args); |
fmt | 142 | kernel/printk.c | asmlinkage int printk(const char *fmt, ...) |
fmt | 152 | kernel/printk.c | va_start(args, fmt); |
fmt | 153 | kernel/printk.c | i = vsprintf(buf + 3, fmt, args); /* hopefully i < sizeof(buf)-4 */ |
fmt | 134 | lib/vsprintf.c | int vsprintf(char *buf, const char *fmt, va_list args) |
fmt | 149 | lib/vsprintf.c | for (str=buf ; *fmt ; ++fmt) { |
fmt | 150 | lib/vsprintf.c | if (*fmt != '%') { |
fmt | 151 | lib/vsprintf.c | *str++ = *fmt; |
fmt | 158 | lib/vsprintf.c | ++fmt; /* this also skips first '%' */ |
fmt | 159 | lib/vsprintf.c | switch (*fmt) { |
fmt | 169 | lib/vsprintf.c | if (is_digit(*fmt)) |
fmt | 170 | lib/vsprintf.c | field_width = skip_atoi(&fmt); |
fmt | 171 | lib/vsprintf.c | else if (*fmt == '*') { |
fmt | 172 | lib/vsprintf.c | ++fmt; |
fmt | 183 | lib/vsprintf.c | if (*fmt == '.') { |
fmt | 184 | lib/vsprintf.c | ++fmt; |
fmt | 185 | lib/vsprintf.c | if (is_digit(*fmt)) |
fmt | 186 | lib/vsprintf.c | precision = skip_atoi(&fmt); |
fmt | 187 | lib/vsprintf.c | else if (*fmt == '*') { |
fmt | 188 | lib/vsprintf.c | ++fmt; |
fmt | 198 | lib/vsprintf.c | if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L') { |
fmt | 199 | lib/vsprintf.c | qualifier = *fmt; |
fmt | 200 | lib/vsprintf.c | ++fmt; |
fmt | 206 | lib/vsprintf.c | switch (*fmt) { |
fmt | 271 | lib/vsprintf.c | if (*fmt != '%') |
fmt | 273 | lib/vsprintf.c | if (*fmt) |
fmt | 274 | lib/vsprintf.c | *str++ = *fmt; |
fmt | 276 | lib/vsprintf.c | --fmt; |
fmt | 296 | lib/vsprintf.c | int sprintf(char * buf, const char *fmt, ...) |
fmt | 301 | lib/vsprintf.c | va_start(args, fmt); |
fmt | 302 | lib/vsprintf.c | i=vsprintf(buf,fmt,args); |