| 104 | } |
| 105 | |
| 106 | void InsertEnvVarFilename(const char* var_name, |
| 107 | std::vector<PlatformFilename>* filenames) { |
| 108 | auto maybe_env_var = GetEnvVarNative(var_name); |
| 109 | if (maybe_env_var.ok()) { |
| 110 | filenames->emplace(filenames->begin(), PlatformFilename(std::move(*maybe_env_var))); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | Result<std::vector<PlatformFilename>> get_potential_libhdfs_paths() { |
| 115 | std::vector<PlatformFilename> potential_paths; |
no test coverage detected