Searched refs:sectionName (Results 1 - 3 of 3) sorted by relevance

/gem5/src/base/
H A Dinifile.cc136 IniFile::addSection(const string &sectionName) argument
138 SectionTable::iterator i = table.find(sectionName);
146 table[sectionName] = sec;
153 IniFile::findSection(const string &sectionName) const
155 SectionTable::const_iterator i = table.find(sectionName);
171 string sectionName = str.substr(0, offset);
174 eat_white(sectionName);
175 Section *s = addSection(sectionName);
200 string sectionName = line.substr(1, last - 1); local
201 eat_white(sectionName);
217 find(const string &sectionName, const string &entryName, string &value) const argument
234 entryExists(const string &sectionName, const string &entryName) const argument
252 printUnreferenced(const string &sectionName) argument
312 const string &sectionName = i->first; local
334 dump(const string &sectionName) argument
[all...]
H A Dinifile.hh132 /// @param sectionName Name of this section, for use in output message.
134 bool printUnreferenced(const std::string &sectionName);
137 void dump(const std::string &sectionName);
150 Section *addSection(const std::string &sectionName);
154 Section *findSection(const std::string &sectionName) const;
/gem5/util/
H A Ddiff_config.pl134 foreach my $sectionName ( sort keys %$config1Ref ) {
136 if ( not exists $config2Ref->{$sectionName} ) {
137 push(@uniqueSections, $sectionName);
140 my %section1 = %{ $config1Ref->{$sectionName} };
141 my %section2 = %{ $config2Ref->{$sectionName} };
162 print "$sectionName\n";
220 my $sectionName = $1;
229 $config_ref->{$sectionName}{$fieldName} = $value;

Completed in 7 milliseconds