函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:Returns true if any portion of [ptr,ptr+n) over laps with [low,high).

函数原型:static bool overlaps(const unsigned long ptr, unsigned long n, unsigned long low, unsigned long high)

返回类型:bool

参数:

类型参数名称
const unsigned longptr
unsigned longn
unsigned longlow
unsigned longhigh
106  check_low等于ptr
107  check_high等于check_lown
110  如果check_low大于等于highcheck_high小于等于low则返回:false
113  返回:true
调用者
名称描述
check_kernel_text_objectIs this address range in the kernel text area?