Lines Matching refs:retcode

985 	CS_RETCODE retcode;  in exec_cmd()  local
1009 while ((retcode = ct_results(sybase_ptr->cmd, &restype))==CS_SUCCEED) { in exec_cmd()
1033 switch (retcode) { in exec_cmd()
1093 CS_RETCODE retcode; in php_sybase_finish_results() local
1117 while ((retcode = ct_results(result->sybase_ptr->cmd, &restype))==CS_SUCCEED) { in php_sybase_finish_results()
1154 switch (retcode) { in php_sybase_finish_results()
1174 retcode = CS_FAIL; in php_sybase_finish_results()
1178 return retcode; in php_sybase_finish_results()
1197 CS_INT retcode; in php_sybase_fetch_result_row() local
1205 …while ((retcode=ct_fetch(result->sybase_ptr->cmd, CS_UNUSED, CS_UNUSED, CS_UNUSED, NULL))==CS_SUCC… in php_sybase_fetch_result_row()
1272 if (retcode==CS_ROW_FAIL) { in php_sybase_fetch_result_row()
1274 return retcode; in php_sybase_fetch_result_row()
1276 result->last_retcode= retcode; in php_sybase_fetch_result_row()
1277 switch (retcode) { in php_sybase_fetch_result_row()
1279 retcode = php_sybase_finish_results(result TSRMLS_CC); in php_sybase_fetch_result_row()
1289 retcode = CS_FAIL; /* Just to be sure */ in php_sybase_fetch_result_row()
1293 return retcode; in php_sybase_fetch_result_row()
1301 CS_INT retcode; in php_sybase_fetch_result_set() local
1413 retcode = CS_SUCCEED; in php_sybase_fetch_result_set()
1415 if ((retcode = php_sybase_fetch_result_row(result, -1 TSRMLS_CC)) == CS_FAIL) { in php_sybase_fetch_result_set()
1420 result->last_retcode = retcode; in php_sybase_fetch_result_set()
1433 CS_RETCODE retcode; in php_sybase_query() local
1563 while ((retcode = ct_results(sybase_ptr->cmd, &restype))==CS_SUCCEED) { in php_sybase_query()
1585 retcode = result->last_retcode; in php_sybase_query()
1603 if (retcode == CS_END_RESULTS) { in php_sybase_query()
1607 switch (retcode) { in php_sybase_query()