Home
last modified time | relevance | path

Searched refs:reentrant (Results 1 – 25 of 57) sorted by relevance

123

/external/python/cpython3/Doc/library/
Dcontextlib.rst224 This context manager is :ref:`reentrant <reentrant-cms>`.
263 This context manager is :ref:`reentrant <reentrant-cms>`.
273 This context manager is :ref:`reentrant <reentrant-cms>`.
723 .. _single-use-reusable-and-reentrant-cms:
725 Single use, reusable and reentrant context managers
772 More sophisticated context managers may be "reentrant". These context
777 :class:`threading.RLock` is an example of a reentrant context manager, as are
779 reentrant use::
800 Note also that being reentrant is *not* the same thing as being thread safe.
811 Distinct from both single use and reentrant context managers are "reusable"
[all …]
Dthreading.rst427 A reentrant lock is a synchronization primitive that may be acquired multiple
445 This class implements reentrant lock objects. A reentrant lock must be
447 reentrant lock, the same thread may acquire it again without blocking; the
Dqueue.rst244 This method has a C implementation which is reentrant. That is, a
/external/python/cpython3/Modules/
D_tracemalloc.c191 set_reentrant(int reentrant) in set_reentrant() argument
193 assert(reentrant == 0 || reentrant == 1); in set_reentrant()
196 if (reentrant) { in set_reentrant()
218 set_reentrant(int reentrant) in set_reentrant() argument
220 assert(reentrant != tracemalloc_reentrant); in set_reentrant()
221 tracemalloc_reentrant = reentrant; in set_reentrant()
Dfaulthandler.c221 static volatile int reentrant = 0; in faulthandler_dump_traceback() local
224 if (reentrant) in faulthandler_dump_traceback()
227 reentrant = 1; in faulthandler_dump_traceback()
247 reentrant = 0; in faulthandler_dump_traceback()
/external/guava/guava/src/com/google/common/util/concurrent/
DMonitor.java477 boolean reentrant = lock.isHeldByCurrentThread(); in enterWhen()
489 satisfied = guard.isSatisfied() || awaitNanos(guard, timeoutNanos, reentrant); in enterWhen()
496 if (threw && !reentrant) { in enterWhen()
/external/webrtc/webrtc/base/
Dmaccocoasocketserver.mm77 // ::Wait is reentrant, for example when blocking on another thread while
87 // Only allow reentrant waiting if we're in a blocking send.
/external/libnl/lib/route/
Dpktloc_grammar.l11 %option reentrant
/external/libxml2/os400/libxmlrpg/
Dthreads.rpgle19 * xmlRMutex are reentrant mutual exception locks.
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DMessageFramerTest.java328 MessageFramer.Sink reentrant = new MessageFramer.Sink() {
341 framer = new MessageFramer(reentrant, allocator, statsTraceCtx);
DSerializingExecutorTest.java106 public void reentrant() { in reentrant() method in SerializingExecutorTest
/external/libnl/lib/route/cls/
Dematch_grammar.l22 %option reentrant
/external/python/cpython3/Python/
Dpylifecycle.c2108 static int reentrant = 0; in fatal_error() local
2110 if (reentrant) { in fatal_error()
2115 reentrant = 1; in fatal_error()
/external/swiftshader/src/OpenGL/compiler/preprocessor/
DTokenizer.l101 %option reentrant bison-bridge bison-locations
/external/libjpeg-turbo/
Dcoderules.txt50 we want it to be reentrant so that it can be used by applications that process
/external/mesa3d/src/compiler/glsl/glcpp/
Dglcpp-lex.l170 %option bison-bridge bison-locations reentrant noyywrap
/external/libgsm/
DChangeLog33 non-reentrant. (Thanks to Paul Gibbs for pointing out the bug.)
/external/tensorflow/tensorflow/python/autograph/
DLIMITATIONS.md23 …available support in TF. Currently `function.Defun` is the best candidate, but it is not reentrant.
/external/swiftshader/src/OpenGL/compiler/
Dglslang.l86 %option yylineno reentrant bison-bridge bison-locations
/external/grpc-grpc/src/objective-c/GRPCClient/
DGRPCCall.m57 // The following methods of a C gRPC call object aren't reentrant, and thus
170 // Serial queue to invoke the non-reentrant methods of the grpc_call object.
/external/mesa3d/src/mesa/program/
Dprogram_lexer.l166 %option bison-bridge bison-locations reentrant noyywrap
/external/toybox/kconfig/
Dlex.zconf.c_shipped2144 /* Initialization is the same as for the non-reentrant scanner.
2170 /* zconflex_destroy is for both reentrant and non-reentrant scanners. */
2185 /* Reset the globals. This is important in a non-reentrant scanner so the next time
/external/python/cpython2/Doc/library/
Dthreading.rst124 A factory function that returns a new reentrant lock object. A reentrant lock
126 reentrant lock, the same thread may acquire it again without blocking; the
457 A reentrant lock is a synchronization primitive that may be acquired multiple
/external/icu/icu4c/source/config/
Dmh-os39065 # The RENT option makes the program reentrant. This may not really have the same
/external/libpcap/
Dscanner.l33 %option reentrant

123