Lines Matching refs:method

36 …PHPDBG_PRINT_COMMAND_D(method,     "print out the instructions in the specified method",       'm'…
53 static inline void phpdbg_print_function_helper(zend_function *method) /* {{{ */ in phpdbg_print_function_helper() argument
55 switch (method->type) { in phpdbg_print_function_helper()
57 zend_op_array* op_array = &(method->op_array); in phpdbg_print_function_helper()
64 if (method->common.scope) { in phpdbg_print_function_helper()
68 ZSTR_VAL(method->common.scope->name), in phpdbg_print_function_helper()
69 ZSTR_VAL(method->common.function_name), in phpdbg_print_function_helper()
77 method->common.function_name ? ZSTR_VAL(method->common.function_name) : "{main}", in phpdbg_print_function_helper()
96 if (method->common.scope) { in phpdbg_print_function_helper()
97 …" method=\"%s::%s\"", "\tInternal %s::%s()", ZSTR_VAL(method->common.scope->name), ZSTR_VAL(method in phpdbg_print_function_helper()
99 …einfo", "type=\"Internal\" function=\"%s\"", "\tInternal %s()", ZSTR_VAL(method->common.function_n… in phpdbg_print_function_helper()
168 zend_function *method; in PHPDBG_PRINT() local
170 ZEND_HASH_FOREACH_PTR(&ce->function_table, method) { in PHPDBG_PRINT()
171 phpdbg_print_function_helper(method); in PHPDBG_PRINT()
183 PHPDBG_PRINT(method) /* {{{ */ in PHPDBG_PRINT() argument
187 if (phpdbg_safe_class_lookup(param->method.class, strlen(param->method.class), &ce) == SUCCESS) { in PHPDBG_PRINT()
189 zend_string *lcname = zend_string_alloc(strlen(param->method.name), 0); in PHPDBG_PRINT()
190 zend_str_tolower_copy(ZSTR_VAL(lcname), param->method.name, ZSTR_LEN(lcname)); in PHPDBG_PRINT()
200 …thod=\"%s::%s\"", "The method %s::%s could not be found", param->method.class, param->method.name); in PHPDBG_PRINT()
205 …("print", "type=\"noclass\" class=\"%s\"", "The class %s could not be found", param->method.class); in PHPDBG_PRINT()
323 zend_function *method; in phpdbg_print_opcodes_ce() local
342 ZEND_HASH_FOREACH_PTR(&ce->function_table, method) { in phpdbg_print_opcodes_ce()
348 phpdbg_out("%s", ZSTR_VAL(method->common.function_name)); in phpdbg_print_opcodes_ce()
355 ZEND_HASH_FOREACH_STR_KEY_PTR(&ce->function_table, method_name, method) { in phpdbg_print_opcodes_ce()
357 phpdbg_print_function_helper(method); in phpdbg_print_opcodes_ce()