Searched refs:outbuf_len (Results 1 - 5 of 5) sorted by relevance

/linux-master/kernel/printk/
H A Dinternal.h119 * @outbuf_len: The length of prepared text in @pbufs->outbuf to output. This
127 unsigned int outbuf_len; member in struct:printk_message
H A Dnbcon.c885 if (pmsg.outbuf_len == 0)
890 wctxt->len = pmsg.outbuf_len;
H A Dprintk.c836 if (pmsg.outbuf_len > count) {
841 if (copy_to_user(buf, outbuf, pmsg.outbuf_len)) {
845 ret = pmsg.outbuf_len;
2748 * If @pmsg->pbufs->outbuf is modified, @pmsg->outbuf_len is updated.
2771 if (pmsg->outbuf_len + len >= outbuf_sz) {
2773 pmsg->outbuf_len = outbuf_sz - (len + 1);
2774 outbuf[pmsg->outbuf_len] = 0;
2777 memmove(outbuf + len, outbuf, pmsg->outbuf_len + 1);
2779 pmsg->outbuf_len += len;
2843 pmsg->outbuf_len
[all...]
/linux-master/security/keys/
H A Ddh.c101 size_t outbuf_len = roundup(buflen, crypto_shash_digestsize(hash)); local
103 outbuf = kmalloc(outbuf_len, GFP_KERNEL);
109 ret = crypto_kdf108_ctr_generate(hash, &kbuf_iov, 1, outbuf, outbuf_len);
/linux-master/fs/smb/client/
H A Dsmb2pdu.c5723 int level, int outbuf_len, u64 persistent_fid,
5748 outbuf_len + sizeof(struct smb2_query_info_rsp));
5721 build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon, struct TCP_Server_Info *server, int level, int outbuf_len, u64 persistent_fid, u64 volatile_fid) argument

Completed in 357 milliseconds