Lines Matching refs:errtxt
76 char *errtxt; in dlopen() local
108 errtxt = "module `%s' not found"; in dlopen()
114 errtxt = "out of system resources"; in dlopen()
117 errtxt = "access denied"; in dlopen()
130 errtxt = "invalid module format"; in dlopen()
133 errtxt = "filename doesn't match module name"; in dlopen()
137 errtxt = "sharing violation"; in dlopen()
140 errtxt = "module initialization failed"; in dlopen()
143 errtxt = "cause `%s', error code = %d"; in dlopen()
146 snprintf(dlerr, sizeof(dlerr), errtxt, &err, rc); in dlopen()
161 char *errtxt; in dlsym() local
177 errtxt = "invalid module handle"; in dlsym()
181 errtxt = "no symbol `%s' in module"; in dlsym()
184 errtxt = "symbol `%s', error code = %d"; in dlsym()
187 snprintf(dlerr, sizeof(dlerr), errtxt, symbol, rc); in dlsym()