Home
last modified time | relevance | path

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

/aosp12/system/testing/gtest_extras/
H A DOptions.cpp82 if (from_env) { in PrintError()
96 bool from_env) { in GetNumeric() argument
104 from_env); in GetNumeric()
119 if (!GetNumeric<uint64_t>(arg, value, numeric, from_env)) { in SetNumeric()
130 if (!from_env) { in SetNumericEnvOnly()
135 if (!GetNumeric<uint64_t>(arg, value, numeric, from_env)) { in SetNumericEnvOnly()
175 from_env); in SetXmlFile()
191 bool from_env) { in HandleArg() argument
199 PrintError(arg, "requires an argument.", from_env); in HandleArg()
207 PrintError(arg, "does not take an argument.", from_env); in HandleArg()
[all …]
H A DOptions.h78 bool from_env = false);
/aosp12/art/libartbase/base/
H A Dcommon_art_test.cc217 std::filesystem::path from_env(std::filesystem::weakly_canonical(android_host_out_from_env)); in GetAndroidHostOut() local
218 if (std::filesystem::weakly_canonical(expected).string() != from_env.string()) { in GetAndroidHostOut()
220 << from_env << ")! Using env-var."; in GetAndroidHostOut()
221 expected = from_env; in GetAndroidHostOut()
/aosp12/system/extras/profcollectd/libprofcollectd/
H A Dconfig.rs67 pub fn from_env() -> Result<Self> { in from_env() method
H A Dservice.rs141 let new_config = Config::from_env()?; in new()