Lines Matching full:clientname
92 static const char *find_client(const char *clientname)
113 strcat(fullname, clientname);
119 return clientname;
123 static const char *select_platform(const char *clientname)
130 VG_(debugLog)(2, "launcher", "selecting platform for '%s'\n", clientname);
132 if (strchr(clientname, '/') == NULL)
133 clientname = find_client(clientname);
135 VG_(debugLog)(2, "launcher", "selecting platform for '%s'\n", clientname);
137 if ((fd = open(clientname, O_RDONLY)) < 0)
139 // barf("open(%s): %s", clientname, strerror(errno));
141 VG_(debugLog)(2, "launcher", "opened '%s'\n", clientname);
150 (long int)n_bytes, clientname);
233 const char *clientname = NULL;
248 clientname = argv[i];
253 clientname = argv[i+1];
295 if (clientname == NULL) {
300 } else if ((platform = select_platform(clientname)) != NULL) {