Lines Matching refs:ifs
164 std::ifstream ifs; in getRxPackets() local
165 ifs.exceptions(std::ifstream::failbit); in getRxPackets()
168 ifs.open(path); in getRxPackets()
169 ifs >> count; in getRxPackets()
194 std::ifstream ifs; in getCpldVersion() local
195 ifs.exceptions(std::ifstream::failbit); in getCpldVersion()
199 ifs.open(opath.str()); in getCpldVersion()
200 ifs >> value; in getCpldVersion()
335 std::ifstream ifs(path); in getMachineName() local
336 if (ifs.fail()) in getMachineName()
345 std::getline(ifs, line); in getMachineName()
346 if (ifs.eof()) in getMachineName()
352 if (ifs.fail()) in getMachineName()
798 std::ifstream ifs; in getBMInstanceProperty() local
799 ifs.exceptions(std::ifstream::failbit); in getBMInstanceProperty()
803 ifs.open(opath); in getBMInstanceProperty()
804 std::getline(ifs, property); in getBMInstanceProperty()