Lines Matching refs:tmp

204 	zval obj, tmp;  in zend_default_exception_new_ex()  local
225 ZVAL_STRING(&tmp, zend_get_executed_filename()); in zend_default_exception_new_ex()
226 zend_update_property_ex(base_ce, &obj, CG(known_strings)[ZEND_STR_FILE], &tmp); in zend_default_exception_new_ex()
227 zval_ptr_dtor(&tmp); in zend_default_exception_new_ex()
228 ZVAL_LONG(&tmp, zend_get_executed_lineno()); in zend_default_exception_new_ex()
229 zend_update_property_ex(base_ce, &obj, CG(known_strings)[ZEND_STR_LINE], &tmp); in zend_default_exception_new_ex()
231 ZVAL_STR(&tmp, filename); in zend_default_exception_new_ex()
232 zend_update_property_ex(base_ce, &obj, CG(known_strings)[ZEND_STR_FILE], &tmp); in zend_default_exception_new_ex()
233 ZVAL_LONG(&tmp, zend_get_compiled_lineno()); in zend_default_exception_new_ex()
234 zend_update_property_ex(base_ce, &obj, CG(known_strings)[ZEND_STR_LINE], &tmp); in zend_default_exception_new_ex()
269 zval tmp, *object, *previous = NULL; in ZEND_METHOD() local
291 ZVAL_STR(&tmp, message); in ZEND_METHOD()
292 zend_update_property_ex(base_ce, object, CG(known_strings)[ZEND_STR_MESSAGE], &tmp); in ZEND_METHOD()
296 ZVAL_LONG(&tmp, code); in ZEND_METHOD()
297 zend_update_property_ex(base_ce, object, CG(known_strings)[ZEND_STR_CODE], &tmp); in ZEND_METHOD()
339 zval tmp, *object, *previous = NULL; in ZEND_METHOD() local
360 ZVAL_STRING(&tmp, message); in ZEND_METHOD()
361 zend_update_property_ex(zend_ce_exception, object, CG(known_strings)[ZEND_STR_MESSAGE], &tmp); in ZEND_METHOD()
362 zval_ptr_dtor(&tmp); in ZEND_METHOD()
366 ZVAL_LONG(&tmp, code); in ZEND_METHOD()
367 zend_update_property_ex(zend_ce_exception, object, CG(known_strings)[ZEND_STR_CODE], &tmp); in ZEND_METHOD()
374 ZVAL_LONG(&tmp, severity); in ZEND_METHOD()
375 zend_update_property_ex(zend_ce_exception, object, CG(known_strings)[ZEND_STR_SEVERITY], &tmp); in ZEND_METHOD()
378 ZVAL_STRING(&tmp, filename); in ZEND_METHOD()
379 zend_update_property_ex(zend_ce_exception, object, CG(known_strings)[ZEND_STR_FILE], &tmp); in ZEND_METHOD()
380 zval_ptr_dtor(&tmp); in ZEND_METHOD()
384 ZVAL_LONG(&tmp, lineno); in ZEND_METHOD()
385 zend_update_property_ex(zend_ce_exception, object, CG(known_strings)[ZEND_STR_LINE], &tmp); in ZEND_METHOD()
473 tmp = zend_hash_find(ht, key); \
474 if (tmp) { \
475 if (Z_TYPE_P(tmp) != IS_STRING) { \
480 smart_str_appends(str, Z_STRVAL_P(tmp)); \
548 zval *file, *tmp; in _build_trace_string() local
561 tmp = zend_hash_find(ht, CG(known_strings)[ZEND_STR_LINE]); in _build_trace_string()
562 if (tmp) { in _build_trace_string()
563 if (Z_TYPE_P(tmp) == IS_LONG) { in _build_trace_string()
564 line = Z_LVAL_P(tmp); in _build_trace_string()
584 tmp = zend_hash_find(ht, CG(known_strings)[ZEND_STR_ARGS]); in _build_trace_string()
585 if (tmp) { in _build_trace_string()
586 if (Z_TYPE_P(tmp) == IS_ARRAY) { in _build_trace_string()
590 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(tmp), arg) { in _build_trace_string()
686 zval rv, tmp; in ZEND_METHOD() local
766 ZVAL_STR(&tmp, str); in ZEND_METHOD()
767 zend_update_property_ex(base_ce, exception, CG(known_strings)[ZEND_STR_STRING], &tmp); in ZEND_METHOD()
912 zval ex, tmp; in zend_throw_exception() local
926 ZVAL_STRING(&tmp, message); in zend_throw_exception()
927 zend_update_property_ex(exception_ce, &ex, CG(known_strings)[ZEND_STR_MESSAGE], &tmp); in zend_throw_exception()
928 zval_ptr_dtor(&tmp); in zend_throw_exception()
931 ZVAL_LONG(&tmp, code); in zend_throw_exception()
932 zend_update_property_ex(exception_ce, &ex, CG(known_strings)[ZEND_STR_CODE], &tmp); in zend_throw_exception()
957 zval ex, tmp; in zend_throw_error_exception() local
960 ZVAL_LONG(&tmp, severity); in zend_throw_error_exception()
961 zend_update_property_ex(zend_ce_error_exception, &ex, CG(known_strings)[ZEND_STR_SEVERITY], &tmp); in zend_throw_error_exception()
1005 zval tmp, rv; in zend_exception_error() local
1009 zend_call_method_with_0_params(&exception, ce_exception, NULL, "__tostring", &tmp); in zend_exception_error()
1011 if (Z_TYPE(tmp) != IS_STRING) { in zend_exception_error()
1014 …roperty_ex(i_get_exception_base(&exception), &exception, CG(known_strings)[ZEND_STR_STRING], &tmp); in zend_exception_error()
1017 zval_ptr_dtor(&tmp); in zend_exception_error()