invokedstatement 2639 ext/oci8/oci8.c 	php_oci_statement *invokedstatement;  /* statement this function was invoked with */
invokedstatement 2693 ext/oci8/oci8.c 	PHP_OCI_ZVAL_TO_STATEMENT(z_statement, invokedstatement);
invokedstatement 2695 ext/oci8/oci8.c 	if (invokedstatement->impres_flag == PHP_OCI_IMPRES_NO_CHILDREN) {
invokedstatement 2697 ext/oci8/oci8.c 	    statement = invokedstatement; 
invokedstatement 2698 ext/oci8/oci8.c 	} else if (invokedstatement->impres_flag == PHP_OCI_IMPRES_HAS_CHILDREN) {
invokedstatement 2700 ext/oci8/oci8.c 		statement = (php_oci_statement *)invokedstatement->impres_child_stmt;
invokedstatement 2705 ext/oci8/oci8.c 		PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)invokedstatement->stmt, OCI_HTYPE_STMT, 
invokedstatement 2706 ext/oci8/oci8.c 						    (dvoid *) &invokedstatement->impres_count, 
invokedstatement 2707 ext/oci8/oci8.c 						    (ub4 *)NULL, OCI_ATTR_IMPLICIT_RESULT_COUNT, invokedstatement->err));
invokedstatement 2711 ext/oci8/oci8.c 		if (invokedstatement->impres_count > 0) {
invokedstatement 2713 ext/oci8/oci8.c 			statement = php_oci_get_implicit_resultset(invokedstatement TSRMLS_CC);
invokedstatement 2716 ext/oci8/oci8.c 			invokedstatement->impres_count--;
invokedstatement 2717 ext/oci8/oci8.c 			invokedstatement->impres_child_stmt = (struct php_oci_statement *)statement;
invokedstatement 2718 ext/oci8/oci8.c 			invokedstatement->impres_flag = PHP_OCI_IMPRES_HAS_CHILDREN;
invokedstatement 2720 ext/oci8/oci8.c 			statement = invokedstatement; /* didn't find Implicit Result Sets */
invokedstatement 2721 ext/oci8/oci8.c 			invokedstatement->impres_flag = PHP_OCI_IMPRES_NO_CHILDREN;  /* Don't bother checking again */
invokedstatement 2727 ext/oci8/oci8.c 		if (invokedstatement->impres_count > 0) {
invokedstatement 2729 ext/oci8/oci8.c 	        statement = php_oci_get_implicit_resultset(invokedstatement TSRMLS_CC);
invokedstatement 2732 ext/oci8/oci8.c 			invokedstatement->impres_count--;
invokedstatement 2733 ext/oci8/oci8.c 			invokedstatement->impres_child_stmt = (struct php_oci_statement *)statement;