Searched refs:setup_state (Results 1 – 2 of 2) sorted by relevance
/systemd-251/test/test-network/ |
D | systemd-networkd-tests.py | 623 …def wait_operstate(self, link, operstate='degraded', setup_state='configured', setup_timeout=5, fa… argument 639 if not setup_state: 640 setup_state = r'\S+' 655 …with_operstate, timeout='20s', bool_any=False, ipv4=False, ipv6=False, setup_state='configured', s… argument 692 if not bool_any and setup_state: 694 self.wait_operstate(link.split(':')[0], None, setup_state, setup_timeout) 781 self.wait_operstate('dummy98', 'degraded', setup_state='unmanaged') 804 self.wait_operstate('test1', 'off', setup_state='unmanaged') 812 self.wait_operstate('test1', 'degraded', setup_state='unmanaged') 816 self.wait_operstate('test1', 'degraded', setup_state='unmanaged') [all …]
|
/systemd-251/src/network/ |
D | networkctl.c | 833 _cleanup_free_ char *setup_state = NULL, *operational_state = NULL; in list_links() local 840 r = sd_network_link_get_setup_state(links[i].ifindex, &setup_state); in list_links() 842 setup_state = strdup("unmanaged"); in list_links() 843 setup_state_to_color(setup_state, &on_color_setup, NULL); in list_links() 855 TABLE_STRING, setup_state, in list_links() 1553 … *setup_state = NULL, *operational_state = NULL, *online_state = NULL, *activation_policy = NULL; in link_status_one() local 1571 r = sd_network_link_get_setup_state(info->ifindex, &setup_state); in link_status_one() 1573 setup_state = strdup("unmanaged"); in link_status_one() 1574 setup_state_to_color(setup_state, &on_color_setup, &off_color_setup); in link_status_one() 1654 on_color_setup, strna(setup_state), off_color_setup); in link_status_one()
|