Lines Matching refs:filedescr
98 struct filedescr * _PyImport_Filetab = NULL;
101 static const struct filedescr _PyImport_StandardFiletab[] = {
107 static const struct filedescr _PyImport_StandardFiletab[] = {
151 const struct filedescr *scan; in _PyImport_Init()
152 struct filedescr *filetab; in _PyImport_Init()
165 filetab = PyMem_NEW(struct filedescr, countD + countS + 1); in _PyImport_Init()
170 countD * sizeof(struct filedescr)); in _PyImport_Init()
173 countS * sizeof(struct filedescr)); in _PyImport_Init()
1136 static struct filedescr *find_module(char *, char *, PyObject *,
1152 struct filedescr *fdp; in load_package()
1305 extern FILE *PyWin_FindRegisteredModule(const char *, struct filedescr **,
1311 static struct filedescr importhookdescr = {"", "", IMP_HOOK};
1313 static struct filedescr *
1319 struct filedescr *fdp = NULL; in find_module()
1323 static struct filedescr fd_frozen = {"", "", PY_FROZEN}; in find_module()
1324 static struct filedescr fd_builtin = {"", "", C_BUILTIN}; in find_module()
1325 static struct filedescr fd_package = {"", "", PKG_DIRECTORY}; in find_module()
1556 const struct filedescr *scan; in find_module()
1623 struct filedescr *
1631 PyAPI_FUNC(int) _PyImport_IsScript(struct filedescr * fd) in _PyImport_IsScript()
2695 struct filedescr *fdp; in import_submodule()
2752 struct filedescr *fdp; in PyImport_ReloadModule()
2944 struct filedescr *fdp; in imp_get_suffixes()
2971 struct filedescr *fdp; in call_find_module()