Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dpygetopt.h13 PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
/external/python/cpython3/Include/internal/
Dpygetopt.h16 extern int _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring,
/external/python/cpython2/Python/
Dgetopt.c50 int _PyOS_GetOpt(int argc, char **argv, char *optstring) in _PyOS_GetOpt() function
/external/python/cpython3/Python/
Dgetopt.c54 int _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring, in _PyOS_GetOpt() function
/external/python/cpython2/Modules/
Dmain.c273 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) { in Py_Main()
299 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) { in Py_Main()
/external/python/cpython3/Misc/
Dvalgrind-python.supp463 fun:_PyOS_GetOpt
/external/python/cpython2/PC/os2emx/
Dpython27.def1151 "_PyOS_GetOpt"
/external/python/cpython3/Modules/
Dmain.c744 int c = _PyOS_GetOpt(pymain->argc, cmdline->argv, PROGRAM_OPTS, in pymain_parse_cmdline_impl()