Lines Matching refs:reflags
83 register regflags_t reflags; in strgrpmatch() local
107 reflags = flags & ~REG_ADVANCE; in strgrpmatch()
110 reflags = REG_SHELL|REG_AUGMENTED; in strgrpmatch()
112 reflags |= REG_MINIMAL; in strgrpmatch()
114 reflags |= REG_SHELL_GROUP; in strgrpmatch()
116 reflags |= REG_LEFT; in strgrpmatch()
118 reflags |= REG_RIGHT; in strgrpmatch()
120 reflags |= REG_ICASE; in strgrpmatch()
123 reflags |= REG_NOSUB; in strgrpmatch()
124 if (!(re = regcache(p, reflags, NiL))) in strgrpmatch()
132 …if (regexec(re, b, n, matchstate.match, reflags & ~(REG_MINIMAL|REG_SHELL_GROUP|REG_LEFT|REG_RIGHT… in strgrpmatch()