Lines Matching defs:params

90     auto params = getChannelParams(bus, channel);
91 return std::invoke(func, bus, params, std::forward<Args>(args)...);
170 * @param[in] params - The parameters for the channel
173 ObjectLookupCache(sdbusplus::bus_t& bus, const ChannelParams& params,
175 bus(bus), params(params), intf(intf),
176 objs(getAllDbusObjects(bus, params.logicalPath, intf, ""))
215 const ChannelParams& params;
233 auto properties = getAllDbusProperties(bus, params.service, path, intf);
243 * @param[in] params - The parameters for the channel
252 [[maybe_unused]] const ChannelParams& params, uint8_t idx,
302 * @param[in] params - The parameters for the channel
309 sdbusplus::bus_t& bus, const ChannelParams& params, uint8_t idx,
314 ObjectLookupCache ips(bus, params, NetworkIP::interface);
315 return findIfAddr<family>(bus, params, idx, origins, ips);
321 * @param[in] params - The parameters for the channel
326 void reconfigureIfAddr6(sdbusplus::bus_t& bus, const ChannelParams& params,
333 * @param[in] params - The parameters for the channel
338 sdbusplus::bus_t& bus, const ChannelParams& params)
340 auto objPath = "/xyz/openbmc_project/network/" + params.ifname;
342 getDbusProperty(bus, params.service, objPath, INTF_ETHERNET,
395 void createNeighbor(sdbusplus::bus_t& bus, const ChannelParams& params,
400 bus.new_method_call(params.service.c_str(), params.logicalPath.c_str(),
422 * @param[in] params - The parameters for the channel
426 void setGatewayProperty(sdbusplus::bus_t& bus, const ChannelParams& params,
430 auto gateway = getGatewayProperty<family>(bus, params);
434 ObjectLookupCache neighbors(bus, params, INTF_NEIGHBOR);
435 neighbor = findStaticNeighbor<family>(bus, params, *gateway, neighbors);
438 auto objPath = "/xyz/openbmc_project/network/" + params.ifname;
439 setDbusProperty(bus, params.service, objPath, INTF_ETHERNET,
446 deleteObjectIfExists(bus, params.service, neighbor->path);
447 createNeighbor<family>(bus, params, address, neighbor->mac);