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

  /build/soong/cmd/soong_env/
soong_env.go 30 fmt.Fprintf(os.Stderr, "usage: soong_env env_file\n")
31 fmt.Fprintf(os.Stderr, "exits with success if the environment varibles in env_file match\n")
  /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/Python/
pathconfig.c 394 _Py_FindEnvConfigValue(FILE *env_file, const wchar_t *key,
400 fseek(env_file, 0, SEEK_SET);
401 while (!feof(env_file)) {
402 char * p = fgets(buffer, MAXPATHLEN*2, 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...]
  /external/python/cpython3/Include/
pylifecycle.h 144 FILE *env_file,
  /external/autotest/scheduler/
drone_utility.py 611 with open('/proc/%s/environ' % pid, 'rb') as env_file:
612 env_data = env_file.read()

Completed in 531 milliseconds