Searched refs:fetch_type (Results 1 – 7 of 7) sorted by relevance
/PHP-5.4/Zend/ |
H A D | zend_execute_API.c | 1556 int use_autoload = (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) == 0; in zend_fetch_class() 1557 int silent = (fetch_type & ZEND_FETCH_CLASS_SILENT) != 0; in zend_fetch_class() 1559 fetch_type &= ZEND_FETCH_CLASS_MASK; in zend_fetch_class() 1562 switch (fetch_type) { in zend_fetch_class() 1582 fetch_type = zend_get_class_fetch_type(class_name, class_name_len); in zend_fetch_class() 1583 if (fetch_type!=ZEND_FETCH_CLASS_DEFAULT) { in zend_fetch_class() 1593 if (fetch_type == ZEND_FETCH_CLASS_INTERFACE) { in zend_fetch_class() 1595 } else if (fetch_type == ZEND_FETCH_CLASS_TRAIT) { in zend_fetch_class() 1611 int use_autoload = (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) == 0; in zend_fetch_class_by_name() 1615 if ((fetch_type & ZEND_FETCH_CLASS_SILENT) == 0 && !EG(exception)) { in zend_fetch_class_by_name() [all …]
|
H A D | zend_execute.h | 77 ZEND_API char * zend_verify_arg_class_kind(const zend_arg_info *cur_arg_info, ulong fetch_type, con… 389 …ass_entry *zend_fetch_class(const char *class_name, uint class_name_len, int fetch_type TSRMLS_DC); 390 …me(const char *class_name, uint class_name_len, const zend_literal *key, int fetch_type TSRMLS_DC);
|
H A D | zend_execute.c | 564 ZEND_API char * zend_verify_arg_class_kind(const zend_arg_info *cur_arg_info, ulong fetch_type, con… in zend_verify_arg_class_kind() argument 566 …*pce = zend_fetch_class(cur_arg_info->class_name, cur_arg_info->class_name_len, (fetch_type | ZEND… in zend_verify_arg_class_kind() 599 …t zend_verify_arg_type(zend_function *zf, zend_uint arg_num, zval *arg, ulong fetch_type TSRMLS_DC) in zend_verify_arg_type() 616 need_msg = zend_verify_arg_class_kind(cur_arg_info, fetch_type, &class_name, &ce TSRMLS_CC); in zend_verify_arg_type() 620 need_msg = zend_verify_arg_class_kind(cur_arg_info, fetch_type, &class_name, &ce TSRMLS_CC); in zend_verify_arg_type() 625 need_msg = zend_verify_arg_class_kind(cur_arg_info, fetch_type, &class_name, &ce TSRMLS_CC); in zend_verify_arg_type() 969 static inline HashTable *zend_get_target_symbol_table(int fetch_type TSRMLS_DC) in zend_get_target_symbol_table() 971 switch (fetch_type) { in zend_get_target_symbol_table()
|
H A D | zend_compile.h | 420 void zend_resolve_class_name(znode *class_name, ulong fetch_type, int check_ns_name TSRMLS_DC); 438 void zend_do_fetch_static_variable(znode *varname, const znode *static_assignment, int fetch_type T… 439 void zend_do_fetch_global_variable(znode *varname, const znode *static_assignment, int fetch_type T…
|
H A D | zend_compile.c | 2203 int fetch_type; in zend_do_fetch_class() local 2206 switch (fetch_type) { in zend_do_fetch_class() 2211 opline->extended_value = fetch_type; in zend_do_fetch_class() 5370 ulong fetch_type = 0; in zend_do_fetch_constant() local 5381 zend_resolve_class_name(constant_container, fetch_type, 1 TSRMLS_CC); in zend_do_fetch_constant() 5385 result->u.constant.type = IS_CONSTANT | fetch_type; in zend_do_fetch_constant() 5390 zend_resolve_class_name(constant_container, fetch_type, 1 TSRMLS_CC); in zend_do_fetch_constant() 5431 fetch_type |= IS_CONSTANT_UNQUALIFIED; in zend_do_fetch_constant() 5435 result->u.constant.type = IS_CONSTANT | fetch_type; in zend_do_fetch_constant() 5788 if (fetch_type == ZEND_FETCH_LEXICAL) { in zend_do_fetch_static_variable() [all …]
|
/PHP-5.4/ext/interbase/ |
H A D | ibase_query.c | 1474 static void _php_ibase_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int fetch_type) /* {{{ */ in _php_ibase_fetch_hash() argument 1510 if (! (fetch_type & FETCH_ROW)) { in _php_ibase_fetch_hash() 1639 if (fetch_type & FETCH_ROW) { in _php_ibase_fetch_hash() 1645 if (fetch_type & FETCH_ROW) { in _php_ibase_fetch_hash()
|
/PHP-5.4/ext/odbc/ |
H A D | php_odbc.c | 100 ZEND_ARG_INFO(0, fetch_type) 1540 SQLSMALLINT len1=0, len2=0, fetch_type; in PHP_FUNCTION() local 1546 fetch_type = (SQLSMALLINT) zv_fetch_type; in PHP_FUNCTION() 1548 if (!(fetch_type == SQL_FETCH_FIRST || fetch_type == SQL_FETCH_NEXT)) { in PHP_FUNCTION() 1549 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid fetch type (%d)", fetch_type); in PHP_FUNCTION() 1557 fetch_type, in PHP_FUNCTION()
|
Completed in 106 milliseconds