/external/ltrace/ |
H A D | demangle.c | 40 my_demangle(const char *function_name) { argument 45 debug(DEBUG_FUNCTION, "my_demangle(name=%s)", function_name); 56 && DICT_FIND_VAL(name_cache, &function_name, &tmp) == 0) 60 tmp = cplus_demangle(function_name, 64 tmp = __cxa_demangle(function_name, NULL, NULL, &status); 69 return function_name; 73 const char *fn_copy = strdup(function_name);
|
/external/lldb/test/api/multithreaded/ |
H A D | test_listener_event_process_state.cpp | 48 const char* function_name = thread.GetFrameAtIndex(j).GetFunction().GetName(); local 49 if (function_name) 50 g_frame_functions.push(function_name);
|
/external/compiler-rt/lib/asan/ |
H A D | asan_suppressions.cc | 93 const char *function_name = cur->info.function; local 94 if (!function_name) { 98 if (suppression_ctx->Match(function_name, kInterceptorViaFunction,
|
/external/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_symbolizer_mac.cc | 110 char *function_name; local 111 rest = ExtractTokenUpToDelimiter(rest, " (in ", &function_name); 112 if (internal_strncmp(function_name, "0x", 2) != 0) 113 res->info.function = function_name; 115 InternalFree(function_name);
|
H A D | sanitizer_symbolizer_posix_libcdep.cc | 57 // <function_name> 65 char *function_name = 0; local 66 str = ExtractToken(str, "\n", &function_name); 67 CHECK(function_name); 68 if (function_name[0] == '\0') { 84 info->function = function_name; 121 // <function_name> 123 // <function_name>
|
/external/google-breakpad/src/google_breakpad/processor/ |
H A D | stack_frame.h | 60 function_name(), 120 string function_name; member in struct:google_breakpad::StackFrame
|
/external/google-breakpad/src/processor/ |
H A D | basic_source_line_resolver_types.h | 60 Function(const string &function_name, argument 63 int set_parameter_size) : Base(function_name,
|
H A D | source_line_resolver_base_types.h | 85 Function(const string &function_name, argument 89 : name(function_name), address(function_address), size(code_size),
|
/external/lldb/source/DataFormatters/ |
H A D | TypeSummary.cpp | 185 const char * function_name, 192 if (function_name) 193 m_function_name.assign(function_name); 184 ScriptSummaryFormat(const TypeSummaryImpl::Flags& flags, const char * function_name, const char * python_script) argument
|
/external/valgrind/VEX/priv/ |
H A D | guest_tilegx_helpers.c | 49 IRExpr *guest_tilegx_spechelper ( const HChar * function_name, IRExpr ** args, argument
|
H A D | guest_mips_helpers.c | 55 IRExpr *guest_mips32_spechelper(const HChar * function_name, IRExpr ** args, argument 61 IRExpr *guest_mips64_spechelper ( const HChar * function_name, IRExpr ** args, argument
|
H A D | guest_ppc_helpers.c | 202 IRExpr* guest_ppc32_spechelper ( const HChar* function_name, argument 210 IRExpr* guest_ppc64_spechelper ( const HChar* function_name, argument
|
H A D | guest_arm64_helpers.c | 712 IRExpr* guest_arm64_spechelper ( const HChar* function_name, argument 727 //ZZ vex_printf(" %s ", function_name); 737 if (vex_streq(function_name, "arm64g_calculate_condition")) { 1009 //ZZ if (vex_streq(function_name, "armg_calculate_flag_c")) { 1059 //ZZ if (vex_streq(function_name, "armg_calculate_flag_v")) {
|
H A D | guest_arm_helpers.c | 554 IRExpr* guest_arm_spechelper ( const HChar* function_name, argument 569 vex_printf(" %s ", function_name); 579 if (vex_streq(function_name, "armg_calculate_condition")) { 814 if (vex_streq(function_name, "armg_calculate_flag_c")) { 864 if (vex_streq(function_name, "armg_calculate_flag_v")) {
|
H A D | guest_s390_helpers.c | 1826 guest_s390x_spechelper(const HChar *function_name, IRExpr **args, argument 1836 vex_printf(" %s ", function_name); 1846 if (vex_streq(function_name, "s390_calculate_cond")) { 2370 if (vex_streq(function_name, "s390_calculate_cc")) {
|
/external/lldb/source/Expression/ |
H A D | ClangExpressionParser.cpp | 487 ConstString function_name; local 489 if (!FindFunctionInModule(function_name, module_ap.get(), m_expr.FunctionName())) 498 log->Printf("Found function %s for %s", function_name.AsCString(), m_expr.FunctionName()); 503 function_name, 520 function_name.AsCString()); 574 IRDynamicChecks ir_dynamic_checks(*process->GetDynamicCheckers(), function_name.AsCString());
|
/external/lldb/source/Target/ |
H A D | ThreadPlanStepInRange.cpp | 354 const char *function_name = sc.GetFunctionName().AsCString(); local 356 if (function_name == NULL) 358 else if (strstr (function_name, target_name) == NULL)
|
/external/e2fsprogs/ext2ed/ |
H A D | main.c | 537 void internal_error (char *description,char *source_name,char *function_name) argument 539 wprintw (command_win,"Internal error - Found by source: %s.c , function: %s\n",source_name,function_name);
|
/external/mesa3d/src/glx/ |
H A D | glx_pbuffer.c | 58 warn_GLX_1_3(Display * dpy, const char *function_name) argument 66 function_name);
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
H A D | cpp_helpers.cc | 397 string function_name = prefix + name; local 398 if (descriptor->FindFieldByName(function_name)) { 401 function_name.append("__"); 405 function_name.append("_"); 407 return function_name;
|
/external/compiler-rt/lib/profile/ |
H A D | GCDAProfiling.c | 359 void llvm_gcda_emit_function(uint32_t ident, const char *function_name, argument 368 function_name ? function_name : "NULL"); 374 if (function_name) 375 len += 1 + length_of_string(function_name); 381 if (function_name) 382 write_string(function_name);
|
/external/google-breakpad/src/testing/test/ |
H A D | gmock-spec-builders_test.cc | 1963 const string& function_name) { 1969 EXPECT_THAT(output.c_str(), HasSubstr(function_name)); 1972 static_cast<void>(function_name); 1961 VerifyOutput(const String& output, bool should_print, const string& expected_substring, const string& function_name) argument
|
/external/lldb/include/lldb/DataFormatters/ |
H A D | TypeSummary.h | 480 const char *function_name, 496 SetFunctionName (const char* function_name) argument 498 if (function_name) 499 m_function_name.assign(function_name);
|
/external/v8/src/ |
H A D | preparser.cc | 824 Identifier function_name, Scanner::Location function_name_location, 893 if (function_name.IsEvalOrArguments()) { 823 ParseFunctionLiteral( Identifier function_name, Scanner::Location function_name_location, bool name_is_strict_reserved, FunctionKind kind, int function_token_pos, FunctionLiteral::FunctionType function_type, FunctionLiteral::ArityRestriction arity_restriction, bool* ok) argument
|
/external/lldb/include/lldb/Interpreter/ |
H A D | ScriptInterpreter.h | 371 GetScriptedSummary (const char *function_name, argument
|