fetch_type       2350 Zend/zend_compile.c 		int fetch_type;
fetch_type       2352 Zend/zend_compile.c 		fetch_type = zend_get_class_fetch_type(Z_STRVAL(class_name->u.constant), Z_STRLEN(class_name->u.constant));
fetch_type       2353 Zend/zend_compile.c 		switch (fetch_type) {
fetch_type       2358 Zend/zend_compile.c 				opline->extended_value = fetch_type;
fetch_type       5724 Zend/zend_compile.c 	ulong fetch_type = 0;
fetch_type       5739 Zend/zend_compile.c 				result->u.constant.type = IS_CONSTANT | fetch_type;
fetch_type       5785 Zend/zend_compile.c 				fetch_type |= IS_CONSTANT_UNQUALIFIED;
fetch_type       5789 Zend/zend_compile.c 			result->u.constant.type = IS_CONSTANT | fetch_type;
fetch_type       6091 Zend/zend_compile.c void zend_do_fetch_static_variable(znode *varname, const znode *static_assignment, int fetch_type TSRMLS_DC) /* {{{ */
fetch_type       6121 Zend/zend_compile.c 	opline->opcode = (fetch_type == ZEND_FETCH_LEXICAL) ? ZEND_FETCH_R : ZEND_FETCH_W;		/* the default mode must be Write, since fetch_simple_variable() is used to define function arguments */
fetch_type       6137 Zend/zend_compile.c 	if (fetch_type == ZEND_FETCH_LEXICAL) {
fetch_type       6170 Zend/zend_compile.c void zend_do_fetch_global_variable(znode *varname, const znode *static_assignment, int fetch_type TSRMLS_DC) /* {{{ */
fetch_type       6191 Zend/zend_compile.c 	opline->extended_value = fetch_type;
fetch_type        474 Zend/zend_compile.h void zend_do_fetch_static_variable(znode *varname, const znode *static_assignment, int fetch_type TSRMLS_DC);
fetch_type        475 Zend/zend_compile.h void zend_do_fetch_global_variable(znode *varname, const znode *static_assignment, int fetch_type TSRMLS_DC);
fetch_type        576 Zend/zend_execute.c ZEND_API char * zend_verify_arg_class_kind(const zend_arg_info *cur_arg_info, ulong fetch_type, const char **class_name, zend_class_entry **pce TSRMLS_DC)
fetch_type        578 Zend/zend_execute.c 	*pce = zend_fetch_class(cur_arg_info->class_name, cur_arg_info->class_name_len, (fetch_type | ZEND_FETCH_CLASS_AUTO | ZEND_FETCH_CLASS_NO_AUTOLOAD) TSRMLS_CC);
fetch_type        626 Zend/zend_execute.c static inline int zend_verify_arg_type(zend_function *zf, zend_uint arg_num, zval *arg, ulong fetch_type, zval *default_value TSRMLS_DC)
fetch_type        648 Zend/zend_execute.c 			need_msg = zend_verify_arg_class_kind(cur_arg_info, fetch_type, &class_name, &ce TSRMLS_CC);
fetch_type        652 Zend/zend_execute.c 			need_msg = zend_verify_arg_class_kind(cur_arg_info, fetch_type, &class_name, &ce TSRMLS_CC);
fetch_type        657 Zend/zend_execute.c 			need_msg = zend_verify_arg_class_kind(cur_arg_info, fetch_type, &class_name, &ce TSRMLS_CC);
fetch_type       1006 Zend/zend_execute.c static inline HashTable *zend_get_target_symbol_table(int fetch_type TSRMLS_DC)
fetch_type       1008 Zend/zend_execute.c 	switch (fetch_type) {
fetch_type         71 Zend/zend_execute.h ZEND_API char * zend_verify_arg_class_kind(const zend_arg_info *cur_arg_info, ulong fetch_type, const char **class_name, zend_class_entry **pce TSRMLS_DC);
fetch_type        361 Zend/zend_execute.h ZEND_API zend_class_entry *zend_fetch_class(const char *class_name, uint class_name_len, int fetch_type TSRMLS_DC);
fetch_type        362 Zend/zend_execute.h ZEND_API zend_class_entry *zend_fetch_class_by_name(const char *class_name, uint class_name_len, const zend_literal *key, int fetch_type TSRMLS_DC);
fetch_type       1355 Zend/zend_execute_API.c zend_class_entry *zend_fetch_class(const char *class_name, uint class_name_len, int fetch_type TSRMLS_DC) /* {{{ */
fetch_type       1358 Zend/zend_execute_API.c 	int use_autoload = (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) == 0;
fetch_type       1359 Zend/zend_execute_API.c 	int silent       = (fetch_type & ZEND_FETCH_CLASS_SILENT) != 0;
fetch_type       1361 Zend/zend_execute_API.c 	fetch_type &= ZEND_FETCH_CLASS_MASK;
fetch_type       1364 Zend/zend_execute_API.c 	switch (fetch_type) {
fetch_type       1384 Zend/zend_execute_API.c 				fetch_type = zend_get_class_fetch_type(class_name, class_name_len);
fetch_type       1385 Zend/zend_execute_API.c 				if (fetch_type!=ZEND_FETCH_CLASS_DEFAULT) {
fetch_type       1395 Zend/zend_execute_API.c 				if (fetch_type == ZEND_FETCH_CLASS_INTERFACE) {
fetch_type       1397 Zend/zend_execute_API.c 				} else if (fetch_type == ZEND_FETCH_CLASS_TRAIT) {
fetch_type       1410 Zend/zend_execute_API.c zend_class_entry *zend_fetch_class_by_name(const char *class_name, uint class_name_len, const zend_literal *key, int fetch_type TSRMLS_DC) /* {{{ */
fetch_type       1413 Zend/zend_execute_API.c 	int use_autoload = (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) == 0;
fetch_type       1417 Zend/zend_execute_API.c 			if ((fetch_type & ZEND_FETCH_CLASS_SILENT) == 0 && !EG(exception)) {
fetch_type       1418 Zend/zend_execute_API.c 				if ((fetch_type & ZEND_FETCH_CLASS_MASK) == ZEND_FETCH_CLASS_INTERFACE) {
fetch_type       1420 Zend/zend_execute_API.c 				} else if ((fetch_type & ZEND_FETCH_CLASS_MASK) == ZEND_FETCH_CLASS_TRAIT) {
fetch_type       1474 ext/interbase/ibase_query.c static void _php_ibase_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int fetch_type) /* {{{ */
fetch_type       1510 ext/interbase/ibase_query.c 		if (! (fetch_type & FETCH_ROW)) {
fetch_type       1639 ext/interbase/ibase_query.c 			if (fetch_type & FETCH_ROW) {
fetch_type       1645 ext/interbase/ibase_query.c 			if (fetch_type & FETCH_ROW) {
fetch_type        100 ext/odbc/php_odbc.c 	ZEND_ARG_INFO(0, fetch_type)
fetch_type       1561 ext/odbc/php_odbc.c 	SQLSMALLINT len1=0, len2=0, fetch_type;
fetch_type       1567 ext/odbc/php_odbc.c 	fetch_type = (SQLSMALLINT) zv_fetch_type;
fetch_type       1569 ext/odbc/php_odbc.c 	if (!(fetch_type == SQL_FETCH_FIRST || fetch_type == SQL_FETCH_NEXT)) {
fetch_type       1570 ext/odbc/php_odbc.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid fetch type (%d)", fetch_type);
fetch_type       1578 ext/odbc/php_odbc.c 			fetch_type,
fetch_type        697 ext/simplexml/simplexml.c static zval** sxe_property_get_adr(zval *object, zval *member, int fetch_type, const zend_literal *key TSRMLS_DC) /* {{{ */