Home | History | Annotate | Download | only in src

Lines Matching refs:where

64 /* If where is NULL, the length of memory required is returned.
68 where where to put the information
72 PCRE2_ERROR_BADOPTION if "where" not recognized
77 pcre2_config(uint32_t what, void *where)
79 if (where == NULL) /* Requests a length */
113 *((uint32_t *)where) = PCRE2_BSR_ANYCRLF;
115 *((uint32_t *)where) = PCRE2_BSR_UNICODE;
121 *((uint32_t *)where) = 1;
123 *((uint32_t *)where) = 0;
131 return (int)(1 + ((where == NULL)?
132 strlen(v) : PRIV(strcpy_c8)((PCRE2_UCHAR *)where, v)));
139 *((uint32_t *)where) = (uint32_t)configured_link_size;
143 *((uint32_t *)where) = MATCH_LIMIT;
147 *((uint32_t *)where) = NEWLINE_DEFAULT;
151 *((uint32_t *)where) = PARENS_NEST_LIMIT;
155 *((uint32_t *)where) = MATCH_LIMIT_RECURSION;
160 *((uint32_t *)where) = 0;
162 *((uint32_t *)where) = 1;
173 return (int)(1 + ((where == NULL)?
174 strlen(v) : PRIV(strcpy_c8)((PCRE2_UCHAR *)where, v)));
180 *((uint32_t *)where) = 1;
182 *((uint32_t *)where) = 0;
210 return (int)(1 + ((where == NULL)?
211 strlen(v) : PRIV(strcpy_c8)((PCRE2_UCHAR *)where, v)));