函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:moyo_byte_range - Check whether the string is a \ooo style octal value.*@str: Pointer to the string.* Returns true if @str is a \ooo style octal value, false otherwise.* TOMOYO uses \ooo style representation for 0x01 - 0x20 and 0x7F - 0xFF.

函数原型:static inline bool tomoyo_byte_range(const char *str)

返回类型:bool

参数:

类型参数名称
const char *str
316  返回:str大于等于'0'且str自加小于等于'3'且str大于等于'0'且str自加小于等于'7'且str大于等于'0'且str小于等于'7'
调用者
名称描述
tomoyo_file_matches_pattern2moyo_file_matches_pattern2 - Pattern matching without '/' character and "\-" pattern.*@filename: The start of string to check.*@filename_end: The end of string to check.*@pattern: The start of pattern to compare.