Lines Matching refs:opt_ptr
40 static const wchar_t *opt_ptr = L""; variable
57 opt_ptr = L""; in _PyOS_ResetGetOpt()
65 if (*opt_ptr == '\0') { in _PyOS_GetOpt()
95 opt_ptr = &argv[_PyOS_optind++][1]; in _PyOS_GetOpt()
98 if ((option = *opt_ptr++) == L'\0') in _PyOS_GetOpt()
103 if (*opt_ptr == L'\0') { in _PyOS_GetOpt()
112 if (!wcscmp(opt->name, opt_ptr)) in _PyOS_GetOpt()
121 opt_ptr = L""; in _PyOS_GetOpt()
151 if (*opt_ptr != L'\0') { in _PyOS_GetOpt()
152 _PyOS_optarg = opt_ptr; in _PyOS_GetOpt()
153 opt_ptr = L""; in _PyOS_GetOpt()