Searched refs:GetEnvVar (Results 1 – 3 of 3) sorted by relevance
/external/tensorflow/tensorflow/core/util/rpc/ |
D | rpc_factory.cc | 23 bool GetEnvVar(const char* key, const string& default_value, string* value) { in GetEnvVar() function 34 bool GetEnvVar(const char* key, const int64& default_value, int64* value) { in GetEnvVar() function 44 bool GetEnvVar(const char* key, const uint64& default_value, uint64* value) { in GetEnvVar() function
|
D | rpc_factory.h | 28 bool GetEnvVar(const char* key, const T& default_value, T* value);
|
/external/tensorflow/tensorflow/core/platform/cloud/ |
D | gcs_file_system.cc | 624 bool GetEnvVar(const char* varname, bool (*convert)(StringPiece, T*), in GetEnvVar() function 670 if (GetEnvVar(kReadaheadBufferSize, strings::safe_strtou64, &value)) { in GcsFileSystem() 675 if (GetEnvVar(kBlockSize, strings::safe_strtou64, &value)) { in GcsFileSystem() 678 if (GetEnvVar(kMaxCacheSize, strings::safe_strtou64, &value)) { in GcsFileSystem() 681 if (GetEnvVar(kMaxStaleness, strings::safe_strtou64, &value)) { in GcsFileSystem() 695 if (GetEnvVar(kStatCacheMaxAge, strings::safe_strtou64, &value)) { in GcsFileSystem() 698 if (GetEnvVar(kStatCacheMaxEntries, strings::safe_strtou64, &value)) { in GcsFileSystem() 708 if (GetEnvVar(kMatchingPathsCacheMaxAge, strings::safe_strtou64, &value)) { in GcsFileSystem() 711 if (GetEnvVar(kMatchingPathsCacheMaxEntries, strings::safe_strtou64, in GcsFileSystem() 722 if (GetEnvVar(kResolveCacheSecs, strings::safe_strto64, in GcsFileSystem() [all …]
|