invokedstatement 2654 ext/oci8/oci8.c 	php_oci_statement *invokedstatement;  /* statement this function was invoked with */
invokedstatement 2714 ext/oci8/oci8.c 	PHP_OCI_ZVAL_TO_STATEMENT(z_statement, invokedstatement);
invokedstatement 2716 ext/oci8/oci8.c 	if (invokedstatement->impres_flag == PHP_OCI_IMPRES_NO_CHILDREN) {
invokedstatement 2718 ext/oci8/oci8.c 	    statement = invokedstatement;
invokedstatement 2719 ext/oci8/oci8.c 	} else if (invokedstatement->impres_flag == PHP_OCI_IMPRES_HAS_CHILDREN) {
invokedstatement 2721 ext/oci8/oci8.c 		statement = (php_oci_statement *)invokedstatement->impres_child_stmt;
invokedstatement 2726 ext/oci8/oci8.c 		PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)invokedstatement->stmt, OCI_HTYPE_STMT,
invokedstatement 2727 ext/oci8/oci8.c 						    (dvoid *) &invokedstatement->impres_count,
invokedstatement 2728 ext/oci8/oci8.c 						    (ub4 *)NULL, OCI_ATTR_IMPLICIT_RESULT_COUNT, invokedstatement->err));
invokedstatement 2732 ext/oci8/oci8.c 		if (invokedstatement->impres_count > 0) {
invokedstatement 2734 ext/oci8/oci8.c 			statement = php_oci_get_implicit_resultset(invokedstatement);
invokedstatement 2737 ext/oci8/oci8.c 			invokedstatement->impres_count--;
invokedstatement 2738 ext/oci8/oci8.c 			invokedstatement->impres_child_stmt = (struct php_oci_statement *)statement;
invokedstatement 2739 ext/oci8/oci8.c 			invokedstatement->impres_flag = PHP_OCI_IMPRES_HAS_CHILDREN;
invokedstatement 2741 ext/oci8/oci8.c 			statement = invokedstatement; /* didn't find Implicit Result Sets */
invokedstatement 2742 ext/oci8/oci8.c 			invokedstatement->impres_flag = PHP_OCI_IMPRES_NO_CHILDREN;  /* Don't bother checking again */
invokedstatement 2748 ext/oci8/oci8.c 		if (invokedstatement->impres_count > 0) {
invokedstatement 2750 ext/oci8/oci8.c 	        statement = php_oci_get_implicit_resultset(invokedstatement);
invokedstatement 2753 ext/oci8/oci8.c 			invokedstatement->impres_count--;
invokedstatement 2754 ext/oci8/oci8.c 			invokedstatement->impres_child_stmt = (struct php_oci_statement *)statement;