Searched refs:iface (Results 1 - 5 of 5) sorted by relevance
/php-7.4/ext/standard/ |
H A D | net.c(last modified 27/05/2019 08:00) | 189 zval iface, unicast; in PHP_FUNCTION() local 195 array_init(&iface); in PHP_FUNCTION() 201 add_assoc_string(&iface, "description", tmp); in PHP_FUNCTION() 213 add_assoc_str(&iface, "mac", mac); in PHP_FUNCTION() 220 add_assoc_long(&iface, "mtu", p->Mtu); in PHP_FUNCTION() 255 add_assoc_zval(&iface, "unicast", &unicast); in PHP_FUNCTION() 257 add_assoc_bool(&iface, "up", (p->OperStatus == IfOperStatusUp)); in PHP_FUNCTION() 259 add_assoc_zval(return_value, p->AdapterName, &iface); in PHP_FUNCTION() 277 zval *iface = zend_hash_str_find(Z_ARR_P(return_value), p->ifa_name, strlen(p->ifa_name)); in PHP_FUNCTION() 280 if (!iface) { in PHP_FUNCTION() [all...] |
/php-7.4/Zend/ |
H A D | zend_inheritance.c(last modified 07/10/2020 08:00) | 133 /* Must be initialized through iface->interface_gets_implemented() */ in do_inherit_parent_constructor() 1009 static inline void do_implement_interface(zend_class_entry *ce, zend_class_entry *iface) /* {{{ */ in do_implement_interface() argument 1011 if (!(ce->ce_flags & ZEND_ACC_INTERFACE) && iface->interface_gets_implemented && iface->interface_gets_implemented(iface, ce) == FAILURE) { in do_implement_interface() 1012 zend_error_noreturn(E_CORE_ERROR, "Class %s could not implement interface %s", ZSTR_VAL(ce->name), ZSTR_VAL(iface->name)); in do_implement_interface() 1015 ZEND_ASSERT(ce != iface); in do_implement_interface() 1019 static void zend_do_inherit_interfaces(zend_class_entry *ce, const zend_class_entry *iface) /* {{{ */ in zend_do_inherit_interfaces() argument 1022 uint32_t i, ce_num, if_num = iface->num_interfaces; in zend_do_inherit_interfaces() 1035 entry = iface in zend_do_inherit_interfaces() 1350 do_inherit_constant_check(HashTable *child_constants_table, zend_class_constant *parent_constant, zend_string *name, const zend_class_entry *iface) do_inherit_constant_check() argument 1366 do_inherit_iface_constant(zend_string *name, zend_class_constant *c, zend_class_entry *ce, zend_class_entry *iface) do_inherit_iface_constant() argument 1383 do_interface_implementation(zend_class_entry *ce, zend_class_entry *iface) do_interface_implementation() argument 1404 zend_do_implement_interface(zend_class_entry *ce, zend_class_entry *iface) zend_do_implement_interface() argument 1448 zend_class_entry *iface; zend_do_implement_interfaces() local 2486 zend_class_entry *iface = zend_fetch_class_by_name( zend_do_link_class() local [all...] |
H A D | zend_inheritance.h(last modified 13/09/2019 08:00) | 27 ZEND_API void zend_do_implement_interface(zend_class_entry *ce, zend_class_entry *iface);
|
H A D | zend.h(last modified 16/03/2020 08:00) | 152 int (*interface_gets_implemented)(zend_class_entry *iface, zend_class_entry *class_type); /* a class implements this interface */
|
/php-7.4/build/ |
H A D | ltmain.sh(last modified 01/03/2019 08:00) | 3359 iface=`expr $revision - $loop` 3361 verstring="$verstring_prefix$major.$iface:$verstring" 3382 iface=`expr $current - $loop` 3384 verstring="$verstring:${iface}.0"
|
Completed in 42 milliseconds