Lines Matching refs:outer
734 Cancellation: if the outer Future is cancelled, all children (that
737 the outer Future is *not* cancelled in this case. (This is to
750 outer = loop.create_future()
751 outer.set_result([])
752 return outer
758 if outer is None or outer.done():
770 outer.set_exception(exc)
775 outer.set_exception(exc)
780 # and set it to the 'outer' future.
800 if outer._cancel_requested:
805 outer.set_exception(exc)
807 outer.set_result(results)
814 outer = None # bpo-46672
837 outer = _GatheringFuture(children, loop=loop)
838 return outer
879 outer = loop.create_future()
882 if outer.cancelled():
889 outer.cancel()
893 outer.set_exception(exc)
895 outer.set_result(inner.result())
898 def _outer_done_callback(outer):
903 outer.add_done_callback(_outer_done_callback)
904 return outer