Lines Matching refs:pathname
70 char *pathname; /* absolute module pathname */
362 char *pathname;
374 /* allocate pathname buffer */
375 if ((pathname = calloc(1, h->name_max)) == NULL) {
380 (void) snprintf(pathname, h->name_max, "%s/fstyp.so.%d", mdir,
382 if (stat(pathname, &sb) < 0) {
387 free(pathname);
391 mp->pathname = pathname;
418 if (mp->pathname != NULL) {
419 free(mp->pathname);
487 if ((mp->dl_handle = dlopen(mp->pathname, RTLD_LAZY)) == NULL) {