Lines Matching refs:my_res
205 MYSQLI_RESOURCE *my_res = (MYSQLI_RESOURCE *)intern->ptr; in mysqli_objects_free_storage() local
207 my_efree(my_res); in mysqli_objects_free_storage()
221 MYSQLI_RESOURCE *my_res = (MYSQLI_RESOURCE *)intern->ptr; in mysqli_link_free_storage() local
223 if (my_res && my_res->ptr) { in mysqli_link_free_storage()
224 MY_MYSQL *mysql = (MY_MYSQL *)my_res->ptr; in mysqli_link_free_storage()
226 php_mysqli_close(mysql, MYSQLI_CLOSE_EXPLICIT, my_res->status TSRMLS_CC); in mysqli_link_free_storage()
230 my_res->status = MYSQLI_STATUS_UNKNOWN; in mysqli_link_free_storage()
249 MYSQLI_RESOURCE *my_res = (MYSQLI_RESOURCE *)intern->ptr; in mysqli_stmt_free_storage() local
251 if (my_res && my_res->ptr) { in mysqli_stmt_free_storage()
252 MY_STMT *stmt = (MY_STMT *)my_res->ptr; in mysqli_stmt_free_storage()
265 MYSQLI_RESOURCE *my_res = (MYSQLI_RESOURCE *)intern->ptr; in mysqli_result_free_storage() local
267 if (my_res && my_res->ptr) { in mysqli_result_free_storage()
268 mysql_free_result(my_res->ptr); in mysqli_result_free_storage()
280 MYSQLI_RESOURCE *my_res = (MYSQLI_RESOURCE *)intern->ptr; in mysqli_warning_free_storage() local
282 if (my_res && my_res->ptr) { in mysqli_warning_free_storage()
283 php_clear_warnings((MYSQLI_WARNING *)my_res->info); in mysqli_warning_free_storage()
284 my_res->ptr = NULL; in mysqli_warning_free_storage()