Searched refs:lock_held (Results 1 – 15 of 15) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_imp.py | 16 self.assertEqual(imp.lock_held(), expected, 23 lock_held_at_start = imp.lock_held()
|
D | test_threaded_import.py | 58 if imp.lock_held():
|
D | test_socketserver.py | 370 if imp.lock_held():
|
/external/python/cpython3/Lib/test/ |
D | test_threaded_import.py | 80 assert imp.lock_held() 109 if imp.lock_held():
|
D | test_imp.py | 30 self.assertEqual(imp.lock_held(), expected, 37 lock_held_at_start = imp.lock_held()
|
/external/tensorflow/tensorflow/core/framework/ |
D | op_kernel.h | 498 Tensor at(int i, bool lock_held); 800 Tensor mutable_input(int index, bool lock_held); 809 Status mutable_input(StringPiece name, Tensor* tensor, bool lock_held); 823 void replace_ref_input(int index, const Tensor& tensor, bool lock_held); 830 bool lock_held); 837 void delete_ref_input(int input_index, bool lock_held); 1729 inline Tensor OpMutableInputList::at(int i, bool lock_held) { in at() argument 1732 return ctx_->mutable_input(start_ + i, lock_held); in at()
|
D | op_kernel.cc | 440 Tensor OpKernelContext::mutable_input(int index, bool lock_held) { in mutable_input() argument 445 if (lock_held) { in mutable_input() 458 bool lock_held) { in replace_ref_input() argument 463 if (lock_held) { in replace_ref_input() 612 void OpKernelContext::delete_ref_input(int index, bool lock_held) { in delete_ref_input() argument 617 if (lock_held) { in delete_ref_input() 626 bool lock_held) { in mutable_input() argument 639 if (lock_held) { in mutable_input() 651 bool lock_held) { in replace_ref_input() argument 663 replace_ref_input(start, tensor, lock_held); in replace_ref_input()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | training_op_helpers.h | 241 bool lock_held, bool sparse, Tensor* out) { in GetInputTensorFromVariable() argument 255 *out = ctx->mutable_input(input, lock_held); in GetInputTensorFromVariable()
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | xla_launch_util.h | 84 bool lock_held() const { return lock_held_; } in lock_held() function
|
D | xla_launch_util.cc | 78 if (lock_held()) { in ~VariableInfo()
|
/external/python/cpython3/Lib/ |
D | imp.py | 9 from _imp import (lock_held, acquire_lock, release_lock,
|
/external/python/cpython2/Doc/library/ |
D | imp.rst | 103 .. function:: lock_held()
|
/external/python/cpython3/Doc/library/ |
D | imp.rst | 259 .. function:: lock_held()
|
/external/python/cpython2/Misc/ |
D | HISTORY | 4602 imp.lock_held(). (SF bug #580952 and patch #683257.) 6969 - A new function, imp.lock_held(), returns 1 when the import lock is
|
/external/python/cpython3/Misc/ |
D | HISTORY | 21986 imp.lock_held(). (SF bug #580952 and patch #683257.) 24348 - A new function, imp.lock_held(), returns 1 when the import lock is
|