Searched refs:mod_path (Results 1 - 8 of 8) sorted by relevance
/illumos-gate/usr/src/psm/stand/lib/names/sparc/common/ |
H A D | uname-m.c | 71 mod_path_uname_m(char *mod_path, char *ia_name) argument 79 * directory (e.g. /platform/SUNW,foo/kernel) to the mod_path unless 89 if (platcmp(mod_path, default_name)) { 93 (void) strcpy(tmp, mod_path); 94 (void) strcpy(mod_path, "/platform/"); 95 (void) strcat(mod_path, ia_name); 96 (void) strcat(mod_path, "/kernel "); 97 (void) strcat(mod_path, tmp); 99 } else if (platcmp(mod_path, ia_name)) 100 (void) strcat(mod_path, default_pat [all...] |
/illumos-gate/usr/src/cmd/fm/fmd/common/ |
H A D | fmd_rtld.c | 51 if ((dlp = dlopen(mp->mod_path, RTLD_LOCAL | RTLD_NOW)) == NULL) {
|
H A D | fmd_module.h | 112 char *mod_path; /* full pathname of module file (ro) */ member in struct:fmd_module
|
H A D | fmd_ckpt.c | 715 ckp->ckp_strn += strlen(mp->mod_path) + 1; 754 fcfm.fcfm_path = fmd_ckpt_string(ckp, mp->mod_path); 1124 strcmp(mp->mod_path, fmd_ckpt_strptr(ckp, fcfm->fcfm_path, ""))) {
|
H A D | fmd_module.c | 193 mp->mod_path = fmd_strdup(path, FMD_SLEEP); 482 fmd_strfree(mp->mod_path);
|
H A D | fmd_rpc_adm.c | 303 mp->mod_path, mp->mod_ops) == NULL) {
|
H A D | fmd_api.c | 458 if (mp->mod_path != NULL) { 459 (void) strlcpy(buf, mp->mod_path, sizeof (buf));
|
/illumos-gate/usr/src/psm/stand/boot/common/ |
H A D | readfile.c | 1514 static char mod_path[MOD_MAXPATH]; local 1538 (void) strncpy(mod_path, fname, len); 1539 mod_path[len] = 0; 1542 len = strlen(mod_path); 1543 if ((len > isalen) && (strcmp(&mod_path[len - isalen], isastr) == 0)) { 1544 mod_path[len - isalen] = '\0'; 1552 mod_path_uname_m(mod_path, impl_arch_name); 1553 (void) strcat(mod_path, " "); 1554 (void) strcat(mod_path, MOD_DEFPATH); 1559 printf("Enter default directory for modules [%s]: ", mod_path); [all...] |
Completed in 88 milliseconds