Searched refs:maxRollbacks (Results 1 - 1 of 1) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/
H A Dxmlregexp.c316 int maxRollbacks; member in struct:_xmlRegExecCtxt
3032 if (exec->maxRollbacks == 0) {
3033 exec->maxRollbacks = 4;
3034 exec->rollbacks = (xmlRegExecRollback *) xmlMalloc(exec->maxRollbacks *
3038 exec->maxRollbacks = 0;
3042 exec->maxRollbacks * sizeof(xmlRegExecRollback));
3043 } else if (exec->nbRollbacks >= exec->maxRollbacks) {
3045 int len = exec->maxRollbacks;
3047 exec->maxRollbacks *= 2;
3049 exec->maxRollbacks * sizeo
[all...]

Completed in 40 milliseconds