Searched defs:ex (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 4179 is_full_opt_exact_info(OptExactInfo* ex) argument 4181 return (ex->len >= OPT_EXACT_MAXLEN ? 1 : 0); 4185 clear_opt_exact_info(OptExactInfo* ex) argument 4187 clear_mml(&ex->mmd); 4188 clear_opt_anc_info(&ex->anc); 4189 ex->reach_end = 0; 4190 ex->ignore_case = 0; 4191 ex->len = 0; 4192 ex->s[0] = '\0';
|
| /PHP_5_5/Zend/ |
| H A D | zend_execute.h | 254 static zend_always_inline void** zend_vm_stack_frame_base(zend_execute_data *ex) argument 256 return (void**)((char*)ex->call_slots + 257 ZEND_MM_ALIGNED_SIZE(sizeof(call_slot)) * ex->op_array->nested_calls); 307 static zend_always_inline int zend_vm_stack_get_args_count_ex(zend_execute_data *ex) argument 309 if (ex) { 310 void **p = ex->function_state.arguments; 317 static zend_always_inline zval** zend_vm_stack_get_arg_ex(zend_execute_data *ex, int requested_arg) argument 319 void **p = ex->function_state.arguments;
|
| H A D | zend_closures.c | 244 zend_execute_data *ex = EG(current_execute_data); local 245 while (ex) { 246 if (ex->op_array == &closure->func.op_array) { 249 ex = ex->prev_execute_data;
|
| H A D | zend_generators.c | 153 zend_execute_data *ex = generator->execute_data; local 157 if (!ex || !ex->op_array->has_finally_block) { 163 op_num = ex->opline - ex->op_array->opcodes - 1; 167 for (i = 0; i < ex->op_array->last_try_catch; i++) { 168 zend_try_catch_element *try_catch = &ex->op_array->try_catch_array[i]; 182 ex->opline = &ex->op_array->opcodes[finally_op_num]; 183 ex [all...] |
| H A D | zend_builtin_functions.c | 393 zend_execute_data *ex = EG(current_execute_data)->prev_execute_data; local 395 if (ex && ex->function_state.arguments) { 396 RETURN_LONG((long)(zend_uintptr_t)*(ex->function_state.arguments)); 413 zend_execute_data *ex = EG(current_execute_data)->prev_execute_data; local 424 if (!ex || !ex->function_state.arguments) { 429 p = ex->function_state.arguments; 452 zend_execute_data *ex = EG(current_execute_data)->prev_execute_data; local 454 if (!ex || !e [all...] |
| H A D | zend_exceptions.c | 35 ZEND_API void (*zend_throw_exception_hook)(zval *ex TSRMLS_DC); 737 zval *ex; local 739 MAKE_STD_ZVAL(ex); 748 object_init_ex(ex, exception_ce); 752 zend_update_property_string(default_exception_ce, ex, "message", sizeof("message")-1, message TSRMLS_CC); 755 zend_update_property_long(default_exception_ce, ex, "code", sizeof("code")-1, code TSRMLS_CC); 758 zend_throw_exception_internal(ex TSRMLS_CC); 759 return ex; 780 zval *ex = zend_throw_exception(exception_ce, message, code TSRMLS_CC); local 781 zend_update_property_long(default_exception_ce, ex, "severit [all...] |
| /PHP_5_5/ext/pdo/ |
| H A D | pdo_dbh.c | 77 zval *ex, *info; local 80 MAKE_STD_ZVAL(ex); 81 object_init_ex(ex, pdo_ex); 83 zend_update_property_string(def_ex, ex, "message", sizeof("message")-1, message TSRMLS_CC); 84 zend_update_property_string(def_ex, ex, "code", sizeof("code")-1, *pdo_err TSRMLS_CC); 92 zend_update_property(pdo_ex, ex, "errorInfo", sizeof("errorInfo")-1, info TSRMLS_CC); 95 zend_throw_exception_object(ex TSRMLS_CC); 155 zval *ex; local 158 MAKE_STD_ZVAL(ex); 159 object_init_ex(ex, pdo_e [all...] |
Completed in 17 milliseconds