Home | History | Annotate | Download | only in utils

Lines Matching refs:Iterate

71 def Iterate(command, iteration_func):
111 Iterate.proc = proc
112 Iterate.wnd = wnd
113 Iterate.s = s
117 if Iterate.s:
118 Iterate.s.close()
119 Iterate.s = None
121 if Iterate.proc:
122 if not windowing.WaitForProcessExit(Iterate.proc, 0):
124 windowing.EndProcess(Iterate.proc)
125 windowing.WaitForProcessExit(Iterate.proc, 0)
129 Iterate.proc = None
158 Iterate.s = None
159 Iterate.proc = None
160 Iterate.wnd = None
164 if not Iterate.proc:
167 Iterate.s.send(url + "\n")
174 recv = Iterate.s.recv(MAX_URL)
196 iteration_func(url, Iterate.proc, Iterate.wnd, response)