taglinefilesource code
fmt24arch/alpha/boot/main.cint printk(const char * fmt, ...)
fmt30arch/alpha/boot/main.cva_start(args, fmt);
fmt31arch/alpha/boot/main.ci = vsprintf(buf, fmt, args);
fmt667drivers/block/sbpcd.cstatic void sbpcd_dprintf(int level, char *fmt, ...)
fmt671drivers/block/sbpcd.cextern int vsprintf(char *buf, const char *fmt, va_list args);
fmt675drivers/block/sbpcd.cva_start(args, fmt);
fmt676drivers/block/sbpcd.cvsprintf(buff, fmt, args);
fmt216drivers/scsi/aha274x.cvoid debug(const char *fmt, ...)
fmt221drivers/scsi/aha274x.cva_start(ap, fmt);
fmt222drivers/scsi/aha274x.cvsprintf(buf, fmt, ap);
fmt303drivers/scsi/aha274x.c#  define debug(fmt, args...)
fmt248drivers/scsi/aic7770.cint fmt;    /* instruction format - 1, 2, or 3 */
fmt462drivers/scsi/aic7770.cswitch (instr[i].fmt) {
fmt324drivers/scsi/ultrastor.cstatic char fmt[80] = "abort %d (%x); MSCP free pool: %x;";
fmt332drivers/scsi/ultrastor.cfmt[20 + i*2] = ' ';
fmt334drivers/scsi/ultrastor.cfmt[21 + i*2] = '0' + config->mscp[i].target_id;
fmt336drivers/scsi/ultrastor.cfmt[21 + i*2] = '-';
fmt338drivers/scsi/ultrastor.cfmt[20 + ULTRASTOR_MAX_CMDS * 2] = '\n';
fmt339drivers/scsi/ultrastor.cfmt[21 + ULTRASTOR_MAX_CMDS * 2] = 0;
fmt340drivers/scsi/ultrastor.cprintk(fmt, command, &config->mscp[command], config->mscp_free);
fmt58drivers/sound/audio.cset_format (int dev, int fmt)
fmt60drivers/sound/audio.cif (fmt != AFMT_QUERY)
fmt65drivers/sound/audio.cif (!(audio_devs[dev]->format_mask & fmt))  /* Not supported */
fmt66drivers/sound/audio.cif (fmt == AFMT_MU_LAW)
fmt68drivers/sound/audio.cfmt = AFMT_U8;
fmt72drivers/sound/audio.cfmt = AFMT_U8;  /* This is always supported */
fmt74drivers/sound/audio.caudio_format[dev] = DMAbuf_ioctl (dev, SNDCTL_DSP_SETFMT, fmt, 1);
fmt74fs/exec.cint register_binfmt(struct linux_binfmt * fmt)
fmt78fs/exec.cif (!fmt)
fmt80fs/exec.cif (fmt->next)
fmt83fs/exec.cif (fmt == *tmp)
fmt87fs/exec.c*tmp = fmt;
fmt91fs/exec.cint unregister_binfmt(struct linux_binfmt * fmt)
fmt96fs/exec.cif (fmt == *tmp) {
fmt97fs/exec.c*tmp = fmt->next;
fmt274fs/exec.cstruct linux_binfmt * fmt;
fmt282fs/exec.cfor (fmt = formats ; fmt ; fmt = fmt->next) {
fmt283fs/exec.cint (*fn)(int) = fmt->load_shlib;
fmt554fs/exec.cstruct linux_binfmt * fmt;
fmt700fs/exec.cfor (fmt = formats ; fmt ; fmt = fmt->next) {
fmt701fs/exec.cint (*fn)(struct linux_binprm *, struct pt_regs *) = fmt->load_binary;
fmt33fs/ext2/super.cconst char * fmt, ...)
fmt43fs/ext2/super.cva_start (args, fmt);
fmt44fs/ext2/super.cvsprintf (error_buf, fmt, args);
fmt62fs/ext2/super.cconst char * fmt, ...)
fmt72fs/ext2/super.cva_start (args, fmt);
fmt73fs/ext2/super.cvsprintf (error_buf, fmt, args);
fmt80fs/ext2/super.cconst char * fmt, ...)
fmt84fs/ext2/super.cva_start (args, fmt);
fmt85fs/ext2/super.cvsprintf (error_buf, fmt, args);
fmt180include/asm-sparc/openprom.hvoid  (*pv_printf)(const char *fmt, ...);
fmt40include/linux/kernel.hNORET_TYPE void panic(const char * fmt, ...)
fmt45include/linux/kernel.hextern int sprintf(char * buf, const char * fmt, ...);
fmt54include/linux/kernel.hasmlinkage int printk(const char * fmt, ...)
fmt407init/main.cstatic int printf(const char *fmt, ...)
fmt412init/main.cva_start(args, fmt);
fmt413init/main.cwrite(1,printbuf,i=vsprintf(printbuf, fmt, args));
fmt18kernel/panic.cNORET_TYPE void panic(const char * fmt, ...)
fmt23kernel/panic.cva_start(args, fmt);
fmt24kernel/panic.cvsprintf(buf, fmt, args);
fmt142kernel/printk.casmlinkage int printk(const char *fmt, ...)
fmt152kernel/printk.cva_start(args, fmt);
fmt153kernel/printk.ci = vsprintf(buf + 3, fmt, args); /* hopefully i < sizeof(buf)-4 */
fmt134lib/vsprintf.cint vsprintf(char *buf, const char *fmt, va_list args)
fmt149lib/vsprintf.cfor (str=buf ; *fmt ; ++fmt) {
fmt150lib/vsprintf.cif (*fmt != '%') {
fmt151lib/vsprintf.c*str++ = *fmt;
fmt158lib/vsprintf.c++fmt;    /* this also skips first '%' */
fmt159lib/vsprintf.cswitch (*fmt) {
fmt169lib/vsprintf.cif (is_digit(*fmt))
fmt170lib/vsprintf.cfield_width = skip_atoi(&fmt);
fmt171lib/vsprintf.celse if (*fmt == '*') {
fmt172lib/vsprintf.c++fmt;
fmt183lib/vsprintf.cif (*fmt == '.') {
fmt184lib/vsprintf.c++fmt;  
fmt185lib/vsprintf.cif (is_digit(*fmt))
fmt186lib/vsprintf.cprecision = skip_atoi(&fmt);
fmt187lib/vsprintf.celse if (*fmt == '*') {
fmt188lib/vsprintf.c++fmt;
fmt198lib/vsprintf.cif (*fmt == 'h' || *fmt == 'l' || *fmt == 'L') {
fmt199lib/vsprintf.cqualifier = *fmt;
fmt200lib/vsprintf.c++fmt;
fmt206lib/vsprintf.cswitch (*fmt) {
fmt271lib/vsprintf.cif (*fmt != '%')
fmt273lib/vsprintf.cif (*fmt)
fmt274lib/vsprintf.c*str++ = *fmt;
fmt276lib/vsprintf.c--fmt;
fmt296lib/vsprintf.cint sprintf(char * buf, const char *fmt, ...)
fmt301lib/vsprintf.cva_start(args, fmt);
fmt302lib/vsprintf.ci=vsprintf(buf,fmt,args);