Lines Matching refs:executablePath
388 const wchar_t *executablePath; member
501 DEBUG(executablePath); in dumpSearchInfo()
829 search->executablePath = buf; in searchPath()
889 search->executablePath = path; in _findCommand()
941 search->executablePath = path; in _useShebangAsExecutable()
1058 commandLength + 6, &command[-6], search->executablePath); in checkShebang()
1103 commandLength, shebang, search->executablePath); in checkShebang()
1192 const wchar_t *executablePath; member
1251 free((void *)env->executablePath); in freeEnvironmentInfo()
1455 &env->executablePath, in _registryReadLegacyEnvironment()
1478 BOOL success = GetBinaryTypeW(env->executablePath, &binaryType); in _registryReadLegacyEnvironment()
1541 …exitCode = _registryReadString(&env->executablePath, root, L"InstallPath", L"WindowedExecutablePat… in _registryReadEnvironment()
1542 if (!exitCode && env->executablePath) { in _registryReadEnvironment()
1551 if (!env->executablePath) { in _registryReadEnvironment()
1552 … exitCode = _registryReadString(&env->executablePath, root, L"InstallPath", L"ExecutablePath"); in _registryReadEnvironment()
1553 if (!exitCode && env->executablePath) { in _registryReadEnvironment()
1561 if (!env->executablePath) { in _registryReadEnvironment()
1690 copyWstr(&env->executablePath, buffer); in appxSearch()
1717 if (!search->executablePath) { in explicitOverrideSearch()
1726 int exitCode = copyWstr(&env->executablePath, search->executablePath); in explicitOverrideSearch()
1779 exitCode = copyWstr(&env->executablePath, buffer); in virtualenvSearch()
2207 if (env->executablePath && env->executablePath[0]) { in _printEnvironment()
2209 … fwprintf(out, L" %-*s %s %s\n", TAGWIDTH, argument, env->executablePath, env->executableArgs); in _printEnvironment()
2211 fwprintf(out, L" %-*s %s\n", TAGWIDTH, argument, env->executablePath); in _printEnvironment()
2325 const wchar_t *executablePath = NULL; in calculateCommandLine() local
2329 if (search->executablePath) { in calculateCommandLine()
2330 executablePath = search->executablePath; in calculateCommandLine()
2331 } else if (launch && launch->executablePath) { in calculateCommandLine()
2332 executablePath = launch->executablePath; in calculateCommandLine()
2339 if (executablePath && search->allowExecutableOverride) { in calculateCommandLine()
2340 if (wcschr(executablePath, L' ') && executablePath[0] != L'"') { in calculateCommandLine()
2342 exitCode = wcscpy_s(&buffer[1], bufferLength - 1, executablePath); in calculateCommandLine()
2347 exitCode = wcscpy_s(buffer, bufferLength, executablePath); in calculateCommandLine()