Home | History | Annotate | Download | only in multiprocessing

Lines Matching defs:get_context

55         m = SyncManager(ctx=self.get_context())
67 return Lock(ctx=self.get_context())
72 return RLock(ctx=self.get_context())
77 return Condition(lock, ctx=self.get_context())
82 return Semaphore(value, ctx=self.get_context())
87 return BoundedSemaphore(value, ctx=self.get_context())
92 return Event(ctx=self.get_context())
97 return Barrier(parties, action, timeout, ctx=self.get_context())
102 return Queue(maxsize, ctx=self.get_context())
107 return JoinableQueue(maxsize, ctx=self.get_context())
112 return SimpleQueue(ctx=self.get_context())
119 context=self.get_context())
135 ctx=self.get_context())
141 ctx=self.get_context())
186 def get_context(self, method=None):
223 return _default_context.get_context().Process._Popen(process_obj)
232 def get_context(self, method=None):
238 return super().get_context(method)
246 self._actual_context = self.get_context(method)