Home
last modified time | relevance | path

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

/third_party/python/Python/
Dgetopt.c38 const wchar_t *_PyOS_optarg = NULL; /* optional argument */ variable
56 _PyOS_optarg = NULL; in _PyOS_ResetGetOpt()
132 _PyOS_optarg = argv[_PyOS_optind++]; in _PyOS_GetOpt()
152 _PyOS_optarg = opt_ptr; in _PyOS_GetOpt()
165 _PyOS_optarg = argv[_PyOS_optind++]; in _PyOS_GetOpt()
Dinitconfig.c2319 size_t len = wcslen(_PyOS_optarg) + 1 + 1; in config_parse_cmdline()
2324 memcpy(command, _PyOS_optarg, (len - 2) * sizeof(wchar_t)); in config_parse_cmdline()
2337 config->run_module = _PyMem_RawWcsdup(_PyOS_optarg); in config_parse_cmdline()
2349 if (wcscmp(_PyOS_optarg, L"always") == 0 in config_parse_cmdline()
2350 || wcscmp(_PyOS_optarg, L"never") == 0 in config_parse_cmdline()
2351 || wcscmp(_PyOS_optarg, L"default") == 0) in config_parse_cmdline()
2354 _PyOS_optarg); in config_parse_cmdline()
2429 status = PyWideStringList_Append(warnoptions, _PyOS_optarg); in config_parse_cmdline()
Dpreconfig.c209 _PyOS_optarg); in precmdline_parse_cmdline()
/third_party/python/Include/internal/
Dpycore_getopt.h10 extern const wchar_t *_PyOS_optarg;