Searched refs:errptr (Results 1 – 2 of 2) sorted by relevance
| /lighttpd1.4/src/ |
| H A D | data_config.c | 131 const char *errptr; in data_config_pcre_compile() 134 dc->regex = pcre_compile(dc->string.ptr, 0, &errptr, &erroff, NULL); in data_config_pcre_compile() 138 dc->string.ptr, errptr, erroff); in data_config_pcre_compile() 143 dc->regex_study = pcre_study(dc->regex, study_options, &errptr); in data_config_pcre_compile() 144 if (NULL == dc->regex_study && errptr != NULL) { in data_config_pcre_compile() 147 dc->string.ptr, errptr); in data_config_pcre_compile()
|
| H A D | keyvalue.c | 117 const char *errptr; in pcre_keyvalue_buffer_append() local 123 0, &errptr, &erroff, NULL))) { in pcre_keyvalue_buffer_append() 126 "rexexp compilation error at %s", errptr); in pcre_keyvalue_buffer_append() 131 if (NULL == (kv->key_extra = pcre_study(kv->key, study_options, &errptr)) in pcre_keyvalue_buffer_append() 132 && errptr != NULL) { in pcre_keyvalue_buffer_append() 135 key->ptr, errptr); in pcre_keyvalue_buffer_append()
|