Lines Matching full:path
55 E_V("PATH"),
146 * Path search functions
165 /* It's a UNC path so ignore cwd */
168 /* It's a full path without drive letter, use cwd's drive letter only */
172 /* It's a relative path with drive letter (ext.g. D:../some/file)
183 /* It's an absolute path with drive letter
197 /* Add a path separator if cwd didn't end with one */
290 * search_path searches the system path for an executable filename -
301 * - Do not search the path if the filename already contains a path (either
305 * then search all path directories.
307 * - If filename specified has *any* extension, or already contains a path
314 * - The path variable may contain relative paths; relative paths are relative
317 * - Directories in path may or may not end with a trailing backslash.
319 * - CMD does not trim leading/trailing whitespace from path/pathex entries
327 * UNC path support: we are dealing with UNC paths in both the path and the
329 * start a program by specifying an UNC path on the command line) but this is
335 const WCHAR *path,
372 /* The file has a path inside, don't use path */
380 dir_end = path;
383 /* The file is really only a name; look in cwd first, then scan path */
396 if (dir_end != path || *path == L';') {
403 /* If path is quoted, find quote end */
424 /* Adjust if the path is quoted. */
799 * Attempt to find the value of the PATH environment variable in the child's
914 WCHAR* path = NULL, *alloc_path = NULL;
992 /* Get PATH environment variable. */
993 path = find_path(env);
994 if (path == NULL) {
997 path_len = GetEnvironmentVariableW(L"PATH", NULL, 0);
1004 path = alloc_path;
1006 r = GetEnvironmentVariableW(L"PATH", path, path_len);
1020 path,
1200 /* Get LocalDumps directory path. */