/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() 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() 153 tracer.detach(original); in testSpanStackAndCreateAndContinue() [all …]
|
/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/linux-kselftest/tools/testing/selftests/drivers/usb/usbip/ |
D | usbip_test.sh | 157 src/usbip detach -p 00; 158 src/usbip detach -p 01; 166 src/usbip detach -p 00; 167 src/usbip detach -p 01; 171 src/usbip detach -p 100;
|
/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()
|
D | wait.pass.cpp | 51 std::thread(func1, std::move(p)).detach(); in main() 65 std::thread(func3, std::move(p)).detach(); in main() 79 std::thread(func5, std::move(p)).detach(); in main()
|
D | wait_for.pass.cpp | 54 std::thread(func1, std::move(p)).detach(); in main() 70 std::thread(func3, std::move(p)).detach(); in main() 86 std::thread(func5, 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()
|
D | wait.pass.cpp | 51 std::thread(func1, std::move(p)).detach(); in main() 65 std::thread(func3, std::move(p)).detach(); in main() 79 std::thread(func5, std::move(p)).detach(); in main()
|
D | wait_for.pass.cpp | 54 std::thread(func1, std::move(p)).detach(); in main() 70 std::thread(func3, std::move(p)).detach(); in main() 86 std::thread(func5, std::move(p)).detach(); in main()
|
/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() 107 detach = true; in parse_opts() 124 if (detach) in parse_opts()
|
/external/grpc-grpc-java/context/src/main/java/io/grpc/ |
D | Context.java | 409 public void detach(Context toAttach) { in detach() method in Context 411 storage().detach(this, toAttach); in detach() 567 detach(previous); in run() 582 detach(previous); in call() 597 detach(previous); in wrap() 614 detach(previous); 754 public void detach(Context toAttach) { 755 uncancellableSurrogate.detach(toAttach); 811 detach(toAttach); 961 public abstract void detach(Context toDetach, Context toRestore);
|
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.member/ |
D | detach.pass.cpp | 71 t0.detach(); in main() 82 t0.detach(); in main() 85 t0.detach(); in main()
|
/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/elfutils/libdwfl/ |
D | linux-proc-maps.c | 401 bool detach = false; in dwfl_linux_proc_find_elf() local 413 detach = __libdwfl_ptrace_attach (pid, &tid_was_stopped); in dwfl_linux_proc_find_elf() 418 goto detach; in dwfl_linux_proc_find_elf() 423 goto detach; in dwfl_linux_proc_find_elf() 432 detach: in dwfl_linux_proc_find_elf() 433 if (detach) in dwfl_linux_proc_find_elf()
|
/external/libcxx/test/std/thread/futures/futures.task/futures.task.members/ |
D | make_ready_at_thread_exit.pass.cpp | 89 std::thread(func0, std::move(p)).detach(); in main() 96 std::thread(func1, std::move(p)).detach(); in main() 110 std::thread(func2, std::move(p)).detach(); in main()
|
D | dtor.pass.cpp | 49 std::thread(func, std::move(p)).detach(); in main() 65 std::thread(func2, std::move(p)).detach(); in main()
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
D | FilterExprIterator.java | 99 public void detach() in detach() method in FilterExprIterator 101 super.detach(); in detach() 102 m_exprObj.detach(); in detach()
|
D | FilterExprWalker.java | 110 public void detach() in detach() method in FilterExprWalker 112 super.detach(); in detach() 115 m_exprObj.detach(); in detach()
|
D | WalkingIterator.java | 258 public void detach() in detach() method in WalkingIterator 265 walker.detach(); in detach() 272 super.detach(); in detach()
|
D | FilterExprIteratorSimple.java | 181 public void detach() in detach() method in FilterExprIteratorSimple 185 super.detach(); in detach() 186 m_exprObj.detach(); in detach()
|
/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/apache-http/src/org/apache/http/impl/conn/tsccm/ |
D | BasicPooledConnAdapter.java | 84 protected void detach() { in detach() method in BasicPooledConnAdapter 86 super.detach(); in detach()
|
/external/apache-xml/src/main/java/org/apache/xpath/patterns/ |
D | FunctionPattern.java | 127 nl.detach(); in execute() 169 nl.detach(); in execute() 212 nl.detach(); in execute()
|
/external/opencensus-java/api/src/main/java/io/opencensus/trace/ |
D | CurrentSpanUtils.java | 98 Context.current().detach(origContext); in close() 132 Context.current().detach(origContext); in run() 167 Context.current().detach(origContext); in call()
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
D | Equals.java | 69 left.detach(); in bool() 70 right.detach(); in bool()
|