Lines Matching refs:string
51 const std::unordered_set<std::string> kIgnoredSystemProperties{
100 const std::unordered_map<std::string, std::string>* system_properties) in OdrSystemProperties() argument
108 std::string GetProperty(const std::string& key) const override { in GetProperty()
114 const std::unordered_map<std::string, std::string>* system_properties_;
121 std::string apex_info_list_file_;
122 std::string art_bin_dir_;
123 std::string dex2oat_;
124 std::string dex2oat_boot_classpath_;
129 std::string program_name_;
130 std::string system_server_classpath_;
131 std::string boot_image_compiler_filter_;
132 std::string system_server_compiler_filter_;
134 std::string boot_classpath_;
135 std::string artifact_dir_;
136 std::string standalone_system_server_jars_;
142 std::unordered_map<std::string, std::string> system_properties_;
155 const std::string& GetApexInfoListFile() const { return apex_info_list_file_; } in GetApexInfoListFile()
191 const std::string& GetDex2oatBootClasspath() const { return dex2oat_boot_classpath_; } in GetDex2oatBootClasspath()
193 const std::string& GetArtifactDirectory() const { return artifact_dir_; } in GetArtifactDirectory()
195 std::string GetDex2Oat() const { in GetDex2Oat()
223 const std::string& GetSystemServerClasspath() const { in GetSystemServerClasspath()
226 const std::string& GetBootImageCompilerFilter() const { in GetBootImageCompilerFilter()
229 const std::string& GetSystemServerCompilerFilter() const { in GetSystemServerCompilerFilter()
237 void SetApexInfoListFile(const std::string& file_path) { apex_info_list_file_ = file_path; } in SetApexInfoListFile()
238 void SetArtBinDir(const std::string& art_bin_dir) { art_bin_dir_ = art_bin_dir; } in SetArtBinDir()
240 void SetDex2oatBootclasspath(const std::string& classpath) { in SetDex2oatBootclasspath()
244 void SetArtifactDirectory(const std::string& artifact_dir) { in SetArtifactDirectory()
257 void SetSystemServerClasspath(const std::string& classpath) { in SetSystemServerClasspath()
261 void SetBootImageCompilerFilter(const std::string& filter) { in SetBootImageCompilerFilter()
264 void SetSystemServerCompilerFilter(const std::string& filter) { in SetSystemServerCompilerFilter()
270 const std::string& GetBootClasspath() const { return boot_classpath_; } in GetBootClasspath()
272 void SetBootClasspath(const std::string& classpath) { boot_classpath_ = classpath; } in SetBootClasspath()
274 const std::string& GetStandaloneSystemServerJars() const { in GetStandaloneSystemServerJars()
278 void SetStandaloneSystemServerJars(const std::string& jars) { in SetStandaloneSystemServerJars()
288 std::unordered_map<std::string, std::string>* MutableSystemProperties() { in MutableSystemProperties()