Searched defs:tmpplug (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/fwflash/common/
H A Dfwflash.c257 struct fw_plugin *tmpplug; local
264 (void) dlclose(tmpplug->handle); \
265 free(tmpplug); }
357 if ((tmpplug = calloc(1, sizeof (struct fw_plugin)))
367 tmpplug->handle = dlopen(plugname, RTLD_NOW);
368 if (tmpplug->handle == NULL) {
369 free(tmpplug);
373 if ((tmpplug->filename = calloc(1, strlen(plugname) + 1))
383 (void) strlcpy(tmpplug->filename, plugname,
387 if ((sym = dlsym(tmpplug
[all...]

Completed in 101 milliseconds