Searched defs:symbol (Results 1 - 4 of 4) sorted by relevance
/bind-9.11.3/lib/isc/include/isc/ |
H A D | backtrace.h | 15 * dependent way when available. It also manages an internal symbol table 46 const char *symbol; member in struct:isc_backtrace_symmap 84 * Returns the content of the internal symbol table of the given index. 85 * On success, *addrsp and *symbolp point to the address and the symbol of 87 * range of the symbol table, ISC_R_RANGE will be returned. 105 * Searches the internal symbol table for the symbol that most matches the
|
/bind-9.11.3/lib/dns/ |
H A D | dyndb.c | 89 void *symbol; local 94 symbol = dlsym(handle, symbol_name); 95 if (symbol == NULL) { 101 "failed to lookup symbol %s in " 108 *symbolp = symbol; 215 void *symbol; local 220 symbol = GetProcAddress(handle, symbol_name); 221 if (symbol == NULL) { 225 "failed to lookup symbol %s in " 231 *symbolp = symbol; [all...] |
/bind-9.11.3/bin/named/unix/ |
H A D | dlz_dlopen_driver.c | 191 * Load a symbol from the library 194 dl_load_symbol(dlopen_data_t *cd, const char *symbol, isc_boolean_t mandatory) { argument 195 void *ptr = dlsym(cd->dl_handle, symbol); 199 "required symbol '%s'", cd->dl_path, symbol); 295 /* We're missing a required symbol */
|
/bind-9.11.3/bin/named/win32/ |
H A D | dlz_dlopen_driver.c | 192 * Load a symbol from the library 195 dl_load_symbol(dlopen_data_t *cd, const char *symbol, isc_boolean_t mandatory) { argument 196 void *ptr = GetProcAddress(cd->dl_handle, symbol); 200 "required symbol '%s'", cd->dl_path, symbol); 283 /* We're missing a required symbol */
|
Completed in 15 milliseconds