Lines Matching refs:temp
298 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
299 p = bufprint(temp, end, "%s/%s", path, filename);
300 D("Probing for: %s\n", temp);
301 return (p < end && path_exists(temp));
316 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
334 p = bufprint(temp, end, "%s/lib", progDir);
335 if (p < end && probePathForFile(temp, libName)) {
336 result = strdup(temp);
351 p = bufprint(temp, end, "%s/lib", parentDir);
353 if (p < end && probePathForFile(temp, libName)) {
354 result = strdup(temp);
372 char temp[2048], *p=temp, *end=p+sizeof(temp);
376 p = bufprint(temp, end, "PATH=%s", prefix);
378 p = bufprint(temp, end, "PATH=%s;%s", path, prefix);
382 D("Setting %s\n", temp);
383 putenv(strdup(temp));
387 p = bufprint(temp, end, "%s:%s", prefix, path);
388 prefix = temp;