Home | History | Annotate | Download | only in lib

Lines Matching refs:sResult

1481     pico_status_t sResult = PICO_OK;
1512 sResult = picodata_cbGetItem(this->cbIn,
1515 if (PICO_EOF == sResult) { /* there are no more items available and we always need more data here */
1520 PICODBG_DEBUG(("got item, status: %d", sResult));
1522 if ((PICO_OK == sResult) && (blen > 0)) {
1528 PICODBG_ERROR(("COLLECT got bad result %i", sResult));
1554 sResult = picodata_get_iteminfo(
1561 sResult = picodata_get_iteminfo(cep->inBuf + cep->inReadPos,
1564 if (PICO_EXC_BUF_UNDERFLOW == sResult) {
1572 } else if (PICO_OK != sResult) {
1573 PICODBG_ERROR(("unknown exception (sResult == %i)",sResult));
1575 this->common->em, sResult, NULL, NULL);
1645 sResult
1654 if (sResult != PICO_OK) {
1657 sResult, NULL, NULL);
1922 sResult = picodata_cbPutItem(this->cbOut, cep->outBuf,
1925 if (PICO_EXC_BUF_OVERFLOW == sResult) {
1929 } else if (PICO_OK == sResult) {
1949 PICODBG_DEBUG(("FEED got exception %i when trying to output item",sResult));
1951 return (picodata_step_result_t) sResult;
1957 sResult = PICO_EXC_BUF_IGNORE;