Lines Matching refs:NULL

49 	fci.object_ptr = object_pp ? *object_pp : NULL;  in zend_call_method()
55 fci.symbol_table = NULL; in zend_call_method()
61 fci.function_table = !object_pp ? EG(function_table) : NULL; in zend_call_method()
62 result = zend_call_function(&fci, NULL TSRMLS_CC); in zend_call_method()
68 obj_ce = object_pp ? Z_OBJCE_PP(object_pp) : NULL; in zend_call_method()
96 fcic.object_ptr = object_pp ? *object_pp : NULL; in zend_call_method()
102 obj_ce = object_pp ? Z_OBJCE_PP(object_pp) : NULL; in zend_call_method()
112 return NULL; in zend_call_method()
137 iter->value = NULL; in zend_user_it_invalidate_current()
250 zend_call_method_with_0_params(&object, iter->ce, &iter->ce->iterator_funcs.zf_next, "next", NULL); in zend_user_it_move_forward()
261 …_call_method_with_0_params(&object, iter->ce, &iter->ce->iterator_funcs.zf_rewind, "rewind", NULL); in zend_user_it_rewind()
290 iterator->value = NULL; in zend_user_it_get_iterator()
301 zend_class_entry *ce_it = iterator && Z_TYPE_P(iterator) == IS_OBJECT ? Z_OBJCE_P(iterator) : NULL; in zend_user_it_get_new_iterator()
305 …zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "Objects returned by %s::getIterator() must be traversa… in zend_user_it_get_new_iterator()
310 return NULL; in zend_user_it_get_new_iterator()
372 class_type->iterator_funcs.zf_new_iterator = NULL; in zend_implement_aggregate()
397 class_type->iterator_funcs.zf_valid = NULL; in zend_implement_iterator()
398 class_type->iterator_funcs.zf_current = NULL; in zend_implement_iterator()
399 class_type->iterator_funcs.zf_key = NULL; in zend_implement_iterator()
400 class_type->iterator_funcs.zf_next = NULL; in zend_implement_iterator()
401 class_type->iterator_funcs.zf_rewind = NULL; in zend_implement_iterator()
456 …zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "%s::serialize() must return a string or NULL", ce->nam… in zend_user_serialize()
472 zend_call_method_with_1_params(object, ce, &ce->unserialize_func, "unserialize", NULL, zdata); in zend_user_unserialize()
487 zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "Serialization of '%s' is not allowed", ce->name); in zend_class_serialize_deny()
494 zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "Unserialization of '%s' is not allowed", ce->name); in zend_class_unserialize_deny()
519 ZEND_ABSTRACT_ME(iterator, getIterator, NULL)
520 {NULL, NULL, NULL}
524 ZEND_ABSTRACT_ME(iterator, current, NULL)
525 ZEND_ABSTRACT_ME(iterator, next, NULL)
526 ZEND_ABSTRACT_ME(iterator, key, NULL)
527 ZEND_ABSTRACT_ME(iterator, valid, NULL)
528 ZEND_ABSTRACT_ME(iterator, rewind, NULL)
529 {NULL, NULL, NULL}
532 const zend_function_entry *zend_funcs_traversable = NULL;
552 {NULL, NULL, NULL}
560 ZEND_ABSTRACT_ME(serializable, serialize, NULL)
561 …ZEND_FENTRY(unserialize, NULL, arginfo_serializable_serialize, ZEND_ACC_PUBLIC|ZEND_ACC_ABSTRACT|Z…
562 {NULL, NULL, NULL}