Home
last modified time | relevance | path

Searched refs:replay (Results 1 – 25 of 1136) sorted by relevance

12345678910>>...46

/external/llvm-project/lldb/docs/design/
Dreproducers.rst11 *capturing* all the information necessary to later *replay* a debug session
38 In capture mode, LLDB will keep track of all the information it needs to replay
62 It is strongly recommended to replay the reproducer locally to ensure it
67 To replay a reproducer, simply pass its path to LLDB through the ``--replay``
73 > lldb --replay /path/to/reproducer
76 During replay LLDB will behave similar to batch mode. The session should be
78 the binary being debugged doesn't actually run during replay. That means that
81 generate`` command, which becomes a NOOP during replay.
98 Reproducers support two replay modes. The main and most common mode is active
99 replay. It's called active, because it's LLDB that is driving replay by calling
[all …]
/external/llvm-project/lldb/test/Shell/Reproducer/
DTestVersionCheck.test9 # Make sure that replay works.
10 # RUN: %lldb --replay %t.repro | FileCheck %s --check-prefix CHECK --check-prefix REPLAY
15 # Make sure that replay works.
16 # RUN: not %lldb --replay %t.repro 2>&1 | FileCheck %s --check-prefix ERROR
19 # RUN: %lldb --replay %t.repro -reproducer-no-version-check | FileCheck %s --check-prefix CHECK --c…
29 # ERROR: error: reproducer replay failed: reproducer capture and replay version don't match
/external/angle/doc/
DCaptureAndReplay.md3 ANGLE currently supports a limited OpenGL capture and replay framework.
8 * EGL capture and replay is not yet supported.
11 * Capture and replay is currently only tested on desktop platforms.
12 * Binary replay is unimplemented. CPP replay is supported.
16 To build ANGLE with capture and replay enabled update your GN args:
22 Once built ANGLE will capture the OpenGL ES calls to CPP replay files. By default the replay will be
24 `angle_capture_context{id}_frame{n}.cpp`. Each GL Context currently has its own replay sources.
38 * Can specify an alternate replay output directory.
86 ## Running a CPP replay
88 To run a CPP replay you can use a template located in
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DShare.kt138 replay: Int = 0 in <lambda>()
140 val config = configureSharing(replay) in <lambda>()
142 replay = replay, in <lambda>()
159 private fun <T> Flow<T>.configureSharing(replay: Int): SharingConfig<T> { in configureSharing()
160 assert { replay >= 0 } in configureSharing()
161 val defaultExtraCapacity = replay.coerceAtLeast(Channel.CHANNEL_DEFAULT_CAPACITY) - replay in configureSharing()
174 replay == 0 -> 1 // no suspension => need at least buffer of one in configureSharing()
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-replay.hpp90 auto replay(AN&&... an) in replay() function
104 class Subject = rxsub::replay<SourceValue, identity_one_worker>,
116 class Subject = rxsub::replay<SourceValue, identity_one_worker>,
129 class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>,
142 class Subject = rxsub::replay<SourceValue, identity_one_worker>,
156 class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>,
170 class Subject = rxsub::replay<SourceValue, identity_one_worker>,
185 class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>,
200 class Subject = rxsub::replay<SourceValue, identity_one_worker>,
216 class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>,
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/sharing/
DSharedFlowTest.kt263 replay = 2, in <lambda>()
331 val sh = MutableSharedFlow<Int>(replay = 0, extraBufferCapacity = n) in <lambda>()
443 for (replay in 0..10) { in <lambda>() method
445 … if (replay == 0 && extraBufferCapacity == 0) continue // test only buffered shared flows in <lambda>()
447 val sh = MutableSharedFlow<Int>(replay, extraBufferCapacity) in <lambda>()
450 testBufferedFlow(sh, replay) in <lambda>()
453 error("Failed for replay=$replay, extraBufferCapacity=$extraBufferCapacity", e) in <lambda>()
459 private fun testBufferedFlow(sh: MutableSharedFlow<Int>, replay: Int) = runTest { in <lambda>()
465 val rcStart = n - replay + 1 in <lambda>()
496 assertEquals(ecRange.toList().takeLast(replay), sh.replayCache) in <lambda>()
[all …]
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/
Dreplay.cpp12 replay();
38 replay(coordination);
69 replay(2);
95 replay(2, coordination);
126 replay(std::chrono::milliseconds(125));
152 replay(std::chrono::milliseconds(125), coordination);
183 replay(2, std::chrono::milliseconds(125));
209 replay(2, std::chrono::milliseconds(125), coordination);
/external/blktrace/btreplay/doc/
Dbtreplay.tex62 one is able to \emph{replay} the IO again on the same machine or another
66 The basic operating work-flow to replay IOs would be something like:
70 device or devices that you wish to trace and later replay IOs upon. Note:
131 entrance of IOs into the block IO layer. In order to replay these IOs with
163 reduction in replay timing accuracy.}.
171 The number of CPUs being used on the replay system can be different from
173 \texttt{--cpus} option allows one to state how many CPUs on the replay
174 system to utilize. If the number of CPUs on the replay system is less than
176 overload of CPU processing capabilities on the replay system. (Refer to
198 \emph{This is the primary problem with any IO replay mechanism -- how
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/
DSharedFlow.kt204 replay: Int = 0, in tryEmit()
208 require(replay >= 0) { "replay cannot be negative, but was $replay" } in tryEmit()
210 require(replay > 0 || extraBufferCapacity > 0 || onBufferOverflow == BufferOverflow.SUSPEND) { in tryEmit()
213 val bufferCapacity0 = replay + extraBufferCapacity in tryEmit()
215 return SharedFlowImpl(replay, bufferCapacity, onBufferOverflow) in tryEmit()
243 private val replay: Int, constant in kotlinx.coroutines.flow.SharedFlowImpl
359 if (replaySize > replay) { // increment replayIndex by one in tryEmitLocked()
367 if (replay == 0) return true // no need to replay, just forget it now in tryEmitNoCollectorsLocked()
371 if (bufferSize > replay) dropOldestLocked() in tryEmitNoCollectorsLocked()
508 var newReplayIndex = maxOf(replayIndex, newBufferEndIndex - minOf(replay, newBufferSize1)) in updateCollectorIndexLocked()
/external/deqp/external/vulkancts/modules/vulkan/ray_tracing/
DvktRayTracingCaptureReplayTests.cpp140 bool replay) = 0;
149 bool replay) = 0;
257 bool replay) override;
266 bool replay) override;
349 bool replay) in initRayTracingShaders() argument
352 DE_UNREF(replay); in initRayTracingShaders()
371 bool replay) in initShaderBindingTables() argument
376 if (!replay) // capture phase in initShaderBindingTables()
523 bool replay) override;
532 bool replay) override;
[all …]
/external/mesa3d/.gitlab-ci/
Dbuild-gfxreconstruct.sh15 ninja -C _build gfxrecon-replay gfxrecon-info
17 install _build/tools/replay/gfxrecon-replay build/bin
/external/mockftpserver/tags/2.3/src/test/java/org/mockftpserver/core/command/
D_AbstractStaticReplyCommandHandlerTest.java56 replay(session); in testSendReply()
68 replay(session); in testSendReply_SetReplyText()
81 replay(session); in testSendReply_SetReplyMessageKey()
108 replay(session); in testSendReply_MessageParameter()
/external/mockftpserver/tags/2.5/src/test/java/org/mockftpserver/core/command/
D_AbstractStaticReplyCommandHandlerTest.java57 replay(session); in testSendReply()
69 replay(session); in testSendReply_SetReplyText()
82 replay(session); in testSendReply_SetReplyMessageKey()
109 replay(session); in testSendReply_MessageParameter()
/external/mockftpserver/tags/2.1/src/test/java/org/mockftpserver/core/command/
D_AbstractStaticReplyCommandHandlerTest.java56 replay(session); in testSendReply()
68 replay(session); in testSendReply_SetReplyText()
81 replay(session); in testSendReply_SetReplyMessageKey()
108 replay(session); in testSendReply_MessageParameter()
/external/mockftpserver/tags/2.2/src/test/java/org/mockftpserver/core/command/
D_AbstractStaticReplyCommandHandlerTest.java56 replay(session); in testSendReply()
68 replay(session); in testSendReply_SetReplyText()
81 replay(session); in testSendReply_SetReplyMessageKey()
108 replay(session); in testSendReply_MessageParameter()
/external/mockftpserver/tags/2.0.2/src/test/java/org/mockftpserver/core/command/
D_AbstractStaticReplyCommandHandlerTest.java56 replay(session); in testSendReply()
68 replay(session); in testSendReply_SetReplyText()
81 replay(session); in testSendReply_SetReplyMessageKey()
108 replay(session); in testSendReply_MessageParameter()
/external/mockftpserver/tags/2.4/src/test/java/org/mockftpserver/core/command/
D_AbstractStaticReplyCommandHandlerTest.java57 replay(session); in testSendReply()
69 replay(session); in testSendReply_SetReplyText()
82 replay(session); in testSendReply_SetReplyMessageKey()
109 replay(session); in testSendReply_MessageParameter()
/external/mockftpserver/tags/2.0.1/src/test/java/org/mockftpserver/core/command/
D_AbstractStaticReplyCommandHandlerTest.java56 replay(session); in testSendReply()
68 replay(session); in testSendReply_SetReplyText()
81 replay(session); in testSendReply_SetReplyMessageKey()
108 replay(session); in testSendReply_MessageParameter()
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
D_AbstractStaticReplyCommandHandlerTest.java57 replay(session); in testSendReply()
69 replay(session); in testSendReply_SetReplyText()
82 replay(session); in testSendReply_SetReplyMessageKey()
109 replay(session); in testSendReply_MessageParameter()
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/java/org/mockftpserver/core/command/
D_AbstractStaticReplyCommandHandlerTest.java56 replay(session); in testSendReply()
68 replay(session); in testSendReply_SetReplyText()
81 replay(session); in testSendReply_SetReplyMessageKey()
108 replay(session); in testSendReply_MessageParameter()
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/java/org/mockftpserver/core/command/
D_AbstractStaticReplyCommandHandlerTest.java56 replay(session); in testSendReply()
68 replay(session); in testSendReply_SetReplyText()
81 replay(session); in testSendReply_SetReplyMessageKey()
108 replay(session); in testSendReply_MessageParameter()
/external/mockftpserver/tags/2.0/src/test/java/org/mockftpserver/core/command/
D_AbstractStaticReplyCommandHandlerTest.java56 replay(session); in testSendReply()
68 replay(session); in testSendReply_SetReplyText()
81 replay(session); in testSendReply_SetReplyMessageKey()
108 replay(session); in testSendReply_MessageParameter()
/external/guava/android/guava-testlib/test/com/google/common/testing/
DEquivalenceTesterTest.java84 equivalenceMock.replay(); in testTest()
102 equivalenceMock.replay(); in testTest_symmetric()
132 equivalenceMock.replay(); in testTest_trasitive()
156 equivalenceMock.replay(); in testTest_inequivalence()
180 equivalenceMock.replay(); in testTest_hash()
237 void replay() { in replay() method in EquivalenceTesterTest.MockEquivalence
/external/guava/guava-testlib/test/com/google/common/testing/
DEquivalenceTesterTest.java84 equivalenceMock.replay(); in testTest()
102 equivalenceMock.replay(); in testTest_symmetric()
132 equivalenceMock.replay(); in testTest_trasitive()
156 equivalenceMock.replay(); in testTest_inequivalence()
180 equivalenceMock.replay(); in testTest_hash()
237 void replay() { in replay() method in EquivalenceTesterTest.MockEquivalence
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/java/org/mockftpserver/stub/command/
D_AbstractStubCommandHandlerTest.java59 replay(session); in testSendReply()
71 replay(session); in testSendReply_SetReplyText()
84 replay(session); in testSendReply_SetReplyMessageKey()
111 replay(session); in testSendReply_MessageParameter()

12345678910>>...46