Lines Matching refs:opt_ptr
44 static wchar_t *opt_ptr = L""; variable
51 opt_ptr = L""; in _PyOS_ResetGetOpt()
60 if (*opt_ptr == '\0') { in _PyOS_GetOpt()
90 opt_ptr = &argv[_PyOS_optind++][1]; in _PyOS_GetOpt()
93 if ((option = *opt_ptr++) == L'\0') in _PyOS_GetOpt()
98 if (*opt_ptr == L'\0') { in _PyOS_GetOpt()
105 if (!wcscmp(opt->name, opt_ptr)) in _PyOS_GetOpt()
112 opt_ptr = L""; in _PyOS_GetOpt()
138 if (*opt_ptr != L'\0') { in _PyOS_GetOpt()
139 _PyOS_optarg = opt_ptr; in _PyOS_GetOpt()
140 opt_ptr = L""; in _PyOS_GetOpt()