Lines Matching full:retries
265 const std::string& owner, size_t retries = 5) in getPath()
267 if (retries > 5) in getPath()
269 retries = 5; in getPath()
274 [self, path, interface, owner, retries]( in getPath()
278 if (retries == 0U) in getPath()
281 << ": no retries left\n"; in getPath()
284 std::cerr << "Error getting " << path << ": " << retries - 1 in getPath()
285 << " retries left\n"; in getPath()
290 retries](boost::system::error_code ec) { in getPath()
296 self->getPath(path, interface, owner, retries - 1); in getPath()
308 size_t retries = 0) in getConfiguration()
310 if (retries > 5) in getConfiguration()
312 retries = 5; in getConfiguration()
323 [self, interfaces, retries](const boost::system::error_code ec, in getConfiguration()
328 if (retries == 0U) in getConfiguration()
336 retries](boost::system::error_code ec) { in getConfiguration()
342 self->getConfiguration(interfaces, retries - 1); in getConfiguration()