Lines Matching refs:exec_path
30 static char *make_command_line(char *shell_name, char *exec_path, char **argv);
350 find_file(char *exec_path, LPOFSTRUCT file_info) in find_file() argument
356 fname = malloc(strlen(exec_path) + 5); in find_file()
357 strcpy(fname, exec_path); in find_file()
382 if ((exec_handle = (HANDLE)OpenFile(exec_path, file_info, in find_file()
412 char *exec_path, in process_begin() argument
439 exec_handle = find_file(exec_path, &file_info); in process_begin()
497 command_line = make_command_line( shell_name, exec_path, argv); in process_begin()
518 exec_path = 0; /* Search for the program in %Path% */ in process_begin()
520 exec_path = file_info.szPathName; in process_begin()
531 startInfo.lpTitle = shell_name ? shell_name : exec_path; in process_begin()
541 exec_path ? exec_path : "NULL", in process_begin()
544 exec_path, in process_begin()
558 exec_path ? exec_path : "NULL", command_line); in process_begin()