{
find . -type f \
| grep "$1" \
- | xargs grep -lP "$2" \
+ | xargs grep -lPI "$2" \
+ | xargs grep -lP "$3" \
| sort \
- | xargs pcregrep -Mn "$3" /dev/null \
+ | xargs pcregrep -Mn "$4" /dev/null \
| sed -E 's/^[^: ]+:[0-9]+:/\n\n&\n\n/';
}
function grepc_macro_simple()
{
grepc_helper '\.[ch]$' \
- "define\s+$1\b[^(]" \
- "(?s)define\s+$1\b[^(].*?[^\\\\]$";
+ "#\s*define\s+$1\b[^(]" \
+ "." \
+ "(?s)#\s*define\s+$1\b[^(].*?[^\\\\]$";
}
function grepc_macro_func()
{
grepc_helper '\.[ch]$' \
- "define\s+$1\(" \
- "(?s)define\s+$1\(.*?[^\\\\]$";
+ "#\s*define\s+$1\(" \
+ "." \
+ "(?s)#\s*define\s+$1\(.*?[^\\\\]$";
}
function grepc_enum_constant()
{
grepc_helper '\.[ch]$' \
+ "^enum\s" \
"^\s*$1\s*[,=]" \
"(?s)\benum\b\s*[\w\s[\]]*{[^}]*^\s*$1\s*[=,].*?^}.*?;";
}
{
grepc_helper '\.[ch]$' \
"\b$1\s*\(" \
+ "." \
"(?s)^[\w[][\w\s(,)[:\]*]+\s+\**$1\s*\([\w\s(,)[\]*]+?(...)?\)[\w\s(,)[:\]]*;";
}
{
grepc_helper '\.[ch]$' \
"\b$1\s*\(" \
+ "." \
"(?s)^[\w[][\w\s(,)[:\]*]+\s+\**$1\s*\([\w\s(,)[\]*]+?(...)?\)\s*{.*?^}";
}
function grepc_linux_syscall_decl()
{
grepc_helper '\.[ch]$' \
- "\bsys_$1\s*\(" \
+ "^asmlinkage\s+[\w\s]+\**sys_$1\s*\(" \
+ "." \
"(?s)^asmlinkage\s+[\w\s]+\**sys_$1\s*\(.*?\)";
}
{
grepc_helper '\.c$' \
"SYSCALL_DEFINE.\($1\b" \
+ "." \
"(?s)^\w*SYSCALL_DEFINE.\($1\b.*?^}";
}
{
grepc_helper '\.[ch]$' \
"\b(struct|union|enum)\s+$1\b" \
+ "." \
"(?s)^(?!^typedef\b)([\w[][\w\s(,)[:\]*]+\s+)?\b(struct|union|enum)\s+$1\b\s*[\w\s[\]]*{.*?^}.*?;";
}
function grepc_type_typedef_simple()
{
grepc_helper '\.[ch]$' \
+ "^typedef\s" \
"\b$1;" \
"(?s)^typedef\s+[^{};]+$1;";
}
function grepc_type_typedef_struct_union_enum()
{
grepc_helper '\.[ch]$' \
+ "^typedef\s[^;]+$" \
"^}\s*$1;" \
"(?s)^typedef\s(?:(?!^}).)*^}\s*$1;";
}