HomeSort by: relevance | last modified time | path
    Searched defs:modname (Results 1 - 24 of 24) sorted by relevancy

  /src/lib/libpam/libpam/
pam_debug_log.c 55 const char *modname, *period; local
59 modname = strrchr(file, '/');
60 if (modname == NULL)
61 modname = file;
62 period = strchr(modname, '.');
64 period = strchr(modname, '\0');
70 pam_error(pamh, "%.*s: %s: %s\n", (int)(ssize_t)(period - modname),
71 modname, function, msg);
  /src/external/bsd/openpam/dist/bin/openpam_dump_policy/
openpam_dump_policy.c 72 char *modname, **opt, *p; local
77 modname = strrchr(chain->module->path, '/');
78 modname = strdup(modname ? modname : chain->module->path);
79 if (modname == NULL)
81 for (p = modname; *p && *p != '.'; ++p)
84 printf("extern struct pam_module %s_pam_module;\n", modname);
104 printf("\t.module = &%s_pam_module,\n", modname);
113 free(modname);
    [all...]
  /src/external/cddl/osnet/dev/fbt/mips/
fbt_isa.c 112 char *modname; local
114 modname = opaque;
123 const char *modname = module_name(mod); local
153 fbt->fbtp_id = dtrace_probe_create(fbt_id, modname,
197 fbt->fbtp_id = dtrace_probe_create(fbt_id, modname,
  /src/external/cddl/osnet/dist/lib/libdtrace/common/
drti.c 63 static const char *modname; /* Name of this load object */ variable
78 if (modname == NULL)
81 (void) fprintf(stderr, "dtrace DOF %s: ", modname);
134 if ((modname = strrchr(lmp->l_name, '/')) == NULL)
135 modname = lmp->l_name;
137 modname++;
157 "%s", modname);
160 "LM%lu`%s", lmid, modname);
  /src/external/cddl/osnet/dev/fbt/aarch64/
fbt_isa.c 128 char *modname = opaque; local
137 const char *modname = module_name(mod); local
176 fbt->fbtp_id = dtrace_probe_create(fbt_id, modname,
230 fbt->fbtp_id = dtrace_probe_create(fbt_id, modname,
  /src/sys/net/npf/
npf_alg.c 111 char modname[NPF_ALG_PREFLEN + 64]; local
113 snprintf(modname, sizeof(modname), "%s%s", NPF_ALG_PREF, name);
116 if (module_autoload(modname, MODULE_CLASS_MISC) != 0) {
npf_rproc.c 105 char modname[RPROC_NAME_LEN + NPF_EXT_PREFLEN]; local
120 snprintf(modname, sizeof(modname), "%s%s", npf_ext_prefix, name);
121 error = module_autoload(modname, MODULE_CLASS_MISC);
  /src/external/cddl/osnet/dev/fbt/x86/
fbt_isa.c 230 char *modname = opaque; local
245 const char *modname = module_name(mod); local
299 fbt->fbtp_id = dtrace_probe_create(fbt_id, modname,
389 fbt->fbtp_id = dtrace_probe_create(fbt_id, modname,
  /src/external/cddl/osnet/dev/fbt/arm/
fbt_isa.c 131 char *modname = opaque; local
159 fbt->fbtp_id = dtrace_probe_create(fbt_id, modname,
204 fbt->fbtp_id = dtrace_probe_create(fbt_id, modname,
273 const char *modname = module_name(mod); local
314 fbt->fbtp_id = dtrace_probe_create(fbt_id, modname,
387 fbt->fbtp_id = dtrace_probe_create(fbt_id, modname,
  /src/external/cddl/osnet/dev/sdt/
sdt.c 216 const char *modname = (probe->sdtp_lf == NULL ? "netbsd" : local
218 strlcpy(mod, modname, sizeof(mod));
  /src/external/gpl2/xcvs/dist/src/
modules.c 50 char *modname;
812 return (strcmp (left->modname, right->modname));
830 s_rec->modname = cp = xmalloc (ks + 1);
938 line = Xasprintf ("%-12s", s_h->modname);
949 line = Xasprintf ("%s %s", s_h->modname, s_h->rest);
1040 /* FIXME-leak: here is where we would free s_h->modname, s_h->rest,
48 char *modname; member in struct:sortrec
  /src/external/mit/lua/dist/src/
lua.c 214 ** Receives 'globname[=modname]' and runs 'globname = require(modname)'.
218 char *modname = strchr(globname, '='); local
219 if (modname == NULL) /* no explicit name? */
220 modname = globname; /* module name is equal to global name */
222 *modname = '\0'; /* global name ends here */
223 modname++; /* module name starts after the '=' */
226 lua_pushstring(L, modname);
227 status = docall(L, 1, 1); /* call 'require(modname)' */
229 lua_setglobal(L, globname); /* globname = require(modname) */
    [all...]
  /src/sys/arch/arm/ti/
ti_iic.c 238 const char *modname; local
281 modname = fdtbus_get_string(phandle, "ti,hwmods");
282 if (modname == NULL)
283 modname = fdtbus_get_string(OF_parent(phandle), "ti,hwmods");
290 if (modname != NULL)
291 aprint_normal(": I2C controller (%s), %d-bytes FIFO\n", modname, fifo);
  /src/usr.sbin/altq/libaltq/
qop.c 1412 char modname[64], filename[MAXPATHLEN], *cp; local
1425 strlcpy(modname, "altq_", sizeof(modname));
1428 strlcat(modname, cp + 1, sizeof(modname));
1431 snprintf(filename, sizeof(filename), "/modules/%s.ko", modname);
1437 if (kldload(modname) < 0) {
1438 LOG(LOG_ERR, errno, "kldload %s failed!", modname);
1443 LOG(LOG_INFO, 0, "kld module %s loaded", modname);
  /src/external/cddl/osnet/dev/fbt/
fbt.c 204 char modname[MAXPATHLEN]; local
208 strlcpy(modname, lf->filename, sizeof(modname));
209 len = strlen(modname);
210 if (len > 3 && strcmp(modname + len - 3, ".ko") == 0)
211 modname[len - 3] = '\0';
217 if (strcmp(modname, "dtrace") == 0)
241 (void) linker_file_function_listall(lf, fbt_provide_module_function, modname);
250 char modname[MAXPATHLEN]; local
259 strlcpy(modname, module_name(mod), sizeof(modname))
    [all...]
  /src/external/gpl3/binutils/dist/bfd/
vms-lib.c 1509 const char *modname = bfd_get_filename (el); local
1510 int modlen = strlen (modname);
1520 if (ISALPHA (modname[j]))
1521 filename[j] = TOLOWER (modname[j]);
1523 filename[j] = modname[j];
  /src/external/gpl3/binutils.old/dist/bfd/
vms-lib.c 1505 const char *modname = bfd_get_filename (el); local
1506 int modlen = strlen (modname);
1516 if (ISALPHA (modname[j]))
1517 filename[j] = TOLOWER (modname[j]);
1519 filename[j] = modname[j];
  /src/external/gpl3/gdb/dist/bfd/
vms-lib.c 1505 const char *modname = bfd_get_filename (el); local
1506 int modlen = strlen (modname);
1516 if (ISALPHA (modname[j]))
1517 filename[j] = TOLOWER (modname[j]);
1519 filename[j] = modname[j];
  /src/external/gpl3/gdb.old/dist/bfd/
vms-lib.c 1505 const char *modname = bfd_get_filename (el); local
1506 int modlen = strlen (modname);
1516 if (ISALPHA (modname[j]))
1517 filename[j] = TOLOWER (modname[j]);
1519 filename[j] = modname[j];
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-ssa-warn-access.cc 2830 const char* modname; member in struct:__anon11211::memmodel_pair
2857 return memory_models[i].modname;
2904 if (const char *modname = memmodel_name (sucs))
2907 modname, fndecl);
2921 const char *modname = memory_models[valid[i]].modname; local
2922 pp_printf (&pp, "%s%qs", i ? ", " : "", modname);
2973 const char *modname = memory_models[valid[i]].modname; local
2974 sprintf (buf + strlen (buf), "'%s'", modname);
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
gimple-ssa-warn-access.cc 2855 const char* modname; member in struct:__anon1174::memmodel_pair
2882 return memory_models[i].modname;
2930 if (const char *modname = memmodel_name (sucs))
2933 modname, fndecl);
2947 const char *modname = memory_models[valid[i]].modname; local
2948 pp_printf (&pp, "%s%qs", i ? ", " : "", modname);
3001 const char *modname = memory_models[valid[i]].modname; local
3002 sprintf (buf + strlen (buf), "'%s'", modname);
    [all...]
  /src/external/bsd/unbound/dist/daemon/
remote.c 3004 const char *modname = mesh->mods.mod[m->s.curmod]->name; local
3006 if(strcmp(modname, "iterator") == 0 && s == module_wait_reply &&
3013 snprintf(buf, len, "%s wait for", modname);
3031 snprintf(buf, len, "%s wants", modname);
3048 snprintf(buf, len, "%s is %s", modname, strextstate(s));
  /src/external/gpl3/binutils/dist/binutils/
objdump.c 1812 const char *modname;
2073 /* Tries to open MODNAME, and if successful adds a node to print_files
2079 const char * modname,
2087 p->map = slurp_file (modname, &p->mapsize, fst_return, abfd);
2098 p->modname = modname;
2130 char *modname = concat (include_paths[i], "/", fname,
2133 p = try_print_file_open (filename, modname, &fst, abfd);
2137 free (modname);
1807 const char *modname; member in struct:print_file_list
2125 char *modname = concat (include_paths[i], "\/", fname, local
  /src/external/gpl3/binutils.old/dist/binutils/
objdump.c 1821 const char *modname;
2082 /* Tries to open MODNAME, and if successful adds a node to print_files
2088 const char * modname,
2096 p->map = slurp_file (modname, &p->mapsize, fst_return, abfd);
2107 p->modname = modname;
2139 char *modname = concat (include_paths[i], "/", fname,
2142 p = try_print_file_open (filename, modname, &fst, abfd);
2146 free (modname);
1816 const char *modname; member in struct:print_file_list
2134 char *modname = concat (include_paths[i], "\/", fname, local

Completed in 66 milliseconds