/external/opencensus-java/contrib/spring_sleuth_v1x/src/test/java/io/opencensus/contrib/spring/sleuth/v1x/ |
D | OpenCensusSleuthTracerTest.java | 87 Span parent = tracer.detach(null); in testDetachNull() 96 Span parent = tracer.detach(root); in testRootSpanAndDetach() 103 Span parent = tracer.detach(spans[spans.length - 1]); in testSpanStackAndDetach() 110 // try to detach a non-current span in testSpanStackAndDetachOutOfOrder() 111 tracer.detach(spans[spans.length - 2]); in testSpanStackAndDetachOutOfOrder() 113 Span parent = tracer.detach(spans[spans.length - 1]); in testSpanStackAndDetachOutOfOrder() 127 tracer.detach(root); in testRootSpanAndContinue() 130 tracer.detach(span); in testRootSpanAndContinue() 138 Span parent = tracer.detach(original); in testSpanStackAndContinue() 146 tracer.detach(continued); in testSpanStackAndContinue() [all …]
|
/external/autotest/server/site_tests/firmware_Cr50CCDServoCap/ |
D | firmware_Cr50CCDServoCap.py | 31 'rdd attach, fake_servo on, rdd detach', 32 'rdd attach, fake_servo off, rdd detach', 82 'rdd attach, fake_servo off, rdd detach' : [OFF, OFF, OFF], 84 'rdd attach, fake_servo on, rdd detach' : [OFF, OFF, ON], 131 self.rdd('detach') 148 # Detach ccd so EC uart won't interfere with servo detection 149 self.rdd('detach') 255 """detach the ccd cable and disconnect servo. 262 self.rdd('detach') 267 """Attach or detach the ccd cable. [all …]
|
/external/perfetto/docs/ |
D | detached-mode.md | 3 This document describes the `--detach` and `--attach` advanced operating modes 6 The use of `--detach` and `--attach` is highly discouraged because of the risk 34 `--detach=key` decouples the lifetime of the cmdline client from the lifetime 42 Because of the exit, a client that wants to use `--detach` needs to set the 108 ' | perfetto -c - --txt --detach=session1 -o /data/misc/perfetto-traces/trace 142 ' | perfetto -c - --txt --detach=session2 -o /data/misc/perfetto-traces/trace 171 ' | perfetto -c - --txt --detach=session3 -o /data/misc/perfetto-traces/trace
|
/external/linux-kselftest/tools/testing/selftests/bpf/ |
D | flow_dissector_load.c | 94 bool detach = false; in parse_opts() local 100 if (detach) in parse_opts() 101 error(1, 0, "attach/detach are exclusive"); in parse_opts() 106 error(1, 0, "attach/detach are exclusive"); in parse_opts() 107 detach = true; in parse_opts() 124 if (detach) in parse_opts()
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/ |
D | Contexts.java | 55 context.detach(previous); in interceptCall() 78 context.detach(previous); in onMessage() 88 context.detach(previous); in onHalfClose() 98 context.detach(previous); in onCancel() 108 context.detach(previous); in onComplete() 118 context.detach(previous); in onReady()
|
/external/libcxx/test/std/thread/futures/futures.shared_future/ |
D | get.pass.cpp | 72 std::thread(func1, std::move(p)).detach(); in main() 81 std::thread(func2, std::move(p)).detach(); in main() 101 std::thread(func3, std::move(p)).detach(); in main() 110 std::thread(func4, std::move(p)).detach(); in main() 130 std::thread(func5, std::move(p)).detach(); in main() 139 std::thread(func6, std::move(p)).detach(); in main()
|
/external/libcxx/test/std/thread/futures/futures.unique_future/ |
D | get.pass.cpp | 72 std::thread(func1, std::move(p)).detach(); in main() 81 std::thread(func2, std::move(p)).detach(); in main() 101 std::thread(func3, std::move(p)).detach(); in main() 110 std::thread(func4, std::move(p)).detach(); in main() 130 std::thread(func5, std::move(p)).detach(); in main() 139 std::thread(func6, std::move(p)).detach(); in main()
|
/external/autotest/server/site_tests/power_WakeSources/ |
D | power_WakeSources.py | 16 BASE_STATE = enum.Enum('ATTACH', 'DETACH', 'RESET') 43 4. base detach 66 # Force detach before suspend so that attach won't be ignored. 67 return self._force_base_state(BASE_STATE.DETACH) 69 # Force attach before suspend so that detach won't be ignored. 90 BASE_STATE.DETACH: 'd', 206 self._force_base_state(BASE_STATE.DETACH)
|
/external/grpc-grpc-java/context/src/main/java/io/grpc/ |
D | Context.java | 43 * later exited by {@link #detach detaching} the Context. 86 * <li>Every {@code attach()} should have a {@code detach()} in the same method. And every 373 * <p>Instead of using {@code attach()} and {@link #detach(Context)} most use-cases are better 378 * <p>All calls to {@code attach()} should have a corresponding {@link #detach(Context)} within 384 * someContext.detach(previous); 400 * an {@code attach()} and a {@code detach()} meet above requirements, they match. 402 * <p>It is expected that between any pair of matching {@code attach()} and {@code detach()}, all 403 * {@code attach()}es and {@code detach()}es are called in matching pairs. If this method finds 406 * be bound. <strong>Never</strong> use {@code Context.current().detach()}, as this will 409 public void detach(Context toAttach) { in detach() method in Context [all …]
|
/external/tensorflow/tensorflow/contrib/graph_editor/ |
D | edit.py | 32 "detach", 39 """Detach all the external control inputs of the subgraph sgv. 52 """Detach all the external control outputs of the subgraph sgv. 71 """Detach the inputs of a subgraph view. 102 """Detach the output of a subgraph view. 141 def detach(sgv, control_inputs=False, control_outputs=None, control_ios=None): function 142 """Detach both the inputs and the outputs of a subgraph view.
|
/external/grpc-grpc-java/context/src/test/java/io/grpc/ |
D | ContextTest.java | 116 contextOfThisThread.detach(toRestore); in defaultContext() 129 fork.detach(toRestore3); in rootCanBeAttached() 130 Context.ROOT.detach(toRestore2); in rootCanBeAttached() 131 fork.detach(toRestore1); in rootCanBeAttached() 190 base.detach(initial); in detachingNonCurrentLogsSevereMessage() 216 child.detach(base); in valuesAndOverrides() 223 base.detach(Context.ROOT); in valuesAndOverrides() 243 child.detach(toRestore); in withValuesThree() 260 child.detach(toRestore); in withValuesFour() 417 base.detach(toRestore); in cancellableContextIsAttached() [all …]
|
/external/strace/tests-mx32/ |
D | detach-sleeping.test | 3 # Ensure that strace can detach from sleeping processes. 73 dump_log_and_fail_with "$STRACE -p failed to detach" 80 dump_log_and_fail_with 'tracee died after detach' 85 dump_log_and_fail_with 'tracee is not sleeping after detach'
|
D | detach-running.test | 3 # Ensure that strace can detach from running processes. 73 dump_log_and_fail_with "$STRACE -p failed to detach" 80 dump_log_and_fail_with 'tracee died after detach' 85 dump_log_and_fail_with 'tracee is not running after detach'
|
D | detach-stopped.test | 3 # Ensure that strace can detach from stopped processes. 90 dump_log_and_fail_with "$STRACE -p failed to detach" 97 dump_log_and_fail_with 'tracee died after detach' 102 dump_log_and_fail_with 'tracee is not group-stopped after detach'
|
/external/strace/tests/ |
D | detach-sleeping.test | 3 # Ensure that strace can detach from sleeping processes. 73 dump_log_and_fail_with "$STRACE -p failed to detach" 80 dump_log_and_fail_with 'tracee died after detach' 85 dump_log_and_fail_with 'tracee is not sleeping after detach'
|
D | detach-running.test | 3 # Ensure that strace can detach from running processes. 73 dump_log_and_fail_with "$STRACE -p failed to detach" 80 dump_log_and_fail_with 'tracee died after detach' 85 dump_log_and_fail_with 'tracee is not running after detach'
|
D | detach-stopped.test | 3 # Ensure that strace can detach from stopped processes. 90 dump_log_and_fail_with "$STRACE -p failed to detach" 97 dump_log_and_fail_with 'tracee died after detach' 102 dump_log_and_fail_with 'tracee is not group-stopped after detach'
|
/external/strace/tests-m32/ |
D | detach-running.test | 3 # Ensure that strace can detach from running processes. 73 dump_log_and_fail_with "$STRACE -p failed to detach" 80 dump_log_and_fail_with 'tracee died after detach' 85 dump_log_and_fail_with 'tracee is not running after detach'
|
D | detach-sleeping.test | 3 # Ensure that strace can detach from sleeping processes. 73 dump_log_and_fail_with "$STRACE -p failed to detach" 80 dump_log_and_fail_with 'tracee died after detach' 85 dump_log_and_fail_with 'tracee is not sleeping after detach'
|
D | detach-stopped.test | 3 # Ensure that strace can detach from stopped processes. 90 dump_log_and_fail_with "$STRACE -p failed to detach" 97 dump_log_and_fail_with 'tracee died after detach' 102 dump_log_and_fail_with 'tracee is not group-stopped after detach'
|
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.member/ |
D | detach.pass.cpp | 16 // void detach(); 71 t0.detach(); in main() 82 t0.detach(); in main() 85 t0.detach(); in main()
|
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
D | index_sub_table_format2.cc | 38 return output.Detach(); in BigMetrics() 98 return it.Detach(); in GetIterator() 126 return output.Detach(); in CreateBuilder() 149 return output.Detach(); in CreateBuilder() 169 return output.Detach(); in CreateBuilder() 176 return output.Detach(); in SubBuildTable() 272 return output.Detach(); in Next()
|
/external/lzma/CPP/7zip/UI/Common/ |
D | UpdateCallback.cpp | 144 prop.Detach(value); in GetRootProp() 332 prop.Detach(value); in GetProperty() 340 prop.Detach(value); in GetProperty() 365 prop.Detach(value); in GetProperty() 379 prop.Detach(value); in GetProperty() 384 prop.Detach(value); in GetProperty() 433 prop.Detach(value); in GetProperty() 472 *inStream = inStreamLoc.Detach(); in GetStream2() 490 *inStream = inStreamLoc.Detach(); in GetStream2() 557 *inStream = inStreamLoc.Detach(); in GetStream2() [all …]
|
/external/catch2/docs/ |
D | release-process.md | 66 $ gpg2 --armor --output catch.hpp.asc --detach-sig catch.hpp 67 $ gpg2 --armor --output catch_reporter_automake.hpp.asc --detach-sig catch_reporter_automake.hpp 68 $ gpg2 --armor --output catch_reporter_teamcity.hpp.asc --detach-sig catch_reporter_teamcity.hpp 69 $ gpg2 --armor --output catch_reporter_tap.hpp.asc --detach-sig catch_reporter_tap.hpp
|
/external/webrtc/webrtc/modules/video_render/android/ |
D | video_render_android_native_opengl2.cc | 85 // Detach this thread if it was attached in UseOpenGL2() 89 "%s: Could not detach thread from JVM", __FUNCTION__); in UseOpenGL2() 125 "%s: Could not detach thread from JVM", in ~AndroidNativeOpenGl2Renderer() 199 // Detach this thread if it was attached in Init() 203 "%s: Could not detach thread from JVM", __FUNCTION__); in Init() 274 "%s: Could not detach thread from JVM", in ~AndroidNativeOpenGl2Channel() 368 // Detach this thread if it was attached in Init() 372 "%s: Could not detach thread from JVM", __FUNCTION__); in Init()
|