Lines Matching refs:method

36 …PHPDBG_PRINT_COMMAND_D(method,     "print out the instructions in the specified method",   'm', pr…
53 static inline void phpdbg_print_function_helper(zend_function *method TSRMLS_DC) /* {{{ */ in phpdbg_print_function_helper()
55 switch (method->type) { in phpdbg_print_function_helper()
57 zend_op_array* op_array = &(method->op_array); in phpdbg_print_function_helper()
65 if (method->common.scope) { in phpdbg_print_function_helper()
68 method->common.scope->name, in phpdbg_print_function_helper()
69 method->common.function_name, in phpdbg_print_function_helper()
73 method->common.function_name ? op_array->line_start : 0, in phpdbg_print_function_helper()
74 method->common.function_name ? op_array->line_end : 0, in phpdbg_print_function_helper()
75 method->common.function_name ? method->common.function_name : "{main}", in phpdbg_print_function_helper()
99 if (method->common.scope) { in phpdbg_print_function_helper()
100 phpdbg_writeln("\tInternal %s::%s()", method->common.scope->name, method->common.function_name); in phpdbg_print_function_helper()
102 phpdbg_writeln("\tInternal %s()", method->common.function_name); in phpdbg_print_function_helper()
171 zend_function *method; in PHPDBG_PRINT() local
174 … zend_hash_get_current_data_ex(&(*ce)->function_table, (void**) &method, &position) == SUCCESS; in PHPDBG_PRINT()
176 phpdbg_print_function_helper(method TSRMLS_CC); in PHPDBG_PRINT()
186 PHPDBG_PRINT(method) /* {{{ */ in PHPDBG_PRINT() argument
190 …if (zend_lookup_class(param->method.class, strlen(param->method.class), &ce TSRMLS_CC) == SUCCESS)… in PHPDBG_PRINT()
192 char *lcname = zend_str_tolower_dup(param->method.name, strlen(param->method.name)); in PHPDBG_PRINT()
201 phpdbg_error("The method %s could not be found", param->method.name); in PHPDBG_PRINT()
206 phpdbg_error("The class %s could not be found", param->method.class); in PHPDBG_PRINT()