HomeSort by: relevance | last modified time | path
    Searched defs:function_name (Results 1 - 25 of 45) sorted by relevancy

1 2

  /src/external/gpl3/binutils/dist/gprof/
corefile.h 27 char * function_name; member in struct:function_map
  /src/external/gpl3/binutils/dist/gprofng/src/
corefile.h 27 char * function_name; member in struct:function_map
  /src/external/gpl3/binutils.old/dist/gprof/
corefile.h 27 char * function_name; member in struct:function_map
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_suppressions.cc 88 const char *function_name = cur->info.function; local
89 if (!function_name) {
93 if (suppression_ctx->Match(function_name, kInterceptorViaFunction,
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_suppressions.cpp 87 const char *function_name = cur->info.function; local
88 if (!function_name) {
92 if (suppression_ctx->Match(function_name, kInterceptorViaFunction,
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_suppressions.cpp 87 const char *function_name = cur->info.function; local
88 if (!function_name) {
92 if (suppression_ctx->Match(function_name, kInterceptorViaFunction,
  /src/tests/usr.bin/xlint/lint1/
lang_level_c99.c 296 function_name(void) function
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_symbolizer_libcdep.cc 208 // <function_name>
210 // <function_name>
292 // <function_name>
300 char *function_name = 0; local
301 str = ExtractToken(str, "\n", &function_name);
302 CHECK(function_name);
303 if (function_name[0] == '\0') {
305 InternalFree(function_name);
321 info->function = function_name;
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-internal.h 120 tree function_name; member in struct:branch_island_d
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_symbolizer.h 86 char *function_name = nullptr; member in struct:__sanitizer::LocalInfo
sanitizer_symbolizer_libcdep.cpp 234 // <function_name>
236 // <function_name>
326 // <function_name>
334 char *function_name = nullptr; local
335 str = ExtractToken(str, "\n", &function_name);
336 CHECK(function_name);
337 if (function_name[0] == '\0') {
339 InternalFree(function_name);
355 info->function = function_name;
395 str = ExtractToken(str, "\n", &local.function_name);
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-internal.h 121 tree function_name; member in struct:branch_island_d
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_symbolizer.h 82 char *function_name = nullptr; member in struct:__sanitizer::LocalInfo
sanitizer_symbolizer_libcdep.cpp 234 // <function_name>
236 // <function_name>
321 // <function_name>
329 char *function_name = nullptr; local
330 str = ExtractToken(str, "\n", &function_name);
331 CHECK(function_name);
332 if (function_name[0] == '\0') {
334 InternalFree(function_name);
350 info->function = function_name;
383 str = ExtractToken(str, "\n", &local.function_name);
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
location.h 193 explicit explicit_location_spec (const char *function_name);
213 gdb::unique_xmalloc_ptr<char> function_name; member in struct:explicit_location_spec
284 /* Create a new explicit location with explicit FUNCTION_NAME. All
288 new_explicit_location_spec_function (const char *function_name)
290 explicit_location_spec *spec = new explicit_location_spec (function_name);
  /src/external/gpl3/gdb/dist/gdb/
location.h 193 explicit explicit_location_spec (const char *function_name);
213 gdb::unique_xmalloc_ptr<char> function_name; member in struct:explicit_location_spec
284 /* Create a new explicit location with explicit FUNCTION_NAME. All
288 new_explicit_location_spec_function (const char *function_name)
290 explicit_location_spec *spec = new explicit_location_spec (function_name);
  /src/external/gpl2/texinfo/dist/info/
infodoc.c 215 name = function_name (map[i].function);
599 function_name (InfoCommand *cmd)
722 funname = function_name (map[keystroke].function);
1078 name = function_name (cmd);
1187 if (strstr (location, function_name (command)))
598 function_name (InfoCommand *cmd) function
  /src/sys/external/bsd/compiler_rt/dist/lib/interception/
interception_win.cc 909 // format: "<module> . <function_name>" that is stored into the
911 char function_name[256]; local
913 if (funtion_name_length >= sizeof(function_name) - 1)
916 _memcpy(function_name, func, funtion_name_length);
917 function_name[funtion_name_length] = '\0';
918 char* separator = _strchr(function_name, '.');
923 void* redirected_module = GetModuleHandleA(function_name);
952 const char *function_name, uptr new_function,
994 if (strcmp(funcname, function_name) == 0)
  /src/external/gpl2/gettext/dist/gettext-tools/src/
x-sh.c 1258 char *function_name = string_of_word (&inner); local
1262 function_name, strlen (function_name),
1273 function_name, strlen (function_name)));
1275 free (function_name);
1293 /* Stop looking for arguments of the last function_name. */
x-tcl.c 899 char *function_name = string_of_word (&inner); local
904 stripped_name = function_name;
905 if (function_name[0] == ':' && function_name[1] == ':')
922 free (function_name);
  /src/external/gpl3/binutils/dist/bfd/
syms.c 903 char *function_name; member in struct:indexentry
1019 char *function_name; local
1226 info->indextable[i].function_name = NULL;
1273 function_name = (char *) str + bfd_get_32 (abfd, stab + STRDXOFF);
1274 if (function_name == (char *) str)
1276 if (function_name >= (char *) info->strs + strsize
1277 || function_name < (char *) str)
1278 function_name = NULL;
1286 info->indextable[i].function_name = function_name;
    [all...]
  /src/external/gpl3/binutils.old/dist/bfd/
syms.c 904 char *function_name; member in struct:indexentry
1020 char *function_name; local
1227 info->indextable[i].function_name = NULL;
1274 function_name = (char *) str + bfd_get_32 (abfd, stab + STRDXOFF);
1275 if (function_name == (char *) str)
1277 if (function_name >= (char *) info->strs + strsize
1278 || function_name < (char *) str)
1279 function_name = NULL;
1287 info->indextable[i].function_name = function_name;
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
dwarf2ctf.cc 639 const char *function_name = get_AT_string (function, DW_AT_name); local
685 function_name,
  /src/external/gpl3/gcc.old/dist/gcc/
dwarf2ctf.cc 642 const char *function_name = get_AT_string (function, DW_AT_name); local
687 function_name,
  /src/external/gpl3/gcc.old/dist/libsanitizer/interception/
interception_win.cpp 960 // format: "<module> . <function_name>" that is stored into the
962 char function_name[256]; local
964 if (funtion_name_length >= sizeof(function_name) - 1)
967 _memcpy(function_name, func, funtion_name_length);
968 function_name[funtion_name_length] = '\0';
969 char* separator = _strchr(function_name, '.');
974 void* redirected_module = GetModuleHandleA(function_name);
1003 const char *function_name, uptr new_function,
1045 if (strcmp(funcname, function_name) == 0)

Completed in 65 milliseconds

1 2