Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dimport.c787 check_compiled_module(char *pathname, time_t mtime, char *cpathname) in check_compiled_module() argument
793 fp = fopen(cpathname, "rb"); in check_compiled_module()
799 PySys_WriteStderr("# %s has bad magic\n", cpathname); in check_compiled_module()
806 PySys_WriteStderr("# %s has bad mtime\n", cpathname); in check_compiled_module()
811 PySys_WriteStderr("# %s matches %s\n", cpathname, pathname); in check_compiled_module()
819 read_compiled_module(char *cpathname, FILE *fp) in read_compiled_module() argument
828 "Non-code object in %.200s", cpathname); in read_compiled_module()
840 load_compiled_module(char *name, char *cpathname, FILE *fp) in load_compiled_module() argument
849 "Bad magic number in %.200s", cpathname); in load_compiled_module()
853 co = read_compiled_module(cpathname, fp); in load_compiled_module()
[all …]