Lines Matching defs:pbufs
723 struct printk_buffers pbufs;
805 char *outbuf = &user->pbufs.outbuf[0];
807 .pbufs = &user->pbufs,
2938 * Prepend the message in @pmsg->pbufs->outbuf. This is achieved by shifting
2944 * If there is not enough space in @pmsg->pbufs->outbuf, the existing
2947 * If @pmsg->pbufs->outbuf is modified, @pmsg->outbuf_len is updated.
2952 struct printk_buffers *pbufs = pmsg->pbufs;
2953 const size_t scratchbuf_sz = sizeof(pbufs->scratchbuf);
2954 const size_t outbuf_sz = sizeof(pbufs->outbuf);
2955 char *scratchbuf = &pbufs->scratchbuf[0];
2956 char *outbuf = &pbufs->outbuf[0];
2985 * Prepend the message in @pmsg->pbufs->outbuf with a "dropped message".
2998 * Prepend the message in @pmsg->pbufs->outbuf with a "replay message".
3012 * @pmsg will contain the formatted result. @pmsg->pbufs must point to a
3030 struct printk_buffers *pbufs = pmsg->pbufs;
3031 const size_t scratchbuf_sz = sizeof(pbufs->scratchbuf);
3032 const size_t outbuf_sz = sizeof(pbufs->outbuf);
3033 char *scratchbuf = &pbufs->scratchbuf[0];
3034 char *outbuf = &pbufs->outbuf[0];
3131 .pbufs = &printk_shared_pbufs,