| /freebsd-14.2/tests/atf_python/ |
| H A D | utils.py | 26 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-14.2/sys/tests/ |
| H A D | ktest.c | 62 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-14.2/crypto/heimdal/lib/kadm5/ |
| H A D | free.c | 65 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 D | marshall.c | 138 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 D | get_s.c | 131 &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 D | admin.h | 140 krb5_principal mod_name; member
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_symbolizer.cpp | 39 void AddressInfo::FillModuleInfo(const char *mod_name, uptr mod_offset, in FillModuleInfo() argument 41 module = internal_strdup(mod_name); in FillModuleInfo()
|
| H A D | sanitizer_symbolizer.h | 49 void FillModuleInfo(const char *mod_name, uptr mod_offset, ModuleArch arch);
|
| /freebsd-14.2/crypto/heimdal/kdc/ |
| H A D | hprop.h | 67 char mod_name[64]; member
|
| /freebsd-14.2/bin/pax/ |
| H A D | ar_subs.c | 119 if ((res = mod_name(arcn)) < 0) in list() 232 if ((pat_sel(arcn) < 0) || ((res = mod_name(arcn)) < 0)) in extract() 445 if ((res = mod_name(arcn)) < 0) { in wr_archive() 845 if ((chk_lnk(arcn) < 0) || ((res = mod_name(arcn)) < 0)) in copy()
|
| H A D | extern.h | 198 int mod_name(ARCHD *);
|
| H A D | pat_rep.c | 586 mod_name(ARCHD *arcn) in mod_name() function
|
| /freebsd-14.2/sys/contrib/openzfs/cmd/zed/agents/ |
| H A D | fmd_api.c | 59 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-14.2/crypto/heimdal/kadmin/ |
| H A D | get.c | 196 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 D | rpc.c | 407 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 D | ChangeLog | 276 * get.c (format_field): allow mod_name to be optional
|
| /freebsd-14.2/usr.sbin/bsnmpd/modules/snmp_bridge/ |
| H A D | bridge_sys.c | 83 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-14.2/stand/kshim/ |
| H A D | bsd_kernel.h | 445 const char *mod_name; member
|
| H A D | bsd_kernel.c | 714 if (devclass_equal(mod->mod_name, classname)) { in devclass_find_create()
|
| /freebsd-14.2/contrib/ofed/opensm/opensm/ |
| H A D | osm_subnet.c | 1810 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-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.cpp | 4902 std::string mod_name; in LoadModules() local 4908 valid &= modInfo.get_name(mod_name); in LoadModules() 4917 FileSpec file(mod_name); in LoadModules()
|