Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython3/PC/
Dlauncher.c688 static wchar_t wrapped_script_path[MAX_PATH]; variable
703 plen = GetModuleFileNameW(NULL, wrapped_script_path, MAX_PATH); in locate_wrapped_script()
704 p = wcsrchr(wrapped_script_path, L'.'); in locate_wrapped_script()
707 wrapped_script_path); in locate_wrapped_script()
708 error(RC_NO_SCRIPT, L"Wrapper name '%ls' is not valid.", wrapped_script_path); in locate_wrapped_script()
711 wcsncpy_s(p, MAX_PATH - (p - wrapped_script_path) + 1, SCRIPT_SUFFIX, _TRUNCATE); in locate_wrapped_script()
712 attrs = GetFileAttributesW(wrapped_script_path); in locate_wrapped_script()
714 debug(L"File '%ls' non-existent\n", wrapped_script_path); in locate_wrapped_script()
715 error(RC_NO_SCRIPT, L"Script file '%ls' is not present.", wrapped_script_path); in locate_wrapped_script()
718 debug(L"Using wrapped script file '%ls'\n", wrapped_script_path); in locate_wrapped_script()
[all …]