Home
last modified time | relevance | path

Searched refs:wrapped_script_path (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/PC/
Dlauncher.c562 static wchar_t wrapped_script_path[MAX_PATH]; variable
577 plen = GetModuleFileNameW(NULL, wrapped_script_path, MAX_PATH); in locate_wrapped_script()
578 p = wcsrchr(wrapped_script_path, L'.'); in locate_wrapped_script()
581 wrapped_script_path); in locate_wrapped_script()
582 error(RC_NO_SCRIPT, L"Wrapper name '%ls' is not valid.", wrapped_script_path); in locate_wrapped_script()
585 wcsncpy_s(p, MAX_PATH - (p - wrapped_script_path) + 1, SCRIPT_SUFFIX, _TRUNCATE); in locate_wrapped_script()
586 attrs = GetFileAttributesW(wrapped_script_path); in locate_wrapped_script()
588 debug(L"File '%ls' non-existent\n", wrapped_script_path); in locate_wrapped_script()
589 error(RC_NO_SCRIPT, L"Script file '%ls' is not present.", wrapped_script_path); in locate_wrapped_script()
592 debug(L"Using wrapped script file '%ls'\n", wrapped_script_path); in locate_wrapped_script()
[all …]