• Home
  • Raw
  • Download

Lines Matching refs:string

76   std::string apex_info_list_file_;
77 std::string art_bin_dir_;
78 std::string dex2oat_;
79 std::string dex2oat_boot_classpath_;
84 std::string program_name_;
85 std::string system_server_classpath_;
86 std::string system_server_compiler_filter_;
88 std::string boot_classpath_;
89 std::string artifact_dir_;
90 std::string standalone_system_server_jars_;
95 std::unordered_map<std::string, std::string> system_properties_;
99 std::string staging_dir_;
109 const std::string& GetApexInfoListFile() const { return apex_info_list_file_; } in GetApexInfoListFile()
136 const std::string& GetDex2oatBootClasspath() const { return dex2oat_boot_classpath_; } in GetDex2oatBootClasspath()
138 const std::string& GetArtifactDirectory() const { return artifact_dir_; } in GetArtifactDirectory()
140 std::string GetDex2Oat() const { in GetDex2Oat()
168 const std::string& GetSystemServerClasspath() const { in GetSystemServerClasspath()
171 const std::string& GetSystemServerCompilerFilter() const { in GetSystemServerCompilerFilter()
174 const std::string& GetStagingDir() const { in GetStagingDir()
179 const std::unordered_map<std::string, std::string>& GetSystemProperties() const { in GetSystemProperties()
183 void SetApexInfoListFile(const std::string& file_path) { apex_info_list_file_ = file_path; } in SetApexInfoListFile()
184 void SetArtBinDir(const std::string& art_bin_dir) { art_bin_dir_ = art_bin_dir; } in SetArtBinDir()
186 void SetDex2oatBootclasspath(const std::string& classpath) { in SetDex2oatBootclasspath()
190 void SetArtifactDirectory(const std::string& artifact_dir) { in SetArtifactDirectory()
203 void SetSystemServerClasspath(const std::string& classpath) { in SetSystemServerClasspath()
207 void SetSystemServerCompilerFilter(const std::string& filter) { in SetSystemServerCompilerFilter()
213 const std::string& GetBootClasspath() const { return boot_classpath_; } in GetBootClasspath()
215 void SetBootClasspath(const std::string& classpath) { boot_classpath_ = classpath; } in SetBootClasspath()
217 void SetStagingDir(const std::string& staging_dir) { in SetStagingDir()
221 const std::string& GetStandaloneSystemServerJars() const { in GetStandaloneSystemServerJars()
225 void SetStandaloneSystemServerJars(const std::string& jars) { in SetStandaloneSystemServerJars()
233 std::unordered_map<std::string, std::string>* MutableSystemProperties() { in MutableSystemProperties()