Home
last modified time | relevance | path

Searched refs:mod_name (Results 1 – 22 of 22) sorted by relevance

/freebsd/tests/atf_python/
H A Dutils.py26 def modfind(self, mod_name: str) -> int:
27 if self._libc.modfind(bytes(mod_name, encoding="ascii")) == -1:
50 def require_module(self, mod_name: str, skip=True):
51 error_code = libc.modfind(mod_name)
55 txt = "kernel module '{}' not available: {}".format(mod_name, err_str)
62 for mod_name in self.REQUIRED_MODULES:
63 self.require_module(mod_name)
/freebsd/sys/tests/
H A Dktest.c62 char *mod_name; member
71 { .type = KTEST_ATTR_MOD_NAME, .off = _OUT(mod_name), .cb = nlattr_get_string },
146 if (attrs.mod_name && strcmp(attrs.mod_name, mod->info->name)) in dump_tests()
173 if (attrs.mod_name == NULL) { in run_test()
187 if (strcmp(attrs.mod_name, mod->info->name)) in run_test()
/freebsd/crypto/heimdal/lib/kadm5/
H A Dfree.c65 if(princ->mod_name) in kadm5_free_principal_ent()
66 krb5_free_principal(context->context, princ->mod_name); in kadm5_free_principal_ent()
H A Dmarshall.c138 CHECK(krb5_store_int32(sp, princ->mod_name != NULL)); in store_principal_ent()
139 if(princ->mod_name) in store_principal_ent()
140 CHECK(krb5_store_principal(sp, princ->mod_name)); in store_principal_ent()
230 CHECK(krb5_ret_principal(sp, &princ->mod_name)); in ret_principal_ent()
232 princ->mod_name = NULL; in ret_principal_ent()
H A Dget_s.c131 &out->mod_name); in kadm5_s_get_principal()
135 &out->mod_name); in kadm5_s_get_principal()
137 out->mod_name = NULL; in kadm5_s_get_principal()
H A Dadmin.h140 krb5_principal mod_name; member
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer.cpp39 void AddressInfo::FillModuleInfo(const char *mod_name, uptr mod_offset, in FillModuleInfo()
41 module = internal_strdup(mod_name); in FillModuleInfo()
37 FillModuleInfo(const char * mod_name,uptr mod_offset,ModuleArch mod_arch) FillModuleInfo() argument
H A Dsanitizer_symbolizer.h49 void FillModuleInfo(const char *mod_name, uptr mod_offset, ModuleArch arch);
/freebsd/bin/pax/
H A Dar_subs.c113 if ((res = mod_name(arcn)) < 0) in list()
226 if ((pat_sel(arcn) < 0) || ((res = mod_name(arcn)) < 0)) in extract()
439 if ((res = mod_name(arcn)) < 0) { in wr_archive()
839 if ((chk_lnk(arcn) < 0) || ((res = mod_name(arcn)) < 0)) in copy()
H A Dextern.h196 int mod_name(ARCHD *);
H A Dpat_rep.c580 mod_name(ARCHD *arcn) in mod_name() function
/freebsd/crypto/heimdal/kdc/
H A Dhprop.h67 char mod_name[64]; member
/freebsd/sys/contrib/openzfs/cmd/zed/agents/
H A Dfmd_api.c59 const char *mod_name; /* basename of module (ro) */ member
105 mp->mod_name = mip->fmdi_desc + 4; /* drop 'ZFS ' prefix */ in fmd_hdl_register()
217 zed_log_msg(LOG_INFO, "%s: %s", mp->mod_name, message); in fmd_hdl_debug()
577 fmd_hdl_debug(hdl, "%s timer fired (%p)", mp->mod_name, ftp->ft_tid); in _timer_notify()
/freebsd/crypto/heimdal/kadmin/
H A Dget.c196 if (princ->mod_name == NULL) in format_field()
199 krb5_unparse_name_fixed_short(context, princ->mod_name, buf, buf_len); in format_field()
201 krb5_unparse_name_fixed(context, princ->mod_name, buf, buf_len); in format_field()
H A Drpc.c407 CHECK(krb5_store_int32(sp, ent->mod_name == NULL)); in store_principal_ent()
408 if (ent->mod_name) in store_principal_ent()
409 CHECK(store_principal_xdr(contextp, sp, ent->mod_name)); in store_principal_ent()
470 ret_principal_xdr(contextp, sp, &ent->mod_name); in ret_principal_ent()
H A DChangeLog276 * get.c (format_field): allow mod_name to be optional
/freebsd/usr.sbin/bsnmpd/modules/snmp_bridge/
H A Dbridge_sys.c83 const char mod_name[] = "if_bridge"; in bridge_kmod_load() local
96 if (strcmp(mod_name, mstat.name) == 0) in bridge_kmod_load()
102 if (kldload(mod_name) < 0) { in bridge_kmod_load()
103 syslog(LOG_ERR, "failed to load %s kernel module", mod_name); in bridge_kmod_load()
/freebsd/stand/kshim/
H A Dbsd_kernel.c944 dc = devclass_find(mod->mod_name); in device_probe_and_attach()
1086 (void)devclass_find_create(mdata->mod_name); in module_register()
H A Dbsd_kernel.h449 const char *mod_name; member
/freebsd/usr.sbin/freebsd-update/
H A Dfreebsd-update.sh662 local mod_name
701 mod_name=$(echo "${w}" | awk '{print $1;}')
704 report="${report}${mod_name} ${pkg_name} ${port_name}\n"
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_subnet.c1810 char *mod_name, in insert_per_module_debug() argument
1815 if (find_module_name(mod_name, &index)) { in insert_per_module_debug()
1817 "Module name %s not found\n", mod_name); in insert_per_module_debug()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp5079 std::string mod_name; in LoadModules() local
5085 valid &= modInfo.get_name(mod_name); in LoadModules()
5094 FileSpec file(mod_name); in LoadModules()