MAX_SUB_MATCHES is only used within OpenOCD.
 
Symbols
loading...
Files
loading...

MAX_SUB_MATCHES macro

Syntax

#define MAX_SUB_MATCHES 50

References

LocationText
jim-regexp.c:344
#define MAX_SUB_MATCHES 50
jimsh0.c:3222
#define MAX_SUB_MATCHES 50
jim-regexp.c:355
regmatch_t pmatch[MAX_SUB_MATCHES + 1];
jim-regexp.c:464
int match = jim_regexec(regex, p, MAX_SUB_MATCHES, pmatch, regexec_flags);
jim-regexp.c:520
if ((idx < MAX_SUB_MATCHES) && pmatch[idx].rm_so != -1 && pmatch[idx].rm_eo != -1) {
jimsh0.c:3233
regmatch_t pmatch[MAX_SUB_MATCHES + 1];
jimsh0.c:3331
int match = regexec(regex, p, MAX_SUB_MATCHES, pmatch, regexec_flags);
jimsh0.c:3374
if ((idx < MAX_SUB_MATCHES) && pmatch[idx].rm_so != -1 && pmatch[idx].rm_eo != -1) {