Lines Matching defs:str

50 	const char	*str, *strtbl = config->c_strtbl;
130 str = strtbl + obj->co_name;
132 if (rtld_stat(str, &status) != 0) {
135 config->c_name, str, strerror(err));
148 str = strtbl + obj->co_name;
158 if (rtld_stat(str, &status) != 0) {
162 str, strerror(err));
173 str);
203 const char *str;
211 if ((str = strrchr(PATHNAME(lmp), '/')) != NULL)
212 str++;
214 str = PATHNAME(lmp);
216 (void) snprintf(path, PATH_MAX, MSG_ORIG(MSG_ORG_CONFIG), str);
217 str = path;
219 str = config->c_name;
224 if (str) {
225 size_t size = strlen(str);
226 char *estr = (char *)str;
243 str = NULL;
245 str = (const char *)estr;
252 if (str == NULL) {
254 str = MSG_ORIG(MSG_PTH_CONFIG_64);
256 str = MSG_ORIG(MSG_PTH_CONFIG);
259 config->c_name = str;
264 if ((fd = open(str, O_RDONLY, 0)) == -1)
322 str = (const char *)(head->ch_edlibpath + addr);
326 str = conv_config_upm(str, MSG_ORIG(MSG_PTH_USRLIB_64),
329 str = conv_config_upm(str, MSG_ORIG(MSG_PTH_USRLIB),
334 if (expand_paths(lmp, str, &elf_def_dirs, AL_CNT_SEARCH,
339 str = (const char *)(head->ch_eslibpath + addr);
343 str = conv_config_upm(str,
347 str = conv_config_upm(str, MSG_ORIG(MSG_PTH_USRLIBSE),
352 if (expand_paths(lmp, str, &elf_sec_dirs, AL_CNT_SEARCH,
358 str = (const char *)(head->ch_adlibpath + addr);
359 if (expand_paths(lmp, str, &aout_def_dirs, AL_CNT_SEARCH,
364 str = (const char *)(head->ch_aslibpath + addr);
365 if (expand_paths(lmp, str, &aout_sec_dirs, AL_CNT_SEARCH,
446 const char *str;
454 str = config->c_strtbl + obj->co_name;
456 if ((obj->co_hash != hash) || (strcmp(name, str) != 0) ||
484 const char *fltr, *str;
487 str = config->c_strtbl + fltrtbl->fr_string;
488 if (strcmp(filter, fltr) || strcmp(string, str))