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

1 2 3 4 5 6

  /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/crypto/external/bsd/openssl/dist/util/
mk-fipsmodule-cnf.pl 15 my $module_name;
19 "module=s" => \$module_name,
26 my $module_size = [ stat($module_name) ]->[7];
28 open my $fh, "<:raw", $module_name or die "Trying to open $module_name: $!";
29 read $fh, my $data, $module_size or die "Trying to read $module_name: $!";
  /src/external/apache2/llvm/dist/clang/utils/
module-deps-to-rsp.py 11 # module-deps-to-rsp.py deps.json --module-name=ModuleName > module_name.cc1.rsp
13 # clang @module_name.cc1.rsp
21 def __init__(self, module_name):
22 self.module_name = module_name
29 def findModule(module_name, full_deps):
31 if m['name'] == module_name:
33 raise ModuleNotFoundError(module_name)
61 if args.module_name:
62 cmd = findModule(args.module_name, full_deps)['command-line'
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/amdgpu_dm/
amdgpu_dm_services.c 57 const char *module_name,
69 const char *module_name,
  /src/crypto/external/apache2/openssl/dist/util/
mk-fipsmodule-cnf.pl 32 my $module_name;
36 "module=s" => \$module_name,
43 my $module_size = [ stat($module_name) ]->[7];
45 open my $fh, "<:raw", $module_name or die "Trying to open $module_name: $!";
46 read $fh, my $data, $module_size or die "Trying to read $module_name: $!";
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
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_stacktrace_libcdep.cc 86 static int GetModuleAndOffsetForPc(uptr pc, char *module_name,
94 if (module_name && module_name_len) {
95 internal_strncpy(module_name, found_module_name, module_name_len);
96 module_name[module_name_len - 1] = '\x00';
153 uptr pc, char *module_name, uptr module_name_len, uptr *pc_offset) {
154 return __sanitizer::GetModuleAndOffsetForPc(pc, module_name, module_name_len,
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_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);
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
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_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_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()));
sanitizer_stacktrace_libcdep.cpp 169 static int GetModuleAndOffsetForPc(uptr pc, char *module_name,
177 if (module_name && module_name_len) {
178 internal_strncpy(module_name, found_module_name, module_name_len);
179 module_name[module_name_len - 1] = '\x00';
219 int __sanitizer_get_module_and_offset_for_pc(uptr pc, char *module_name,
222 return __sanitizer::GetModuleAndOffsetForPc(pc, module_name, module_name_len,
  /src/crypto/external/apache2/openssl/dist/test/testutil/
provider.c 18 OSSL_PROVIDER **provider, const char *module_name)
41 if (provider != NULL && module_name != NULL
42 && (*provider = OSSL_PROVIDER_load(new_libctx, module_name)) == NULL) {
43 opt_printf_stderr("Failed to load provider %s\n", module_name);
56 const char *module_name; local
58 if (!TEST_ptr(module_name = test_get_argument(argn))) {
62 if (strcmp(module_name, "none") == 0)
65 test_get_argument(argn + 1), provider, module_name);
  /src/crypto/external/bsd/openssl/dist/test/testutil/
provider.c 18 OSSL_PROVIDER **provider, const char *module_name)
41 if (provider != NULL && module_name != NULL
42 && (*provider = OSSL_PROVIDER_load(new_libctx, module_name)) == NULL) {
43 opt_printf_stderr("Failed to load provider %s\n", module_name);
56 const char *module_name; local
58 if (!TEST_ptr(module_name = test_get_argument(argn))) {
62 if (strcmp(module_name, "none") == 0)
65 test_get_argument(argn + 1), provider, module_name);
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
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_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_stacktrace_libcdep.cpp 170 int GetModuleAndOffsetForPc(uptr pc, char *module_name, uptr module_name_len,
178 if (module_name && module_name_len) {
179 internal_strncpy(module_name, found_module_name, module_name_len);
180 module_name[module_name_len - 1] = '\x00';
221 int __sanitizer_get_module_and_offset_for_pc(void *pc, char *module_name,
225 reinterpret_cast<uptr>(pc), module_name, module_name_len,
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...]
  /src/external/bsd/ntp/dist/sntp/unity/auto/
generate_module.rb 18 "\nUsage: ruby generate_module [options] module_name",
92 raise "ERROR: You can't have more than one Module name specified!" unless @module_name.nil?
93 @module_name = arg
101 raise "ERROR: You must have a Module name specified! (use option -h for help)" if @module_name.nil?
143 :path => "#{triad[:path]}#{@module_name}#{pattern_file}#{triad[:ext]}",
144 :name => "#{@module_name}#{pattern_file}",
148 when :src then @includes[:src] | pattern_traits[:inc].map{|f| f % [@module_name]}
150 when :tst then @includes[:tst] | pattern_traits[:inc].map{|f| "Mock#{f}"% [@module_name]}
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_suppressions.cc 79 if (const char *module_name = symbolizer->GetModuleNameForPc(addr))
80 if (suppression_ctx->Match(module_name, kInterceptorViaLibrary, &s))
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_suppressions.cpp 78 if (const char *module_name = symbolizer->GetModuleNameForPc(addr))
79 if (suppression_ctx->Match(module_name, kInterceptorViaLibrary, &s))
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_suppressions.cpp 78 if (const char *module_name = symbolizer->GetModuleNameForPc(addr))
79 if (suppression_ctx->Match(module_name, kInterceptorViaLibrary, &s))
  /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...]

Completed in 92 milliseconds

1 2 3 4 5 6