default_fetch_type  375 ext/pdo/pdo_dbh.c 		dbh->default_fetch_type = PDO_FETCH_BOTH;
default_fetch_type  577 ext/pdo/pdo_dbh.c 	stmt->default_fetch_type = dbh->default_fetch_type;
default_fetch_type  770 ext/pdo/pdo_dbh.c 			dbh->default_fetch_type = Z_LVAL_P(value);
default_fetch_type  922 ext/pdo/pdo_dbh.c 			RETURN_LONG(dbh->default_fetch_type);
default_fetch_type 1114 ext/pdo/pdo_dbh.c 	stmt->default_fetch_type = dbh->default_fetch_type;
default_fetch_type  850 ext/pdo/pdo_stmt.c 		how = stmt->default_fetch_type;
default_fetch_type 1241 ext/pdo/pdo_stmt.c 		flags = stmt->default_fetch_type & PDO_FETCH_FLAGS;
default_fetch_type 1242 ext/pdo/pdo_stmt.c 		mode = stmt->default_fetch_type & ~PDO_FETCH_FLAGS;
default_fetch_type 1504 ext/pdo/pdo_stmt.c 		flags |= stmt->default_fetch_type & PDO_FETCH_FLAGS;
default_fetch_type 1505 ext/pdo/pdo_stmt.c 		how |= stmt->default_fetch_type & ~PDO_FETCH_FLAGS;
default_fetch_type 1512 ext/pdo/pdo_stmt.c 			(how == PDO_FETCH_USE_DEFAULT && stmt->default_fetch_type == PDO_FETCH_KEY_PAIR)
default_fetch_type 1529 ext/pdo/pdo_stmt.c 		} else if (how == PDO_FETCH_KEY_PAIR || (how == PDO_FETCH_USE_DEFAULT && stmt->default_fetch_type == PDO_FETCH_KEY_PAIR)) {
default_fetch_type 1865 ext/pdo/pdo_stmt.c 	switch (stmt->default_fetch_type) {
default_fetch_type 1876 ext/pdo/pdo_stmt.c 	stmt->default_fetch_type = PDO_FETCH_BOTH;
default_fetch_type 2014 ext/pdo/pdo_stmt.c 		stmt->default_fetch_type = mode;
default_fetch_type 2387 ext/pdo/pdo_stmt.c 	if (stmt->fetch.into && stmt->default_fetch_type == PDO_FETCH_INTO) {
default_fetch_type  519 ext/pdo/php_pdo_driver.h 	enum pdo_fetch_type default_fetch_type;
default_fetch_type  615 ext/pdo/php_pdo_driver.h 	enum pdo_fetch_type default_fetch_type;
default_fetch_type 1061 ext/pdo_pgsql/pgsql_driver.c 		result_type = dbh->default_fetch_type;