Lines Matching refs:EG

95 	zend_execute_data *_old_current_execute_data = EG(current_execute_data); \
96 zval *_old_stack_top = EG(vm_stack_top); \
106 EG(current_execute_data) = _old_current_execute_data; \
107 if (EG(exception) == NULL || \
108 !instanceof_function(EG(exception)->ce, soap_fault_class_entry)) {\
111 if (_old_stack_top != EG(vm_stack_top)) { \
112 while (EG(vm_stack)->prev != NULL && \
113 ((char*)_old_stack_top < (char*)EG(vm_stack) || \
114 (char*) _old_stack_top > (char*)EG(vm_stack)->end)) { \
115 zend_vm_stack tmp = EG(vm_stack)->prev; \
116 efree(EG(vm_stack)); \
117 EG(vm_stack) = tmp; \
118 EG(vm_stack_end) = tmp->end; \
120 EG(vm_stack)->top = _old_stack_top; \
1385 ft = EG(function_table); in PHP_METHOD()
1447 if ((f = zend_hash_find_ptr(EG(function_table), key)) == NULL) { in PHP_METHOD()
1465 if ((f = zend_hash_find_ptr(EG(function_table), key)) == NULL) { in PHP_METHOD()
1500 ZVAL_OBJ(&exception_object, EG(exception)); in _soap_server_exception()
1570 …if (call_user_function(EG(function_table), NULL, &readfile, &readfile_ret, 1, &param ) == FAILURE)…
1609 if ((server_vars = zend_hash_find(&EG(symbol_table), server)) != NULL &&
1684 if (EG(exception)) {
1733 if (EG(exception)) {
1756 if (EG(exception)) {
1795 function_table = EG(function_table);
1826 …call_status = call_user_function(EG(function_table), NULL, &h->function_name, &h->retval, h->num_p…
1844 } else if (EG(exception)) {
1876 …call_status = call_user_function(EG(function_table), NULL, &function_name, &retval, num_params, pa…
1883 if (EG(exception)) {
1922 if (EG(exception)) {
2139 _old_current_execute_data = EG(current_execute_data);
2143 …if (!PG(modules_activated) || !SOAP_GLOBAL(use_soap_error_handler) || !EG(objects_store).object_bu…
2193 old_objects = EG(objects_store).object_buckets;
2194 EG(objects_store).object_buckets = NULL;
2201 EG(current_execute_data) = _old_current_execute_data;
2208 EG(objects_store).object_buckets = old_objects;
2281 EG(current_execute_data) = _old_current_execute_data;
2450 zend_hash_str_exists(EG(function_table), "gzinflate", sizeof("gzinflate")-1) &&
2451 zend_hash_str_exists(EG(function_table), "gzdeflate", sizeof("gzdeflate")-1) &&
2452 zend_hash_str_exists(EG(function_table), "gzuncompress", sizeof("gzuncompress")-1) &&
2453 zend_hash_str_exists(EG(function_table), "gzcompress", sizeof("gzcompress")-1) &&
2454 zend_hash_str_exists(EG(function_table), "gzencode", sizeof("gzencode")-1)) {
2597 if (EG(exception) && instanceof_function(EG(exception)->ce, zend_ce_error)) {
2602 ZVAL_OBJ(&exception_object, EG(exception));
2605 EG(exception)->ce = soap_fault_class_entry;
2819 if (!EG(exception) &&