Home
last modified time | relevance | path

Searched refs:modname (Results 1 – 21 of 21) sorted by relevance

/openbsd-src/gnu/llvm/lldb/examples/customization/import-python/
H A Dimportcmd.py16 def do_import(debugger, modname): argument
17 if (len(modname) > 4 and modname[-4:] == '.pyc'):
18 modname = modname[:-4]
19 if (len(modname) > 3 and modname[-3:] == '.py'):
20 modname = modname[:-3]
21 debugger.HandleCommand("script import " + modname)
30 modname = args
34 modname = args[endofdir + 1:]
37 do_import(debugger, modname)
/openbsd-src/gnu/usr.bin/cvs/src/
H A Dmodules.c41 char *modname; member
851 return (strcmp (left->modname, right->modname));
873 s_rec->modname = cp = xmalloc (ks + 1);
982 line = xmalloc (strlen (s_h->modname) + 15);
983 sprintf (line, "%-12s", s_h->modname);
994 line = xmalloc (strlen (s_h->modname) + strlen (s_h->rest) + 15);
996 (void) sprintf (line, "%s %s", s_h->modname, s_h->rest);
/openbsd-src/sys/dev/tc/
H A Dtcds.c130 tcds_lookup(modname) in tcds_lookup() argument
131 const char *modname; in tcds_lookup()
136 if (strncmp(td->td_name, modname, TC_ROM_LLEN) == 0)
/openbsd-src/gnu/usr.bin/perl/ext/Pod-Html/lib/Pod/
H A DHtml.pm676 foreach my $modname (keys %{$self->pages}) {
677 push @matches, $modname if $modname =~ /::\Q$to\E\z/;
/openbsd-src/gnu/usr.bin/perl/
H A Dinstallperl158 my($path, $modname) = ($1,$2);
171 $modname = "$path/$modname" if length $path;
174 $archpms{$modname} = 1;
H A Dop.c8191 OP * modname; in S_assignment_type()
8213 modname = newSVOP(OP_CONST, 0, name); in S_newONCEOP()
8214 modname->op_private |= OPpCONST_BARE; in S_newONCEOP()
8236 utilize(!(flags & PERL_LOADMOD_DENY), floor, veop, modname, imop); in Perl_newARGDEFELEMOP()
8025 OP * modname; Perl_vload_module() local
/openbsd-src/gnu/usr.bin/binutils/binutils/
H A Dieee.c3816 const char *modname; member
4300 || ! ieee_write_id (info, info->modname)) in ieee_pop_type_used()
4474 || ! ieee_write_id (info, info->modname)) in ieee_define_named_type()
4812 const char *modname; in ieee_start_compilation_unit() local
4826 modname = strrchr (filename, '/'); in ieee_start_compilation_unit()
4830 if (modname == NULL || (backslash != NULL && backslash > modname)) in ieee_start_compilation_unit()
4831 modname = backslash; in ieee_start_compilation_unit()
4834 if (modname != NULL) in ieee_start_compilation_unit()
4835 ++modname; in ieee_start_compilation_unit()
4838 modname = filename + 2; in ieee_start_compilation_unit()
[all …]
H A Dobjdump.c893 const char *modname; member
909 try_print_file_open (const char *origname, const char *modname) in try_print_file_open() argument
914 f = fopen (modname, "r"); in try_print_file_open()
926 p->modname = modname; in try_print_file_open()
976 char *modname = concat (include_paths[i], "/", fname, (const char *) 0); in update_source_path() local
978 p = try_print_file_open (filename, modname); in update_source_path()
982 free (modname); in update_source_path()
1085 p->f = fopen (p->modname, "r"); in show_line()
H A Dnlmconv.c202 char *modname; in main() local
1070 for (modname = nlm_fixed_header (outbfd)->moduleName; in main()
1071 *modname != '\0'; in main()
1072 modname++) in main()
1073 *modname = TOUPPER (*modname); in main()
H A DChangeLog-0203414 (struct print_file_list): Make filename const. Add modname.
/openbsd-src/gnu/usr.bin/binutils-2.17/binutils/
H A Dieee.c3817 const char *modname; member
4301 || ! ieee_write_id (info, info->modname)) in ieee_pop_type_used()
4475 || ! ieee_write_id (info, info->modname)) in ieee_define_named_type()
4815 const char *modname; in ieee_start_compilation_unit() local
4829 modname = strrchr (filename, '/'); in ieee_start_compilation_unit()
4833 if (modname == NULL || (backslash != NULL && backslash > modname)) in ieee_start_compilation_unit()
4834 modname = backslash; in ieee_start_compilation_unit()
4837 if (modname != NULL) in ieee_start_compilation_unit()
4838 ++modname; in ieee_start_compilation_unit()
4841 modname = filename + 2; in ieee_start_compilation_unit()
[all …]
H A Dobjdump.c928 const char *modname; member
944 try_print_file_open (const char *origname, const char *modname) in try_print_file_open() argument
949 f = fopen (modname, "r"); in try_print_file_open()
961 p->modname = modname; in try_print_file_open()
1011 char *modname = concat (include_paths[i], "/", fname, (const char *) 0); in update_source_path() local
1013 p = try_print_file_open (filename, modname); in update_source_path()
1017 free (modname); in update_source_path()
1120 p->f = fopen (p->modname, "r"); in show_line()
H A Dnlmconv.c198 char *modname; in main() local
1071 for (modname = nlm_fixed_header (outbfd)->moduleName; in main()
1072 *modname != '\0'; in main()
1073 modname++) in main()
1074 *modname = TOUPPER (*modname); in main()
H A DChangeLog-0203414 (struct print_file_list): Make filename const. Add modname.
/openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/inc/
H A Dcall144 OP * const modname = newSVOP(OP_CONST, 0, name);
150 SvREADONLY_off(((SVOP*)modname)->op_sv);
151 modname->op_private |= OPpCONST_BARE;
181 modname, imop);
/openbsd-src/gnu/llvm/compiler-rt/lib/interception/
H A Dinterception_win.cpp1030 RVAPtr<const char> modname(module, imports->Name); in OverrideImportedFunction() local
1031 if (_stricmp(&*modname, imported_module) == 0) in OverrideImportedFunction()
/openbsd-src/gnu/usr.bin/perl/os2/
H A Dos2.c56 const char *modname; member
644 loadModule(const char *modname, int fail) in loadModule() argument
646 HMODULE h = (HMODULE)dlopen(modname, 0); in loadModule()
650 modname, dlerror()); in loadModule()
708 loadOrdinals[ord].dll->modname); in loadByOrdinal()
714 = loadModule(loadOrdinals[ord].dll->modname, fail); in loadByOrdinal()
730 loadOrdinals[ord].dll->modname, s); in loadByOrdinal()
5390 while (dlls->modname) { in fork_with_resources()
5403 dlls->modname, (int)dlls->handle, rc, rc); in fork_with_resources()
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win.cpp604 static uptr GetPreferredBase(const char *modname, char *buf, size_t buf_size) { in GetPreferredBase() argument
605 fd_t fd = OpenFile(modname, RdOnly, nullptr); in GetPreferredBase()
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dtarget.c1448 target_link (char *modname, CORE_ADDR *t_reloc) in target_link() argument
1452 (current_target.to_lookup_symbol) (modname, t_reloc); in target_link()
1454 error ("Unable to link to %s and get relocation in rombug", modname); in target_link()
/openbsd-src/usr.sbin/unbound/daemon/
H A Dremote.c2568 const char *modname = mesh->mods.mod[m->s.curmod]->name; in do_auth_zone_reload()
2570 if(strcmp(modname, "iterator") == 0 && s == module_wait_reply && in do_auth_zone_reload()
2577 snprintf(buf, len, "%s wait for", modname); in do_auth_zone_reload()
2595 snprintf(buf, len, "%s wants", modname); in do_auth_zone_reload()
2612 snprintf(buf, len, "%s is %s", modname, strextstate(s)); in do_auth_zone_reload()
2401 const char *modname = mesh->mods.mod[m->s.curmod]->name; get_mesh_status() local
/openbsd-src/gnu/usr.bin/perl/cpan/Term-ReadKey/
H A Dppport.h15530 OP * const modname = newSVOP(OP_CONST, 0, name); in DPPP_() local
15536 SvREADONLY_off(((SVOP*)modname)->op_sv); in DPPP_()
15537 modname->op_private |= OPpCONST_BARE; in DPPP_()
15567 modname, imop); in DPPP_()