Searched refs:_path (Results 1 – 3 of 3) sorted by relevance
/titanic_44/usr/src/cmd/sgs/libld/common/ |
H A D | ldlibs.c | 183 char *_path, path[PATH_MAX + 2]; in find_lib_name() local 209 if ((_path = libld_malloc(strlen(path) + 1)) == NULL) in find_lib_name() 211 (void) strcpy(_path, path); in find_lib_name() 213 open_ret = ld_process_open(_path, &_path[dlen], &fd, in find_lib_name() 243 if ((_path = libld_malloc(strlen(path) + 1)) == NULL) in find_lib_name() 245 (void) strcpy(_path, path); in find_lib_name() 247 open_ret = ld_process_open(_path, &_path[dlen], &fd, ofl, in find_lib_name()
|
H A D | files.c | 3499 char *_path; in process_req_lib() local 3501 if ((_path = libld_malloc(strlen(path) + 1)) == NULL) in process_req_lib() 3503 (void) strcpy(_path, path); in process_req_lib() 3504 open_ret = ld_process_open(_path, &_path[dlen], &fd, ofl, in process_req_lib()
|
/titanic_44/usr/src/cmd/sgs/rtld/common/ |
H A D | paths.c | 1206 char _path[PATH_MAX]; in fullpath() local 1225 if (getcwd(_path, (PATH_MAX - 2 - size)) != NULL) { in fullpath() 1226 (void) strcat(_path, MSG_ORIG(MSG_STR_SLASH)); in fullpath() 1227 (void) strcat(_path, name); in fullpath() 1228 path = _path; in fullpath() 1236 if ((rsize = resolvepath(path, _path, (PATH_MAX - 1))) > 0) { in fullpath() 1237 _path[rsize] = '\0'; in fullpath() 1238 path = _path; in fullpath()
|