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/tensorflow/tensorflow/core/framework/ |
D | op_kernel.cc | 408 Tensor OpKernelContext::mutable_input(int index, bool lock_held) { in mutable_input() argument 413 if (lock_held) { in mutable_input() 426 bool lock_held) { in replace_ref_input() argument 431 if (lock_held) { in replace_ref_input() 580 void OpKernelContext::delete_ref_input(int index, bool lock_held) { in delete_ref_input() argument 585 if (lock_held) { in delete_ref_input() 594 bool lock_held) { in mutable_input() argument 607 if (lock_held) { in mutable_input() 619 bool lock_held) { in replace_ref_input() argument 631 replace_ref_input(start, tensor, lock_held); in replace_ref_input()
|
D | op_kernel.h | 474 Tensor at(int i, bool lock_held); 747 Tensor mutable_input(int index, bool lock_held); 756 Status mutable_input(StringPiece name, Tensor* tensor, bool lock_held); 770 void replace_ref_input(int index, const Tensor& tensor, bool lock_held); 777 bool lock_held); 784 void delete_ref_input(int input_index, bool lock_held); 1646 inline Tensor OpMutableInputList::at(int i, bool lock_held) { in at() argument 1649 return ctx_->mutable_input(start_ + i, lock_held); in at()
|
/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/kernels/ |
D | training_op_helpers.h | 242 bool lock_held, bool sparse, Tensor* out) { in GetInputTensorFromVariable() argument 257 *out = ctx->mutable_input(input, lock_held); in GetInputTensorFromVariable()
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | xla_launch_util.h | 85 bool lock_held() const { return lock_held_; } in lock_held() function
|
D | xla_launch_util.cc | 68 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 | 260 .. 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
|