default_fetch_type  338 ext/pdo/pdo_dbh.c 		dbh->default_fetch_type = PDO_FETCH_BOTH;
default_fetch_type  542 ext/pdo/pdo_dbh.c 	stmt->default_fetch_type = dbh->default_fetch_type;
default_fetch_type  734 ext/pdo/pdo_dbh.c 			dbh->default_fetch_type = lval;
default_fetch_type  884 ext/pdo/pdo_dbh.c 			RETURN_LONG(dbh->default_fetch_type);
default_fetch_type 1083 ext/pdo/pdo_dbh.c 	stmt->default_fetch_type = dbh->default_fetch_type;
default_fetch_type  842 ext/pdo/pdo_stmt.c 		how = stmt->default_fetch_type;
default_fetch_type 1226 ext/pdo/pdo_stmt.c 		flags = stmt->default_fetch_type & PDO_FETCH_FLAGS;
default_fetch_type 1227 ext/pdo/pdo_stmt.c 		mode = stmt->default_fetch_type & ~PDO_FETCH_FLAGS;
default_fetch_type 1490 ext/pdo/pdo_stmt.c 		flags |= stmt->default_fetch_type & PDO_FETCH_FLAGS;
default_fetch_type 1491 ext/pdo/pdo_stmt.c 		how |= stmt->default_fetch_type & ~PDO_FETCH_FLAGS;
default_fetch_type 1497 ext/pdo/pdo_stmt.c 			(how == PDO_FETCH_USE_DEFAULT && stmt->default_fetch_type == PDO_FETCH_KEY_PAIR)
default_fetch_type 1511 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 1845 ext/pdo/pdo_stmt.c 	switch (stmt->default_fetch_type) {
default_fetch_type 1856 ext/pdo/pdo_stmt.c 	stmt->default_fetch_type = PDO_FETCH_BOTH;
default_fetch_type 1986 ext/pdo/pdo_stmt.c 		stmt->default_fetch_type = mode;
default_fetch_type 2336 ext/pdo/pdo_stmt.c 	if (!Z_ISUNDEF(stmt->fetch.into) && stmt->default_fetch_type == PDO_FETCH_INTO) {
default_fetch_type  501 ext/pdo/php_pdo_driver.h 	enum pdo_fetch_type default_fetch_type;
default_fetch_type  613 ext/pdo/php_pdo_driver.h 	enum pdo_fetch_type default_fetch_type;
default_fetch_type 1059 ext/pdo_pgsql/pgsql_driver.c 		result_type = dbh->default_fetch_type;