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

1 2 3 4 5 6

  /src/external/gpl3/gdb/dist/gdb/
skip.h 23 /* Returns true if the given FUNCTION_NAME is marked for skip and
25 bool function_name_is_marked_for_skip (const char *function_name,
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);
skip.c 60 that matches FUNCTION_NAME. */
61 bool skip_function_p (const char *function_name) const;
577 skiplist_entry::skip_function_p (const char *function_name) const
589 function_name, m_function.c_str ());
593 = (m_compiled_function_regexp->exec (function_name, 0, NULL, 0) == 0);
601 function_name, m_function.c_str ());
602 result = (strcmp_iw (function_name, m_function.c_str ()) == 0);
614 function_name_is_marked_for_skip (const char *function_name,
617 if (function_name == NULL)
626 bool skip_by_function = e.skip_function_p (function_name);
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
skip.h 23 /* Returns true if the given FUNCTION_NAME is marked for skip and
25 bool function_name_is_marked_for_skip (const char *function_name,
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);
skip.c 60 that matches FUNCTION_NAME. */
61 bool skip_function_p (const char *function_name) const;
577 skiplist_entry::skip_function_p (const char *function_name) const
589 function_name, m_function.c_str ());
593 = (m_compiled_function_regexp->exec (function_name, 0, NULL, 0) == 0);
601 function_name, m_function.c_str ());
602 result = (strcmp_iw (function_name, m_function.c_str ()) == 0);
614 function_name_is_marked_for_skip (const char *function_name,
617 if (function_name == NULL)
626 bool skip_by_function = e.skip_function_p (function_name);
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
corefile.h 27 char * function_name; member in struct:function_map
  /src/external/gpl3/binutils/dist/gprof/
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/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_symbolize.cc 63 static void AddFrame(void *ctx, const char *function_name, const char *file,
73 if (function_name) {
74 info->function = internal_strdup(function_name);
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_symbolize.cpp 62 static void AddFrame(void *ctx, const char *function_name, const char *file,
72 if (function_name) {
73 info->function = internal_strdup(function_name);
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_symbolize.cpp 62 static void AddFrame(void *ctx, const char *function_name, const char *file,
72 if (function_name) {
73 info->function = internal_strdup(function_name);
  /src/tests/usr.bin/xlint/lint1/
lang_level_c99.c 296 function_name(void) function
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/experimental/
contract.cc 41 std::cerr << "contract violation in function " << violation.function_name()
  /src/external/gpl3/gdb/dist/sim/ppc/
gen-support.c 45 function->fields[function_name],
59 function->fields[function_name],
gen-model.c 56 ERROR("Model function type not specified for %s", function->fields[function_name]);
61 function->fields[function_name],
107 name = insn_ptr->file_entry->fields[function_name];
207 ERROR("Model function return type not specified for %s", function->fields[function_name]);
213 function->fields[function_name],
269 name = insn_ptr->file_entry->fields[function_name];
  /src/external/gpl3/gdb.old/dist/sim/ppc/
gen-support.c 45 function->fields[function_name],
59 function->fields[function_name],
gen-model.c 56 ERROR("Model function type not specified for %s", function->fields[function_name]);
61 function->fields[function_name],
107 name = insn_ptr->file_entry->fields[function_name];
207 ERROR("Model function return type not specified for %s", function->fields[function_name]);
213 function->fields[function_name],
269 name = insn_ptr->file_entry->fields[function_name];
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/scripts/
asan_symbolize.py 113 function_name = self.pipe.stdout.readline().rstrip()
114 if not function_name:
118 if (not function_name.startswith('??') or
121 result.append('%s in %s %s' % (addr, function_name,
172 function_name = self.pipe.stdout.readline().rstrip()
176 elif function_name in ['', '??']:
177 assert file_name == function_name
179 lines.append((function_name, file_name));
247 function_name = match.group(1)
248 function_name = re.sub('\(.*?\)', '', function_name
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
GCDAProfiling.c 351 void llvm_gcda_emit_function(uint32_t ident, const char *function_name,
360 function_name ? function_name : "NULL");
366 if (function_name)
367 len += 1 + length_of_string(function_name);
373 if (function_name)
374 write_string(function_name);
  /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. */
  /src/external/bsd/libarchive/dist/libarchive/
archive_private.h 150 #define archive_check_magic(a, expected_magic, allowed_states, function_name) \
153 (allowed_states), (function_name)); \

Completed in 48 milliseconds

1 2 3 4 5 6