Home
last modified time | relevance | path

Searched refs:clientname (Results 1 – 2 of 2) sorted by relevance

/external/valgrind/main/coregrind/
Dlauncher-linux.c86 static const char *find_client(const char *clientname) in find_client() argument
107 strcat(fullname, clientname); in find_client()
113 return clientname; in find_client()
117 static const char *select_platform(const char *clientname) in select_platform() argument
124 VG_(debugLog)(2, "launcher", "selecting platform for '%s'\n", clientname); in select_platform()
126 if (strchr(clientname, '/') == NULL) in select_platform()
127 clientname = find_client(clientname); in select_platform()
129 VG_(debugLog)(2, "launcher", "selecting platform for '%s'\n", clientname); in select_platform()
131 if ((fd = open(clientname, O_RDONLY)) < 0) in select_platform()
135 VG_(debugLog)(2, "launcher", "opened '%s'\n", clientname); in select_platform()
[all …]
Dlauncher-darwin.c99 static const char *find_client(const char *clientname) in find_client() argument
120 strcat(fullname, clientname); in find_client()
126 return clientname; in find_client()
142 const char *clientname, cpu_type_t default_cputype, in select_arch() argument
147 int fd = open(find_client(clientname), O_RDONLY); in select_arch()
149 barf("%s: %s", clientname, strerror(errno)); in select_arch()
204 const char *clientname = NULL; in main() local
225 clientname = argv[i]; in main()
231 clientname = argv[i+1]; in main()
258 if (clientname) { in main()
[all …]