Home
last modified time | relevance | path

Searched refs:preg (Results 1 – 3 of 3) sorted by relevance

/PHP-7.2/ext/pcre/pcrelib/
H A Dpcreposix.c211 regerror(int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size) in regerror() argument
221 addlength = (preg != NULL && (int)preg->re_erroffset != -1)? in regerror()
246 regfree(regex_t *preg) in regfree() argument
248 (PUBL(free))(preg->re_pcre); in regfree()
269 regcomp(regex_t *preg, const char *pattern, int cflags) in regcomp() argument
285 preg->re_pcre = pcre_compile2(pattern, options, &errorcode, &errorptr, in regcomp()
287 preg->re_erroffset = erroffset; in regcomp()
292 if (preg->re_pcre == NULL) in regcomp()
300 preg->re_nsub = (size_t)re_nsub; in regcomp()
323 regexec(const regex_t *preg, const char *string, size_t nmatch, in regexec() argument
[all …]
H A DChangeLog1183 13. In the POSIX wrapper regcomp() function, setting re_nsub field in the preg
/PHP-7.2/ext/pcre/pcrelib/doc/
H A Dpcre.txt9567 int regcomp(regex_t *preg, const char *pattern,
9570 int regexec(regex_t *preg, const char *string,
9572 size_t regerror(int errcode, const regex_t *preg,
9575 void regfree(regex_t *preg);
9625 passed in the argument pattern. The preg argument is a pointer to a
9687 preg structure is filled in on success, and one member of the structure
9692 use the contents of the preg structure. If, for example, you pass it to
9733 The function regexec() is called to match a compiled pattern preg
9791 or regexec() to a printable message. If preg is not NULL, the error
9801 ciated with the preg structure. The function regfree() frees all such
[all …]

Completed in 57 milliseconds