Lines Matching refs:result

191 	ZEND_ARG_INFO(0, result)
195 ZEND_ARG_INFO(0, result)
200 ZEND_ARG_INFO(0, result)
210 ZEND_ARG_INFO(0, result)
217 ZEND_ARG_INFO(0, result)
222 ZEND_ARG_INFO(0, result)
227 ZEND_ARG_INFO(0, result)
232 ZEND_ARG_INFO(0, result)
237 ZEND_ARG_INFO(0, result)
242 ZEND_ARG_INFO(0, result)
248 ZEND_ARG_INFO(0, result)
254 ZEND_ARG_INFO(0, result)
259 ZEND_ARG_INFO(0, result)
265 ZEND_ARG_INFO(0, result)
273 ZEND_ARG_INFO(0, result)
277 ZEND_ARG_INFO(0, result)
282 ZEND_ARG_INFO(0, result)
287 ZEND_ARG_INFO(0, result)
293 ZEND_ARG_INFO(0, result)
299 ZEND_ARG_INFO(0, result)
303 ZEND_ARG_INFO(0, result)
443 ZEND_ARG_INFO(0, result)
448 ZEND_ARG_INFO(0, result)
509 ZEND_ARG_INFO(0, result)
771 char *result, *rp, *s;
779 …rp = result = (char *)safe_emalloc(len, 2, 5); /* leading " E" needs extra 2 bytes + quote_chars o…
843 return result;
1017 PQclear(pg_result->result); in _free_result()
1777 pg_result->result = pgsql_result;
1917 pg_result->result = pgsql_result;
2000 pg_result->result = pgsql_result;
2124 pg_result->result = pgsql_result;
2145 zval *result; local
2149 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &result) == FAILURE) {
2153 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2155 pgsql_result = pg_result->result;
2231 PGresult *result; local
2249 …if ((result = PQexec(pgsql,"select oid,typname from pg_type")) == NULL || PQresultStatus(result) !…
2250 if (result) {
2251 PQclear(result);
2256 num_rows = PQntuples(result);
2257 oid_offset = PQfnumber(result,"oid");
2258 name_offset = PQfnumber(result,"typname");
2261 if ((tmp_oid = PQgetvalue(result,i,oid_offset))==NULL) {
2270 if ((tmp_name = PQgetvalue(result,i,name_offset))==NULL) {
2280 PQclear(result);
2293 zval *result; local
2302 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl|b", &result, &fnum, &return_oid) == FAILU…
2306 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2308 if (fnum < 0 || fnum >= PQnfields(pg_result->result)) {
2313 oid = PQftable(pg_result->result, fnum);
2387 zval *result; local
2393 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &result, &field) == FAILURE) {
2397 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2399 pgsql_result = pg_result->result;
2483 zval *result; local
2489 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs", &result, &field, &field_len) == FAILURE…
2493 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2495 pgsql_result = pg_result->result;
2506 zval *result, **field=NULL; local
2513 if (zend_parse_parameters(argc TSRMLS_CC, "rZ", &result, &field) == FAILURE) {
2517 if (zend_parse_parameters(argc TSRMLS_CC, "rlZ", &result, &row, &field) == FAILURE) {
2522 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2524 pgsql_result = pg_result->result;
2537 row, Z_LVAL_P(result));
2568 zval *result, *zrow = NULL; local
2581 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|z!sz", &result, &zrow, &class_name, &class…
2595 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|z!l", &result, &zrow, &result_type) == FAI…
2616 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2618 pgsql_result = pg_result->result;
2625 row, Z_LVAL_P(result));
2780 zval *result; local
2784 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &result) == FAILURE) {
2788 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2790 pgsql_result = pg_result->result;
2803 zval *result; local
2810 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|l", &result, &colno) == FAILURE) {
2814 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2816 pgsql_result = pg_result->result;
2844 zval *result; local
2848 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &result, &row) == FAILURE) {
2852 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2854 if (row < 0 || row >= PQntuples(pg_result->result)) {
2872 zval *result, **field; local
2879 if (zend_parse_parameters(argc TSRMLS_CC, "rZ", &result, &field) == FAILURE) {
2883 if (zend_parse_parameters(argc TSRMLS_CC, "rlZ", &result, &row, &field) == FAILURE) {
2888 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2890 pgsql_result = pg_result->result;
2903 row, Z_LVAL_P(result));
2955 zval *result; local
2958 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &result) == FAILURE) {
2962 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2963 if (Z_LVAL_P(result) == 0) {
2966 zend_list_delete(Z_RESVAL_P(result));
2975 zval *result; local
2982 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &result) == FAILURE) {
2986 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
2987 pgsql_result = pg_result->result;
3804 int result = 0; local
3821 result = PQendcopy(pgsql);
3823 if (result!=0) {
3840 int result = 0, argc = ZEND_NUM_ARGS(); local
3860 result = PQputline(pgsql, query);
3861 if (result==EOF) {
4437 zval *result; local
4443 &result) == FAILURE) {
4447 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
4449 pgsql_result = pg_result->result;
4464 zval *result; local
4471 &result, &fieldcode) == FAILURE) {
4475 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
4477 pgsql_result = pg_result->result;
4986 pg_result->result = pgsql_result;
4996 zval *result; local
5003 &result, &result_type) == FAILURE) {
5007 ZEND_FETCH_RESOURCE(pg_result, pgsql_result_handle *, &result, -1, "PostgreSQL result", le_result);
5009 pgsql_result = pg_result->result;
5421 …nvert(PGconn *pg_link, const char *table_name, const zval *values, zval *result, ulong opt TSRMLS_… argument
5433 assert(Z_TYPE_P(result) == IS_ARRAY);
6055 add_assoc_zval(result, field, new_val);
6058 add_assoc_zval(result, escaped, new_val);