Lines Matching refs:function

265 void phpdbg_print_opcodes_function(const char *function, size_t len) {  in phpdbg_print_opcodes_function()  argument
266 zend_function *func = zend_hash_str_find_ptr(EG(function_table), function, len); in phpdbg_print_opcodes_function()
272 …if (func->op_array.function_name->len == len && !zend_binary_strcasecmp(function, len, func->op_ar… in phpdbg_print_opcodes_function()
285 static void phpdbg_print_opcodes_method_ce(zend_class_entry *ce, const char *function) { in phpdbg_print_opcodes_method_ce() argument
289 phpdbg_out("function name: %s::%s (internal)\n", ce->name->val, function); in phpdbg_print_opcodes_method_ce()
293 if (!(func = zend_hash_str_find_ptr(&ce->function_table, function, strlen(function)))) { in phpdbg_print_opcodes_method_ce()
297 phpdbg_out("function name: %s::%s\n", ce->name->val, function); in phpdbg_print_opcodes_method_ce()
301 void phpdbg_print_opcodes_method(const char *class, const char *function) { in phpdbg_print_opcodes_method() argument
309 phpdbg_print_opcodes_method_ce(ce, function); in phpdbg_print_opcodes_method()
317 phpdbg_print_opcodes_method_ce(ce, function); in phpdbg_print_opcodes_method()
378 PHPDBG_API void phpdbg_print_opcodes(char *function) in phpdbg_print_opcodes() argument
380 if (function == NULL) { in phpdbg_print_opcodes()
382 } else if (function[0] == '*' && function[1] == 0) { in phpdbg_print_opcodes()
404 function = zend_str_tolower_dup(function, strlen(function)); in phpdbg_print_opcodes()
406 if (strstr(function, "::") == NULL) { in phpdbg_print_opcodes()
407 phpdbg_print_opcodes_function(function, strlen(function)); in phpdbg_print_opcodes()
409 char *method_name, *class_name = strtok(function, "::"); in phpdbg_print_opcodes()
417 efree(function); in phpdbg_print_opcodes()