Searched refs:env_value (Results 1 – 5 of 5) sorted by relevance
56 const char* env_value = getenv(name.c_str()); in GetListFromEnv() local57 if (env_value == nullptr || strlen(env_value) == 0) { in GetListFromEnv()60 return android::base::Split(env_value, ":"); in GetListFromEnv()
322 const char* env_value = getenv("BOOTCLASSPATH"); in ParseBootclasspath() local323 if (env_value != nullptr && strlen(env_value) > 0) { in ParseBootclasspath()324 Split(env_value, ':', &boot_class_path_); in ParseBootclasspath()
75 const char* env_value = getenv("ANDROID_BUILD_TOP"); in FindAddr2line() local76 std::string_view top(env_value != nullptr ? env_value : "."); in FindAddr2line()
96 const char* env_value = getenv("ANDROID_BUILD_TOP"); in FindAddr2line() local97 if (env_value != nullptr) { in FindAddr2line()98 std::string path = std::string(env_value) + kAddr2linePath; in FindAddr2line()
1551 const char* env_value = getenv("BOOTCLASSPATH"); in GetBootClassPath() local1552 if (env_value == nullptr || strlen(env_value) == 0) { in GetBootClassPath()1555 cached_boot_class_path_ = Split(env_value, ":"); in GetBootClassPath()