Searched refs:module_name (Results 1 - 25 of 84) sorted by relevance

1234

/openbsd-current/gnu/llvm/lldb/docs/_lldb/
H A D__init__.py8 module_name = '_lldb' variable
9 sys.modules[module_name] = Mock()
/openbsd-current/gnu/llvm/clang/utils/
H A Dmodule-deps-to-rsp.py8 # module-deps-to-rsp.py deps.json --module-name=ModuleName > module_name.cc1.rsp
10 # clang @module_name.cc1.rsp
18 def __init__(self, module_name):
19 self.module_name = module_name
26 def findModule(module_name, full_deps):
28 if m['name'] == module_name:
30 raise ModuleNotFoundError(module_name)
61 if args.module_name:
62 cmd = findModule(args.module_name, full_dep
[all...]
/openbsd-current/gnu/llvm/lldb/examples/python/
H A Dsources.py20 for module_name in module_names:
21 dump_module_sources(target.module[module_name], result)
H A Dcmdtemplate.py23 def register_lldb_command(cls, debugger, module_name):
27 command = 'command script add -o -c %s.%s %s' % (module_name,
/openbsd-current/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/
H A D04-xs-rpath-darwin.t52 module_name => "My::Module",
96 $str =~ s/\Q<<module_name_colon>>\E/$self->{module_name}/g;
97 my @module_name = split /::/, $self->{module_name};
98 my $xs_name = pop @module_name;
114 $str =~ s/\Q<<module_name_colon>>\E/$self->{module_name}/g;
129 my @dirs = split /::/, $self->{module_name};
148 $str =~ s/\Q<<module_name_colon>>\E/$self->{module_name}/g;
169 my $mod_name1 = $self->{module_name};
170 my $mod_name2 = $self->{module_name};
[all...]
/openbsd-current/gnu/llvm/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp36 llvm::StringRef module_name; local
52 GetKey(OptionNames::ModuleName), module_name);
57 module_filespec.SetFile(module_name, FileSpec::Style::native);
69 ConstString module_name; local
71 module_name.SetCString(module_name.GetCString());
74 module_name.GetCString());
/openbsd-current/gnu/llvm/lldb/source/Target/
H A DStackFrameRecognizer.cpp71 std::string module_name; local
75 module_name = entry.module_regexp->GetText().str();
79 callback(entry.recognizer_id, entry.recognizer->GetName(), module_name,
115 ConstString module_name = module_sp->GetFileSpec().GetFilename();
124 if (entry.module != module_name)
128 if (!entry.module_regexp->Execute(module_name.GetStringRef()))
H A DSectionLoadList.cpp154 std::string module_name("<Unknown>");
158 module_name = module_file_spec.GetPath();
161 static_cast<void *>(section_sp.get()), module_name.c_str(),
189 std::string module_name("<Unknown>");
192 module_name = module_file_spec.GetPath();
199 module_name.c_str(), section_sp->GetName().AsCString(), load_addr);
/openbsd-current/gnu/usr.bin/perl/cpan/CPAN/scripts/
H A Dcpan27 cpan module_name [ module_name ... ]
30 cpan [-cfFimtTw] module_name [ module_name ... ]
33 cpan -I module_name [ module_name ... ]
/openbsd-current/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/t/
H A D01-basic.t47 $lib_file = $b->lib_file($object_file, module_name => 'basict');
51 module_name => 'basict');
H A D03-cplusplus.t46 $lib_file = $b->lib_file($object_file, module_name => 'cplust');
50 module_name => 'cplust');
/openbsd-current/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/
H A Daix.pm17 (my $baseext = $args{module_name}) =~ s/.*:://;
H A Dos2.pm30 and (defined $args{module_name} and length $args{module_name})) {
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer.h127 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,
H A Dsanitizer_coverage_libcdep_new.cpp49 static void WriteModuleCoverage(char* file_path, const char* module_name, argument
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);
H A Dsanitizer_stacktrace_libcdep.cpp169 int GetModuleAndOffsetForPc(uptr pc, char *module_name, uptr module_name_len, argument
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(void *pc, char *module_name, argument
223 reinterpret_cast<uptr>(pc), module_name, module_name_len,
H A Dsanitizer_symbolizer_libcdep.cpp104 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, argument
148 if (module_name)
149 *module_name = module_names_.GetOwnedCopy(internal_module_name);
172 const char **module_name,
171 FindModuleNameAndOffsetForAddress(uptr address, const char **module_name, uptr *module_offset, ModuleArch *module_arch) argument
442 FormatAndSendCommand(const char *command_prefix, const char *module_name, uptr module_offset, ModuleArch arch) argument
[all...]
H A Dsanitizer_symbolizer_posix_libcdep.cpp205 Addr2LineProcess(const char *path, const char *module_name) argument
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) { argument
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()));
H A Dsanitizer_procmaps_common.cpp123 InternalMmapVector<char> module_name(kMaxPathLength);
124 MemoryMappedSegment segment(module_name.data(), module_name.size());
/openbsd-current/gnu/llvm/lldb/utils/lui/
H A Dlldbutil.py328 module_name=None):
342 if module_name:
343 command += " --shlib '%s'" % (module_name)
357 module_name=module_name)
373 module_name=None):
379 if module_name:
380 command += " --shlib '%s'" % (module_name)
393 module_name=module_name)
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_suppressions.cpp78 if (const char *module_name = symbolizer->GetModuleNameForPc(addr))
79 if (suppression_ctx->Match(module_name, kInterceptorViaLibrary, &s))
H A Dasan_globals.cpp88 g.module_name, g.has_dynamic_init, (void *)g.odr_indicator);
306 str->append("%s", g.module_name);
382 globals[i].name == nullptr && globals[i].module_name == nullptr &&
416 void __asan_before_dynamic_init(const char *module_name) { argument
422 CHECK(module_name);
426 Printf("DynInitPoison module: %s\n", module_name);
432 if (g->module_name != module_name)
/openbsd-current/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/
H A DBase.pm217 @lib_files = $self->link(objects => $obj_file, module_name => 'compilet');
238 if (defined $args{module_name} and length $args{module_name}) {
242 my $lib = DynaLoader::mod2fname([split /::/, $args{module_name}]);
316 $self->prelink(%args, dl_name => $args{module_name})
322 %args, dl_name => $args{module_name}, prelink_res => \@temp_files
/openbsd-current/gnu/usr.bin/binutils/include/
H A Doasys.h64 char *module_name; member in struct:oasys_module_table
135 char module_name[26-6]; member in struct:oasys_header_record
/openbsd-current/gnu/usr.bin/binutils-2.17/include/
H A Doasys.h64 char *module_name; member in struct:oasys_module_table
135 char module_name[26-6]; member in struct:oasys_header_record

Completed in 303 milliseconds

1234