Home | History | Annotate | Download | only in dexpreopt

Lines Matching refs:fo

168 def IsDataAvailable(fo, timeout=0):
172 fo: A file object to read from.
178 return select.select([fo], [], [], timeout) == ([fo], [], [])
181 def ConsumeAvailableData(fo):
187 fo: A file object to read from.
193 while IsDataAvailable(fo):
195 buf.fromfile(fo, 1)
553 fo = file(out_file_name, 'w+b')
554 fo.truncate(0)
556 data.tofile(fo)
557 fo.close()