Lines Matching full:pools
28 def __init__(self, pools): argument
30 for pool in pools:
72 # The threshold type of pools 4, 8, 9 and 10 cannot be changed
110 # The threshold type of pools 4, 8, 9 and 10 cannot be changed
187 pools = PoolList()
190 pools.append(Pool(pooldict))
191 return pools
194 def do_check_pools(dlname, pools, vp): argument
195 for pool in pools:
219 def check_pools(dlname, pools): argument
221 record_vp = RecordValuePicker(pools)
224 do_check_pools(dlname, pools, RandomValuePicker(pools))
227 do_check_pools(dlname, pools, record_vp)
290 def check_tcbind(dlname, ports, pools): argument
298 do_check_tcbind(ports, tcbinds, RandomValuePicker(pools))
357 def check_portpool(dlname, ports, pools): argument
364 do_check_portpool(ports, portpools, RandomValuePicker(pools))
409 pools = get_pools(dlname)
411 check_pools(dlname, pools)
412 check_tcbind(dlname, ports, pools)
413 check_portpool(dlname, ports, pools)