Home
last modified time | relevance | path

Searched refs:_path (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/libld/common/
H A Dldlibs.c183 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 Dfiles.c3556 char *_path; in process_req_lib() local
3558 if ((_path = libld_malloc(strlen(path) + 1)) == NULL) in process_req_lib()
3560 (void) strcpy(_path, path); in process_req_lib()
3561 open_ret = ld_process_open(_path, &_path[dlen], &fd, ofl, in process_req_lib()
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Dpaths.c1207 char _path[PATH_MAX]; in fullpath() local
1226 if (getcwd(_path, (PATH_MAX - 2 - size)) != NULL) { in fullpath()
1227 (void) strcat(_path, MSG_ORIG(MSG_STR_SLASH)); in fullpath()
1228 (void) strcat(_path, name); in fullpath()
1229 path = _path; in fullpath()
1237 if ((rsize = resolvepath(path, _path, (PATH_MAX - 1))) > 0) { in fullpath()
1238 _path[rsize] = '\0'; in fullpath()
1239 path = _path; in fullpath()