Lines Matching full:buses
187 return; // the mux buses are random, no need to publish in makeProbeInterface()
644 // It's expected to have at least one field, "buses" that is an array of the in loadBlocklist()
645 // buses by integer. Allow for future options to exclude further aspects, in loadBlocklist()
653 // If buses field is missing, that's fine. in loadBlocklist()
654 if (data.count("buses") == 1) in loadBlocklist()
656 // Parse the buses array after a little validation. in loadBlocklist()
657 auto buses = data.at("buses"); in loadBlocklist() local
658 if (buses.type() != nlohmann::json::value_t::array) in loadBlocklist()
660 // Buses field present but invalid, therefore this is an error. in loadBlocklist()
661 std::cerr << "Invalid contents for blocklist buses field\n"; in loadBlocklist()
668 for (const auto& busIterator : buses) in loadBlocklist()
1393 // check for and load blocklist with initial buses. in main()