MCPcopy Create free account
hub / github.com/FDio/vpp / details_iter

Method details_iter

src/vpp-api/python/vpp_papi/vpp_papi.py:1022–1031  ·  view source on GitHub ↗
(self, f, **kwargs)

Source from the content-addressed store, hash-verified

1020 )
1021
1022 def details_iter(self, f, **kwargs):
1023 cursor = 0
1024 while True:
1025 kwargs["cursor"] = cursor
1026 rv, details = f(**kwargs)
1027 for d in details:
1028 yield d
1029 if rv.retval == 0 or rv.retval != -165:
1030 break
1031 cursor = rv.cursor

Callers 8

test_delete_interfaceMethod · 0.45
test_delete_interfaceMethod · 0.45
test_path_mtuMethod · 0.45
query_vpp_configMethod · 0.45
_get_lcp_pairsMethod · 0.45
query_vpp_configMethod · 0.45

Calls

no outgoing calls

Tested by 7

test_delete_interfaceMethod · 0.36
test_delete_interfaceMethod · 0.36
test_path_mtuMethod · 0.36
query_vpp_configMethod · 0.36
_get_lcp_pairsMethod · 0.36