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

/illumos-gate/usr/src/cmd/ndmpd/tlm/
H A Dtlm_info.c63 tlm_library_t *library; local
66 library = tlm_library(lib);
67 if (library != NULL &&
68 library->tl_drive_count == 0) {
76 * get the library whose number matches
81 tlm_library_t *library = tlm_info.ti_library; local
82 while (library != NULL) {
83 if (library->tl_number == lib) {
84 return (library);
86 library
99 tlm_library_t *library = tlm_library(lib); local
121 tlm_library_t *library = tlm_library(lib); local
326 tlm_library_t *library = ndmp_malloc(sizeof (tlm_library_t)); local
346 tlm_library_t *library = tlm_library(lib); local
369 tlm_library_t *library = tlm_library(lib); local
[all...]
H A Dtlm_init.c266 * Add the tape library call back function (used while scanning the bus)
272 int *nlp; /* pointer to library counter */
282 /* This is a robot, which means this is also a library */
338 * Make the tape drive not part of a tape library (stand alone)
365 * Note: There is no way to remove library elements. We cannot clean
396 /* Not part of any library, this is a newly found tape drive. */
402 * Add the tape library call back function (used while scanning the bus)
408 int *vlp; /* pointer to virtual library number */
410 tlm_library_t *library; local
426 * First, create a virtual library i
[all...]
/illumos-gate/usr/src/lib/libnsl/netdir/
H A Dnetdir.c40 * This is the library routines that do the name to address
73 void *tr_fd; /* dyn library handle */
117 * Adds a translator library to the xlate_list, but first check to see if
119 * We have to be careful for the case of the same library being loaded
123 * have accidentally reloaded the library. We dlclose the new version,
390 * This is the library routine to do transport specific stuff.
443 * This is the library routine for translating universal addresses to
502 * This is the library routine for translating transport specific
635 char *library; member in struct:xlate_list
643 * We maintain a list of libraries we have loaded. Loading a library
[all...]
/illumos-gate/usr/src/cmd/make/bin/
H A Dfiles.cc65 static Name enter_file_name(wchar_t *name_string, wchar_t *library);
261 * read_dir(dir, pattern, line, library)
275 * library If we scan for "lib.a(<wildcard-member>)"
285 read_dir(Name dir, wchar_t *pattern, Property line, wchar_t *library) argument
356 file = enter_file_name(file_name, library);
553 * enter_file_name(name_string, library)
562 * library The library it is a member of, if any
567 enter_file_name(wchar_t *name_string, wchar_t *library) argument
574 if (library
[all...]
H A Dar.cc55 off_t ran_off; /* library member at this offset */
160 static Boolean read_archive_dir(register Ar *arp, Name library, char **long_names_table);
204 append_string(member->body.member.library->string_mb,
218 if (open_archive(member->body.member.library->string_mb, &ar) == failed) {
228 member->body.member.library->string_mb,
233 if (read_archive_dir(&ar, member->body.member.library,
237 member->body.member.library->string_mb,
361 * read_archive_dir(arp, library, long_names_table)
369 * library Name of lib to enter members for.
377 read_archive_dir(register Ar *arp, Name library, cha argument
[all...]
H A Ddoname.cc1329 wchar_t *library; local
1470 prop->body.member.library = lib;
1496 library = buffer;
1509 library = NULL;
1525 if (read_dir(directory, p, line, library)) {
2193 target = member->body.member.library;
2632 target->stat.time = member->body.member.library->stat.time;
/illumos-gate/usr/src/lib/libsasl/lib/
H A Ddlopen.c152 return "Generic shared library error";
167 void *library; member in struct:lib_list
178 int _sasl_locate_entry(void *library, const char *entryname, argument
198 if(!library) {
201 "no library in _sasl_locate_entry");
219 *entry_point = dlsym(library, adj_entryname);
239 char *plugin, void *library,
244 static int _sasl_plugin_load(char *plugin, void *library,
252 result = _sasl_locate_entry(library, entryname, &entry_point);
380 /* loads a plugin library */
238 _sasl_plugin_load(_sasl_global_context_t *gctx, char *plugin, void *library, const char *entryname, int (*add_plugin)(_sasl_global_context_t *gctx, const char *, void *)) argument
395 void *library; local
454 release_plugin(_sasl_global_context_t *gctx, void *library) argument
653 void *library; local
[all...]
/illumos-gate/usr/src/lib/libast/common/misc/
H A Derror.c117 "library", OPT_LIBRARY,
363 char* library; local
399 library = 0;
401 else if ((library = strchr(catalog, ':')) && !*++library)
402 library = 0;
407 library = 0;
426 if (!library)
467 library,
468 ERROR_translate(NiL, NiL, ast.id, "library"));
[all...]
/illumos-gate/usr/src/lib/libshell/common/bltins/
H A Dtypeset.c712 * This allows external routines to load from the same library */
719 * add library to loaded list
725 int sh_addlib(void* library) argument
740 else if (liblist[n] == library)
745 else if ((initfn = (Iptr_t)dlllook(library, "lib_init")))
762 liblist[nlib++] = library;
767 int sh_addlib(void* library) argument
786 void *library=0; local
833 if(!(library = dllplug(SH_ID,arg,NIL(char*),RTLD_LAZY,NIL(char*),0)))
835 if(!(library
[all...]
/illumos-gate/usr/src/lib/hbaapi/common/
H A DHBAAPILIB-sun.c50 * LIBRARY_NUM is a shortcut to figure out which library we need to call.
51 * The top 16 bits of handle are the library index
56 * VENDOR_HANDLE turns a global library handle into a vendor specific handle,
61 #define HBA_HANDLE_FROM_LOCAL(library, vendor) \
62 (((library)<<16) | ((vendor)&0x0000FFFF))
155 * a vendor specific library function that might invoke a callback function
192 HBA_LIBRARY_STATUS status; /* info on this library */
247 HBA_LIBRARY_INFO *library; member in struct:hba_tgtadapter_info
263 * Common library internal. Mutex handling
389 adapt_infop->library
[all...]
H A DHBAAPILIB.c3 * HBAAPILIB.c - Implements a sample common (wrapper) HBA API library
53 * LIBRARY_NUM is a shortcut to figure out which library we need to call.
54 * The top 16 bits of handle are the library index
59 * VENDOR_HANDLE turns a global library handle into a vendor specific handle,
64 #define HBA_HANDLE_FROM_LOCAL(library, vendor) \
65 (((library)<<16) | ((vendor)&0x0000FFFF))
158 * a vendor specific library function that might invoke a callback function
175 * Vendor library information
194 HBA_LIBRARY_STATUS status; /* info on this library */
219 HBA_LIBRARY_INFO *library; member in struct:hba_adapter_info
[all...]
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/psvc/psvcplugin/
H A Dpsvcplugin.c110 static char library[PATH_MAX]; variable
564 static int32_t load_policy(const char *library, ETask_t *tp) argument
566 tp->hdl = dlopen(library, RTLD_NOW | RTLD_GLOBAL);
657 name, library, tp->routine);
663 status = load_policy(library, tp);
/illumos-gate/usr/src/lib/krb5/kdb/
H A Dkdb5.c173 /* we got the module section. Get the library name from the module */
292 /* ERROR. library not initialized cleanly */
293 snprintf(buf, sizeof(buf), gettext("%s library initialization failed, error code %ld\n"),
319 native compiler has trouble building the library because of
405 /* ERROR. library not initialized cleanly */
497 /* close the library */
528 char *library = NULL; local
539 library = kdb_get_library_name(kcontext);
540 if (library == NULL) {
545 status = kdb_find_library(kcontext, library,
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/dns-sd/
H A Ddns-sd.c54 // with an embedded copy of the client stub instead of linking the system library version at runtime.
92 HMODULE library; local
95 // Try and load the IP helper library dll
96 if ((library = LoadLibrary(TEXT("Iphlpapi")) ) != NULL )
101 if ((if_nametoindex_funcptr = (if_nametoindex_funcptr_t) GetProcAddress(library, "if_nametoindex")) != NULL )
106 FreeLibrary(library);
114 HMODULE library; local
117 // Try and load the IP helper library dll
118 if ((library = LoadLibrary(TEXT("Iphlpapi")) ) != NULL )
123 if ((if_indextoname_funcptr = (if_indextoname_funcptr_t) GetProcAddress(library, "if_indextonam
[all...]
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_cc.c1762 * In addition, no versioning is currently provided for types as our .d library
1986 * Go through all the library files, and, if any library dependencies exist for
1998 char *library = dld->dtld_library; local
2007 "Invalid library dependency in %s: %s\n",
2014 library)) != 0) {
2052 dt_dprintf("library %s sorted (%d/%d)\n", new->dtld_library,
2137 * Open all the .d library files found in the specified directory and
2140 * we fail to compile a library and the error is something other than #pragma D
2141 * depends_on. Dependency errors are silently ignored to permit a library
[all...]
/illumos-gate/usr/src/lib/smhba/common/
H A DSMHBAAPILIB.c4 * HBAAPILIB.c - Implements a sample common (wrapper) HBA API library
34 * both HBAAPI and SM-HBA through the same library.
89 * LIBRARY_NUM is a shortcut to figure out which library we need to call.
90 * The top 16 bits of handle are the library index
95 * VENDOR_HANDLE turns a global library handle into a vendor specific handle,
100 #define HBA_HANDLE_FROM_LOCAL(library, vendor) \
101 (((library)<<16) | ((vendor)&0x0000FFFF))
194 * a vendor specific library function that might invoke a callback function
211 * Vendor library information
242 HBA_LIBRARY_STATUS status; /* info on this library */
298 HBA_LIBRARY_INFO *library; member in struct:hba_adapter_info
[all...]
/illumos-gate/usr/src/cmd/make/include/mksh/
H A Ddefs.h600 struct _Name *library; member in struct:Member

Completed in 132 milliseconds