HomeSort by relevance Sort by last modified time
    Searched defs:env_file (Results 1 - 2 of 2) sorted by null

  /external/python/cpython3/Modules/
getpath.c 745 FILE *env_file; local
750 env_file = _Py_wfopen(tmpbuffer, L"r");
751 if (env_file == NULL) {
758 env_file = _Py_wfopen(tmpbuffer, L"r");
759 if (env_file == NULL) {
764 if (env_file == NULL) {
769 if (_Py_FindEnvConfigValue(env_file, L"home", tmpbuffer, MAXPATHLEN)) {
772 fclose(env_file);
  /external/python/cpython3/PC/
getpathp.c 718 FILE *env_file = _Py_wfopen(envbuffer, L"r"); local
719 if (env_file == NULL) {
726 env_file = _Py_wfopen(envbuffer, L"r");
727 if (env_file == NULL) {
732 if (env_file == NULL) {
738 if (_Py_FindEnvConfigValue(env_file, L"home", tmpbuffer, MAXPATHLEN)) {
741 fclose(env_file);
    [all...]

Completed in 711 milliseconds