Lines Matching refs:fetchtype
1092 long fetchtype; in php_mysqli_fetch_into_hash() local
1119 fetchtype = MYSQLI_ASSOC; in php_mysqli_fetch_into_hash()
1125 fetchtype = override_flags; in php_mysqli_fetch_into_hash()
1127 fetchtype = MYSQLI_BOTH; in php_mysqli_fetch_into_hash()
1128 …() TSRMLS_CC, getThis(), "O|l", &mysql_result, mysqli_result_class_entry, &fetchtype) == FAILURE) { in php_mysqli_fetch_into_hash()
1135 if (fetchtype < MYSQLI_ASSOC || fetchtype > MYSQLI_BOTH) { in php_mysqli_fetch_into_hash()
1145 if (fetchtype & MYSQLI_ASSOC) { in php_mysqli_fetch_into_hash()
1195 if (fetchtype & MYSQLI_NUM) { in php_mysqli_fetch_into_hash()
1198 if (fetchtype & MYSQLI_ASSOC) { in php_mysqli_fetch_into_hash()
1199 if (fetchtype & MYSQLI_NUM) { in php_mysqli_fetch_into_hash()
1205 if (fetchtype & MYSQLI_NUM) { in php_mysqli_fetch_into_hash()
1208 if (fetchtype & MYSQLI_ASSOC) { in php_mysqli_fetch_into_hash()
1222 …mysqlnd_fetch_into(result, ((fetchtype & MYSQLI_NUM)? MYSQLND_FETCH_NUM:0) | ((fetchtype & MYSQLI_… in php_mysqli_fetch_into_hash()
1257 …mysqlnd_fetch_into(result, ((fetchtype & MYSQLI_NUM)? MYSQLND_FETCH_NUM:0) | ((fetchtype & MYSQLI_… in php_mysqli_fetch_into_hash()