| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| asan_interface_internal.h | 54 const char *module_name; // Module name as a C string. This pointer is a member in struct:__asan_global 85 void __asan_before_dynamic_init(const char *module_name);
|
| /src/sys/stand/efiboot/ |
| module.c | 41 char *module_name; member in struct:boot_module 91 fn(bm->module_name); 96 module_add(const char *module_name) 101 while (*module_name == ' ' || *module_name == '\t') 102 ++module_name; 106 if (strcmp(bm->module_name, module_name) == 0) 112 const int slen = strlen(module_name) + 1; 113 bm->module_name = alloc(slen) [all...] |
| /src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| asan_interface_internal.h | 53 const char *module_name; // Module name as a C string. This pointer is a member in struct:__asan_global 84 void __asan_before_dynamic_init(const char *module_name);
|
| /src/external/gpl3/gcc/dist/libsanitizer/asan/ |
| asan_interface_internal.h | 53 const char *module_name; // Module name as a C string. This pointer is a member in struct:__asan_global 86 void __asan_before_dynamic_init(const char *module_name);
|
| /src/tests/modules/ |
| t_x86_pte.c | 46 #define MODULE_NAME "x86_pte_tester" 63 char module_name[] = MODULE_NAME; local 74 atf_tc_skip("loading '%s' module failed.", MODULE_NAME); 79 if (modctl(MODCTL_UNLOAD, module_name) != 0) 80 warn("failed to unload module '%s'", MODULE_NAME);
|
| t_ufetchstore.c | 56 #define MODULE_NAME "ufetchstore_tester" 62 atf_tc_skip("loading '%s' module failed.", MODULE_NAME);\ 94 char module_name[] = MODULE_NAME; local 96 if (modctl(MODCTL_UNLOAD, module_name) != 0) { 97 warn("failed to unload module '%s'", MODULE_NAME);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_coverage_libcdep_new.cc | 48 static void WriteModuleCoverage(char* file_path, const char* module_name, 50 GetCoverageFilename(file_path, StripModuleName(module_name), "sancov"); 62 char* module_name = static_cast<char*>(InternalAlloc(kMaxPathLength)); local 84 WriteModuleCoverage(file_path, module_name, &pcs[module_start_idx], 91 __sanitizer_get_module_and_offset_for_pc(pc, module_name, kMaxPathLength, 97 WriteModuleCoverage(file_path, module_name, &pcs[module_start_idx], 102 InternalFree(module_name);
|
| sanitizer_symbolizer.h | 96 bool GetModuleNameAndOffsetForPC(uptr pc, const char **module_name, 99 const char *module_name = nullptr; local 101 if (GetModuleNameAndOffsetForPC(pc, &module_name, &unused)) 102 return module_name; 151 bool FindModuleNameAndOffsetForAddress(uptr address, const char **module_name,
|
| sanitizer_symbolizer_libcdep.cc | 77 const char *module_name; local 81 if (!FindModuleNameAndOffsetForAddress(addr, &module_name, &module_offset, 85 res->info.FillModuleInfo(module_name, module_offset, arch); 97 const char *module_name; local 100 if (!FindModuleNameAndOffsetForAddress(addr, &module_name, &module_offset, 104 info->module = internal_strdup(module_name); 116 bool Symbolizer::GetModuleNameAndOffsetForPC(uptr pc, const char **module_name, 125 if (module_name) 126 *module_name = module_names_.GetOwnedCopy(internal_module_name); 149 const char **module_name, [all...] |
| sanitizer_symbolizer_posix_libcdep.cc | 256 Addr2LineProcess(const char *path, const char *module_name) 257 : SymbolizerProcess(path), module_name_(internal_strdup(module_name)) {} 259 const char *module_name() const { return module_name_; } function in class:__sanitizer::Addr2LineProcess 336 const char *SendCommand(const char *module_name, uptr module_offset) { 340 internal_strcmp(module_name, addr2line_pool_[i]->module_name())) { 347 new(*allocator_) Addr2LineProcess(addr2line_path_, module_name); 350 CHECK_EQ(0, internal_strcmp(module_name, addr2line->module_name()));
|
| /src/sys/arch/arm/fdt/ |
| arm_fdt.c | 208 const char *module_name; local 223 module_name = fdtbus_get_string_index(chosen, 225 if (module_name == NULL) 236 module_name); 247 module_prime(module_name, (void *)(uintptr_t)startva, size);
|
| /src/external/gpl3/gcc.old/dist/libcpp/ |
| mkdeps.cc | 84 : module_name (NULL), cmi_name (NULL), is_header_unit (false), quote_lwm (0) 99 XDELETEVEC (module_name); 110 const char *module_name; member in class:mkdeps 330 gcc_assert (!d->module_name); 332 d->module_name = xstrdup (m); 426 if (d->module_name) 431 column = make_write_name (d->module_name, fp, 0, colmax, 439 column = make_write_name (d->module_name, fp, column, colmax,
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_coverage_libcdep_new.cpp | 47 static void WriteModuleCoverage(char* file_path, const char* module_name, 49 GetCoverageFilename(file_path, StripModuleName(module_name), "sancov"); 61 char* module_name = static_cast<char*>(InternalAlloc(kMaxPathLength)); local 83 WriteModuleCoverage(file_path, module_name, &pcs[module_start_idx], 90 __sanitizer_get_module_and_offset_for_pc(pc, module_name, kMaxPathLength, 96 WriteModuleCoverage(file_path, module_name, &pcs[module_start_idx], 101 InternalFree(module_name);
|
| sanitizer_symbolizer.h | 123 bool GetModuleNameAndOffsetForPC(uptr pc, const char **module_name, 126 const char *module_name = nullptr; local 128 if (GetModuleNameAndOffsetForPC(pc, &module_name, &unused)) 129 return module_name; 178 bool FindModuleNameAndOffsetForAddress(uptr address, const char **module_name,
|
| sanitizer_symbolizer_libcdep.cpp | 87 const char *module_name = nullptr; local 91 if (!FindModuleNameAndOffsetForAddress(addr, &module_name, &module_offset, 95 res->info.FillModuleInfo(module_name, module_offset, arch); 107 const char *module_name = nullptr; local 110 if (!FindModuleNameAndOffsetForAddress(addr, &module_name, &module_offset, 114 info->module = internal_strdup(module_name); 128 const char *module_name = nullptr; local 130 addr, &module_name, &info->module_offset, &info->module_arch)) 132 info->module = internal_strdup(module_name); 142 bool Symbolizer::GetModuleNameAndOffsetForPC(uptr pc, const char **module_name, [all...] |
| sanitizer_symbolizer_posix_libcdep.cpp | 206 Addr2LineProcess(const char *path, const char *module_name) 207 : SymbolizerProcess(path), module_name_(internal_strdup(module_name)) {} 209 const char *module_name() const { return module_name_; } function in class:__sanitizer::final 286 const char *SendCommand(const char *module_name, uptr module_offset) { 290 internal_strcmp(module_name, addr2line_pool_[i]->module_name())) { 297 new(*allocator_) Addr2LineProcess(addr2line_path_, module_name); 300 CHECK_EQ(0, internal_strcmp(module_name, addr2line->module_name()));
|
| /src/external/gpl3/gcc/dist/libcpp/ |
| mkdeps.cc | 84 : primary_output (NULL), module_name (NULL), cmi_name (NULL) 103 XDELETEVEC (module_name); 116 const char *module_name; member in class:mkdeps 357 gcc_assert (!d->module_name); 359 d->module_name = xstrdup (m); 460 if (d->module_name) 465 column = make_write_name (d->module_name, fp, 0, colmax, 473 column = make_write_name (d->module_name, fp, column, colmax, 587 if (d->module_name) 593 p1689r5_write_filepath (d->module_name, fp) [all...] |
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_coverage_libcdep_new.cpp | 49 static void WriteModuleCoverage(char* file_path, const char* module_name, 51 GetCoverageFilename(file_path, StripModuleName(module_name), "sancov"); 63 char* module_name = static_cast<char*>(InternalAlloc(kMaxPathLength)); local 85 WriteModuleCoverage(file_path, module_name, &pcs[module_start_idx], 92 GetModuleAndOffsetForPc(pc, module_name, kMaxPathLength, &pcs[i]); 97 WriteModuleCoverage(file_path, module_name, &pcs[module_start_idx], 102 InternalFree(module_name);
|
| sanitizer_symbolizer.h | 127 bool GetModuleNameAndOffsetForPC(uptr pc, const char **module_name, 130 const char *module_name = nullptr; local 132 if (GetModuleNameAndOffsetForPC(pc, &module_name, &unused)) 133 return module_name; 182 bool FindModuleNameAndOffsetForAddress(uptr address, const char **module_name,
|
| sanitizer_symbolizer_libcdep.cpp | 104 const char *module_name = nullptr; local 107 if (!FindModuleNameAndOffsetForAddress(addr, &module_name, &module_offset, 111 info->module = internal_strdup(module_name); 125 const char *module_name = nullptr; local 127 addr, &module_name, &info->module_offset, &info->module_arch)) 129 info->module = internal_strdup(module_name); 139 bool Symbolizer::GetModuleNameAndOffsetForPC(uptr pc, const char **module_name, 148 if (module_name) 149 *module_name = module_names_.GetOwnedCopy(internal_module_name); 175 const char **module_name, [all...] |
| sanitizer_symbolizer_posix_libcdep.cpp | 205 Addr2LineProcess(const char *path, const char *module_name) 206 : SymbolizerProcess(path), module_name_(internal_strdup(module_name)) {} 208 const char *module_name() const { return module_name_; } function in class:__sanitizer::final 290 const char *SendCommand(const char *module_name, uptr module_offset) { 294 internal_strcmp(module_name, addr2line_pool_[i]->module_name())) { 301 new(*allocator_) Addr2LineProcess(addr2line_path_, module_name); 304 CHECK_EQ(0, internal_strcmp(module_name, addr2line->module_name()));
|
| /src/tests/modules/ufetchstore/ |
| t_ufetchstore.c | 56 #define MODULE_NAME "ufetchstore_tester" 62 atf_tc_skip("loading '%s' module failed.", MODULE_NAME);\ 94 char module_name[] = MODULE_NAME; local 96 if (modctl(MODCTL_UNLOAD, module_name) != 0) { 97 warn("failed to unload module '%s'", MODULE_NAME);
|
| /src/external/gpl3/binutils/dist/include/ |
| oasys.h | 64 char *module_name; member in struct:oasys_module_table 135 char module_name[26-6]; member in struct:oasys_header_record
|
| /src/external/gpl3/binutils.old/dist/include/ |
| oasys.h | 64 char *module_name; member in struct:oasys_module_table 135 char module_name[26-6]; member in struct:oasys_header_record
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/ |
| hwasan_report.cpp | 332 const char *module_name; local 335 if (sym->GetModuleNameAndOffsetForPC(mem, &module_name, &module_address)) { 349 info.start, info.start + info.size, module_name); 358 module_name, module_address); 364 module_name, module_address);
|