Lines Matching defs:buf

1861 	char buf[40];
1868 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),hdw->std_mask_eeprom);
1871 bcnt,buf);
1877 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std2);
1880 bcnt,buf);
1887 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std1);
1890 bcnt,buf);
1896 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),std3);
1899 bcnt, buf);
1914 bcnt = pvr2_std_id_to_str(buf,sizeof(buf),
1918 bcnt,buf);
2979 char buf[100];
2989 bcnt = scnprintf(buf,sizeof(buf),"\"%s\" <-- ",
2994 buf+bcnt,
2995 sizeof(buf)-bcnt,&ccnt);
2997 bcnt += scnprintf(buf+bcnt,sizeof(buf)-bcnt," <%s>",
3001 bcnt,buf);
3364 msg[0].buf = iadd;
3383 msg[1].buf = eeprom+tcnt;
3480 char *buf,unsigned int cnt)
3485 if (!buf) break;
3503 memcpy(buf,hdw->fw_buffer+offs,cnt);
4678 char *buf,unsigned int acnt)
4684 ccnt = scnprintf(buf+tcnt,
4706 char *buf,unsigned int acnt)
4711 buf,acnt,
4723 buf,acnt,
4732 buf,acnt,
4760 buf,acnt,
4767 ccnt = scnprintf(buf,
4772 buf+tcnt,
4775 ccnt = scnprintf(buf+tcnt,
4780 buf+tcnt,
4792 buf,acnt,
4803 return scnprintf(buf, acnt, "ir scheme: id=%d %s", id,
4817 char *buf, unsigned int acnt)
4826 ccnt = scnprintf(buf, acnt, "Associated v4l2-subdev drivers and I2C clients:\n");
4833 ccnt = scnprintf(buf + tcnt, acnt - tcnt, " %s:", p);
4836 ccnt = scnprintf(buf + tcnt, acnt - tcnt,
4842 ccnt = scnprintf(buf + tcnt, acnt - tcnt,
4847 ccnt = scnprintf(buf + tcnt, acnt - tcnt,
4857 char *buf,unsigned int acnt)
4863 ccnt = pvr2_hdw_report_unlocked(hdw,idx,buf,acnt);
4865 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
4867 buf[0] = '\n'; ccnt = 1;
4868 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
4870 ccnt = pvr2_hdw_report_clients(hdw, buf, acnt);
4871 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
4879 char buf[256];
4884 ccnt = pvr2_hdw_report_unlocked(hdw,idx,buf,sizeof(buf));
4886 pr_info("%s %.*s\n", hdw->name, ccnt, buf);
4888 ccnt = pvr2_hdw_report_clients(hdw, buf, sizeof(buf));
4889 if (ccnt >= sizeof(buf))
4890 ccnt = sizeof(buf);
4895 while ((lcnt + ucnt < ccnt) && (buf[lcnt + ucnt] != '\n')) {
4898 pr_info("%s %.*s\n", hdw->name, lcnt, buf + ucnt);