Lines Matching refs:executablePath

388     const wchar_t *executablePath;
501 DEBUG(executablePath);
829 search->executablePath = buf;
889 search->executablePath = path;
941 search->executablePath = path;
1058 commandLength + 6, &command[-6], search->executablePath);
1103 commandLength, shebang, search->executablePath);
1192 const wchar_t *executablePath;
1251 free((void *)env->executablePath);
1455 &env->executablePath,
1478 BOOL success = GetBinaryTypeW(env->executablePath, &binaryType);
1541 exitCode = _registryReadString(&env->executablePath, root, L"InstallPath", L"WindowedExecutablePath");
1542 if (!exitCode && env->executablePath) {
1551 if (!env->executablePath) {
1552 exitCode = _registryReadString(&env->executablePath, root, L"InstallPath", L"ExecutablePath");
1553 if (!exitCode && env->executablePath) {
1561 if (!env->executablePath) {
1690 copyWstr(&env->executablePath, buffer);
1717 if (!search->executablePath) {
1726 int exitCode = copyWstr(&env->executablePath, search->executablePath);
1779 exitCode = copyWstr(&env->executablePath, buffer);
2207 if (env->executablePath && env->executablePath[0]) {
2209 fwprintf(out, L" %-*s %s %s\n", TAGWIDTH, argument, env->executablePath, env->executableArgs);
2211 fwprintf(out, L" %-*s %s\n", TAGWIDTH, argument, env->executablePath);
2325 const wchar_t *executablePath = NULL;
2328 // environment's executablePath
2329 if (search->executablePath) {
2330 executablePath = search->executablePath;
2331 } else if (launch && launch->executablePath) {
2332 executablePath = launch->executablePath;
2339 if (executablePath && search->allowExecutableOverride) {
2340 if (wcschr(executablePath, L' ') && executablePath[0] != L'"') {
2342 exitCode = wcscpy_s(&buffer[1], bufferLength - 1, executablePath);
2347 exitCode = wcscpy_s(buffer, bufferLength, executablePath);