函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\seq_buf.c Create Date:2022-07-27 07:12:10
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:简单字符串序列打印

函数原型:int seq_buf_puts(struct seq_buf *s, const char *str)

返回类型:int

参数:

类型参数名称
struct seq_buf *s
const char *str
143  len等于strlen(str)
145  WARN_ON(size == 0)
148  len加等于1
150  如果seq_buf_can_fit - can the new data fit in the current buffer?*@s: the seq_buf descriptor*@len: The length to see if it can fit in the current buffer* Returns true if there's enough unused space in the seq_buf buffer
151  内存复制(buffer + len, str, len)
153  len加等于len减1
154  返回:0
156  seq_buf_set_overflow(s)
157  返回:负1
调用者
名称描述
rdt_last_cmd_puts