函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:each_symbol_in_section

函数原型:static bool each_symbol_in_section(const struct symsearch *arr, unsigned int arrsize, struct module *owner, bool (*fn)(const struct symsearch *syms, struct module *owner, void *data), void *data)

返回类型:bool

参数:

类型参数名称
const struct symsearch *arr
unsigned intarrsize
struct module *owner
bool (*fn
void *data
413 j小于arrsize循环
414  如果fn( & arr[j], owner, data)则返回:true
418  返回:false
调用者
名称描述
each_symbol_sectionReturns true as soon as fn returns true, otherwise false.