Lines Matching refs:bbuf
115 void php_free_stmt_bind_buffer(BIND_BUFFER bbuf, int type) in php_free_stmt_bind_buffer() argument
119 if (!bbuf.var_cnt) { in php_free_stmt_bind_buffer()
123 for (i=0; i < bbuf.var_cnt; i++) { in php_free_stmt_bind_buffer()
126 if (type == FETCH_RESULT && bbuf.buf[i].val) { in php_free_stmt_bind_buffer()
127 efree(bbuf.buf[i].val); in php_free_stmt_bind_buffer()
130 zval_ptr_dtor(&bbuf.vars[i]); in php_free_stmt_bind_buffer()
133 if (bbuf.vars) { in php_free_stmt_bind_buffer()
134 efree(bbuf.vars); in php_free_stmt_bind_buffer()
144 efree(bbuf.buf); in php_free_stmt_bind_buffer()
146 efree(bbuf.is_null); in php_free_stmt_bind_buffer()
149 bbuf.var_cnt = 0; in php_free_stmt_bind_buffer()