HomeSort by relevance Sort by last modified time
    Searched refs:testErrorsSize (Results 1 - 5 of 5) sorted by null

  /external/libxml2/
runxmlconf.c 107 static int testErrorsSize = 0;
119 testErrorsSize = 0; testErrors[0] = 0;
132 if (testErrorsSize >= 32768)
134 res = snprintf(&testErrors[testErrorsSize],
135 32768 - testErrorsSize,
142 if (testErrorsSize + res >= 32768) {
144 testErrorsSize = 32768;
145 testErrors[testErrorsSize] = 0;
147 testErrorsSize += res;
149 testErrors[testErrorsSize] = 0
    [all...]
testrecurse.c 311 static int testErrorsSize = 0;
318 if (testErrorsSize >= 32768)
321 res = vsnprintf(&testErrors[testErrorsSize],
322 32768 - testErrorsSize,
325 if (testErrorsSize + res >= 32768) {
327 testErrorsSize = 32768;
328 testErrors[testErrorsSize] = 0;
330 testErrorsSize += res;
332 testErrors[testErrorsSize] = 0;
857 testErrorsSize = 0
    [all...]
runsuite.c 164 static int testErrorsSize = 0;
174 testErrorsSize = 0; testErrors[0] = 0;
188 if (testErrorsSize >= 32768)
191 res = vsnprintf(&testErrors[testErrorsSize],
192 32768 - testErrorsSize,
195 if (testErrorsSize + res >= 32768) {
197 testErrorsSize = 32768;
198 testErrors[testErrorsSize] = 0;
200 testErrorsSize += res;
202 testErrors[testErrorsSize] = 0
    [all...]
runtest.c 247 static int testErrorsSize = 0;
254 if (testErrorsSize >= 32768)
257 res = vsnprintf(&testErrors[testErrorsSize],
258 32768 - testErrorsSize,
261 if (testErrorsSize + res >= 32768) {
263 testErrorsSize = 32768;
264 testErrors[testErrorsSize] = 0;
266 testErrorsSize += res;
268 testErrors[testErrorsSize] = 0;
276 if (testErrorsSize >= 32768
    [all...]
testlimits.c 403 static int testErrorsSize = 0;
410 if (testErrorsSize >= 32768)
413 res = vsnprintf(&testErrors[testErrorsSize],
414 32768 - testErrorsSize,
417 if (testErrorsSize + res >= 32768) {
419 testErrorsSize = 32768;
420 testErrors[testErrorsSize] = 0;
422 testErrorsSize += res;
424 testErrors[testErrorsSize] = 0;
    [all...]

Completed in 1078 milliseconds