Lines Matching refs:result

185 	ZEND_ARG_INFO(0, result)
189 ZEND_ARG_INFO(0, result)
194 ZEND_ARG_INFO(0, result)
204 ZEND_ARG_INFO(0, result)
211 ZEND_ARG_INFO(0, result)
216 ZEND_ARG_INFO(0, result)
221 ZEND_ARG_INFO(0, result)
226 ZEND_ARG_INFO(0, result)
231 ZEND_ARG_INFO(0, result)
236 ZEND_ARG_INFO(0, result)
242 ZEND_ARG_INFO(0, result)
248 ZEND_ARG_INFO(0, result)
253 ZEND_ARG_INFO(0, result)
259 ZEND_ARG_INFO(0, result)
267 ZEND_ARG_INFO(0, result)
271 ZEND_ARG_INFO(0, result)
276 ZEND_ARG_INFO(0, result)
281 ZEND_ARG_INFO(0, result)
287 ZEND_ARG_INFO(0, result)
293 ZEND_ARG_INFO(0, result)
297 ZEND_ARG_INFO(0, result)
426 ZEND_ARG_INFO(0, result)
431 ZEND_ARG_INFO(0, result)
492 ZEND_ARG_INFO(0, result)
899 PQclear(pg_result->result); in _free_result()
1626 pg_result->result = pgsql_result;
1766 pg_result->result = pgsql_result;
1849 pg_result->result = pgsql_result;
1973 pg_result->result = pgsql_result;
1994 zval *result; local
1998 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &result) == FAILURE) {
2002 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2004 pgsql_result = pg_result->result;
2080 PGresult *result; local
2098 …if ((result = PQexec(pgsql,"select oid,typname from pg_type")) == NULL || PQresultStatus(result) !…
2099 if (result) {
2100 PQclear(result);
2105 num_rows = PQntuples(result);
2106 oid_offset = PQfnumber(result,"oid");
2107 name_offset = PQfnumber(result,"typname");
2110 if ((tmp_oid = PQgetvalue(result,i,oid_offset))==NULL) {
2119 if ((tmp_name = PQgetvalue(result,i,name_offset))==NULL) {
2129 PQclear(result);
2142 zval *result; local
2151 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl|b", &result, &fnum, &return_oid) == FAILU…
2155 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2157 if (fnum < 0 || fnum >= PQnfields(pg_result->result)) {
2162 oid = PQftable(pg_result->result, fnum);
2238 zval *result; local
2244 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &result, &field) == FAILURE) {
2248 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2250 pgsql_result = pg_result->result;
2334 zval *result; local
2340 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs", &result, &field, &field_len) == FAILURE…
2344 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2346 pgsql_result = pg_result->result;
2357 zval *result, **field=NULL; local
2364 if (zend_parse_parameters(argc TSRMLS_CC, "rZ", &result, &field) == FAILURE) {
2368 if (zend_parse_parameters(argc TSRMLS_CC, "rlZ", &result, &row, &field) == FAILURE) {
2373 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2375 pgsql_result = pg_result->result;
2388 row, Z_LVAL_P(result));
2419 zval *result, *zrow = NULL; local
2432 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|z!sz", &result, &zrow, &class_name, &class…
2446 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|z!l", &result, &zrow, &result_type) == FAI…
2467 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2469 pgsql_result = pg_result->result;
2476 row, Z_LVAL_P(result));
2635 zval *result; local
2639 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &result) == FAILURE) {
2643 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2645 pgsql_result = pg_result->result;
2658 zval *result; local
2665 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|l", &result, &colno) == FAILURE) {
2669 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2671 pgsql_result = pg_result->result;
2699 zval *result; local
2703 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &result, &row) == FAILURE) {
2707 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2709 if (row < 0 || row >= PQntuples(pg_result->result)) {
2727 zval *result, **field; local
2734 if (zend_parse_parameters(argc TSRMLS_CC, "rZ", &result, &field) == FAILURE) {
2738 if (zend_parse_parameters(argc TSRMLS_CC, "rlZ", &result, &row, &field) == FAILURE) {
2743 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2745 pgsql_result = pg_result->result;
2758 row, Z_LVAL_P(result));
2810 zval *result; local
2813 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &result) == FAILURE) {
2817 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2818 if (Z_LVAL_P(result) == 0) {
2821 zend_list_delete(Z_RESVAL_P(result));
2830 zval *result; local
2837 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &result) == FAILURE) {
2841 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2842 pgsql_result = pg_result->result;
3679 int result = 0; local
3696 result = PQendcopy(pgsql);
3698 if (result!=0) {
3715 int result = 0, argc = ZEND_NUM_ARGS(); local
3735 result = PQputline(pgsql, query);
3736 if (result==EOF) {
4227 zval *result; local
4233 &result) == FAILURE) {
4237 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
4239 pgsql_result = pg_result->result;
4253 zval *result; local
4260 &result, &fieldcode) == FAILURE) {
4264 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
4266 pgsql_result = pg_result->result;
4734 pg_result->result = pgsql_result;
4744 zval *result; local
4751 &result, &result_type) == FAILURE) {
4755 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
4757 pgsql_result = pg_result->result;
5150 …nvert(PGconn *pg_link, const char *table_name, const zval *values, zval *result, ulong opt TSRMLS_… argument
5162 assert(Z_TYPE_P(result) == IS_ARRAY);
5775 add_assoc_zval(result, field, new_val);