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 | 667 | drivers/block/sbpcd.c | static void sbpcd_dprintf(int level, char *fmt, ...) |
fmt | 671 | drivers/block/sbpcd.c | extern int vsprintf(char *buf, const char *fmt, va_list args); |
fmt | 675 | drivers/block/sbpcd.c | va_start(args, fmt); |
fmt | 676 | drivers/block/sbpcd.c | vsprintf(buff, fmt, args); |
fmt | 216 | drivers/scsi/aha274x.c | void debug(const char *fmt, ...) |
fmt | 221 | drivers/scsi/aha274x.c | va_start(ap, fmt); |
fmt | 222 | drivers/scsi/aha274x.c | vsprintf(buf, fmt, ap); |
fmt | 303 | drivers/scsi/aha274x.c | # define debug(fmt, args...) |
fmt | 248 | drivers/scsi/aic7770.c | int fmt; /* instruction format - 1, 2, or 3 */ |
fmt | 462 | drivers/scsi/aic7770.c | switch (instr[i].fmt) { |
fmt | 324 | drivers/scsi/ultrastor.c | static char fmt[80] = "abort %d (%x); MSCP free pool: %x;"; |
fmt | 332 | drivers/scsi/ultrastor.c | fmt[20 + i*2] = ' '; |
fmt | 334 | drivers/scsi/ultrastor.c | fmt[21 + i*2] = '0' + config->mscp[i].target_id; |
fmt | 336 | drivers/scsi/ultrastor.c | fmt[21 + i*2] = '-'; |
fmt | 338 | drivers/scsi/ultrastor.c | fmt[20 + ULTRASTOR_MAX_CMDS * 2] = '\n'; |
fmt | 339 | drivers/scsi/ultrastor.c | fmt[21 + ULTRASTOR_MAX_CMDS * 2] = 0; |
fmt | 340 | drivers/scsi/ultrastor.c | printk(fmt, command, &config->mscp[command], config->mscp_free); |
fmt | 58 | drivers/sound/audio.c | set_format (int dev, int fmt) |
fmt | 60 | drivers/sound/audio.c | if (fmt != AFMT_QUERY) |
fmt | 65 | drivers/sound/audio.c | if (!(audio_devs[dev]->format_mask & fmt)) /* Not supported */ |
fmt | 66 | drivers/sound/audio.c | if (fmt == AFMT_MU_LAW) |
fmt | 68 | drivers/sound/audio.c | fmt = AFMT_U8; |
fmt | 72 | drivers/sound/audio.c | fmt = AFMT_U8; /* This is always supported */ |
fmt | 74 | drivers/sound/audio.c | audio_format[dev] = DMAbuf_ioctl (dev, SNDCTL_DSP_SETFMT, fmt, 1); |
fmt | 74 | fs/exec.c | int register_binfmt(struct linux_binfmt * fmt) |
fmt | 78 | fs/exec.c | if (!fmt) |
fmt | 80 | fs/exec.c | if (fmt->next) |
fmt | 83 | fs/exec.c | if (fmt == *tmp) |
fmt | 87 | fs/exec.c | *tmp = fmt; |
fmt | 91 | fs/exec.c | int unregister_binfmt(struct linux_binfmt * fmt) |
fmt | 96 | fs/exec.c | if (fmt == *tmp) { |
fmt | 97 | fs/exec.c | *tmp = fmt->next; |
fmt | 274 | fs/exec.c | struct linux_binfmt * fmt; |
fmt | 282 | fs/exec.c | for (fmt = formats ; fmt ; fmt = fmt->next) { |
fmt | 283 | fs/exec.c | int (*fn)(int) = fmt->load_shlib; |
fmt | 554 | fs/exec.c | struct linux_binfmt * fmt; |
fmt | 700 | fs/exec.c | for (fmt = formats ; fmt ; fmt = fmt->next) { |
fmt | 701 | fs/exec.c | int (*fn)(struct linux_binprm *, struct pt_regs *) = fmt->load_binary; |
fmt | 33 | fs/ext2/super.c | const char * fmt, ...) |
fmt | 43 | fs/ext2/super.c | va_start (args, fmt); |
fmt | 44 | fs/ext2/super.c | vsprintf (error_buf, fmt, args); |
fmt | 62 | fs/ext2/super.c | const char * fmt, ...) |
fmt | 72 | fs/ext2/super.c | va_start (args, fmt); |
fmt | 73 | fs/ext2/super.c | vsprintf (error_buf, fmt, args); |
fmt | 80 | fs/ext2/super.c | const char * fmt, ...) |
fmt | 84 | fs/ext2/super.c | va_start (args, fmt); |
fmt | 85 | fs/ext2/super.c | vsprintf (error_buf, fmt, args); |
fmt | 180 | include/asm-sparc/openprom.h | void (*pv_printf)(const 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 | 407 | init/main.c | static int printf(const char *fmt, ...) |
fmt | 412 | init/main.c | va_start(args, fmt); |
fmt | 413 | 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); |