/external/grpc-grpc/test/core/gprpp/ |
D | fork_test.cc | 25 GPR_ASSERT(!grpc_core::Fork::Enabled()); in test_init() 28 grpc_core::Fork::GlobalInit(); in test_init() 29 GPR_ASSERT(!grpc_core::Fork::Enabled()); in test_init() 30 grpc_core::Fork::GlobalShutdown(); in test_init() 33 grpc_core::Fork::Enable(false); in test_init() 34 grpc_core::Fork::GlobalInit(); in test_init() 35 GPR_ASSERT(!grpc_core::Fork::Enabled()); in test_init() 36 grpc_core::Fork::GlobalShutdown(); in test_init() 39 grpc_core::Fork::Enable(true); in test_init() 40 grpc_core::Fork::GlobalInit(); in test_init() [all …]
|
/external/grpc-grpc/src/core/lib/gprpp/ |
D | fork.cc | 159 void Fork::GlobalInit() { in GlobalInit() 198 void Fork::GlobalShutdown() { in GlobalShutdown() 205 bool Fork::Enabled() { return support_enabled_; } in Enabled() 208 void Fork::Enable(bool enable) { in Enable() 213 void Fork::IncExecCtxCount() { in IncExecCtxCount() 219 void Fork::DecExecCtxCount() { in DecExecCtxCount() 225 void Fork::SetResetChildPollingEngineFunc( in SetResetChildPollingEngineFunc() 226 Fork::child_postfork_func reset_child_polling_engine) { in SetResetChildPollingEngineFunc() 229 Fork::child_postfork_func Fork::GetResetChildPollingEngineFunc() { in GetResetChildPollingEngineFunc() 233 bool Fork::BlockExecCtx() { in BlockExecCtx() [all …]
|
D | thd_posix.cc | 66 grpc_core::Fork::IncThreadCount(); in ThreadInternalsPosix() 101 grpc_core::Fork::DecThreadCount(); in ThreadInternalsPosix() 111 grpc_core::Fork::DecThreadCount(); in ThreadInternalsPosix()
|
D | fork.h | 34 class Fork {
|
/external/grpc-grpc/src/core/lib/iomgr/ |
D | fork_posix.cc | 55 if (!grpc_core::Fork::Enabled()) { in grpc_prefork() 67 if (!grpc_core::Fork::BlockExecCtx()) { in grpc_prefork() 76 grpc_core::Fork::AwaitThreads(); in grpc_prefork() 82 grpc_core::Fork::AllowExecCtx(); in grpc_postfork_parent() 91 grpc_core::Fork::AllowExecCtx(); in grpc_postfork_child() 93 grpc_core::Fork::child_postfork_func reset_polling_engine = in grpc_postfork_child() 94 grpc_core::Fork::GetResetChildPollingEngineFunc(); in grpc_postfork_child() 104 if (grpc_core::Fork::Enabled() & !registered_handlers) { in grpc_fork_handlers_auto_register()
|
D | exec_ctx.h | 93 grpc_core::Fork::IncExecCtxCount(); in ExecCtx() 100 grpc_core::Fork::IncExecCtxCount(); in ExecCtx() 111 grpc_core::Fork::DecExecCtxCount(); in ~ExecCtx()
|
/external/opencensus-java/contrib/agent/src/jmh/java/io/opencensus/contrib/agent/instrumentation/ |
D | ExecutorInstrumentationBenchmark.java | 24 import org.openjdk.jmh.annotations.Fork; 54 @Fork 67 @Fork 80 @Fork(jvmArgsAppend = "-javaagent:contrib/agent/build/libs/agent.jar")
|
D | ThreadInstrumentationBenchmark.java | 23 import org.openjdk.jmh.annotations.Fork; 53 @Fork 68 @Fork 83 @Fork(jvmArgsAppend = "-javaagent:contrib/agent/build/libs/agent.jar")
|
/external/v8/src/regexp/experimental/ |
D | experimental-compiler.cc | 240 void Fork(Label& target) { in Fork() function in v8::internal::__anon6c49fcb10211::BytecodeAssembler 359 assembler_.Fork(tail); in CompileDisjunction() 458 assembler_.Fork(end); in CompileGreedyStar() 481 assembler_.Fork(body); in CompileNonGreedyStar() 486 assembler_.Fork(body); in CompileNonGreedyStar() 509 assembler_.Fork(end); in CompileGreedyRepetition() 538 assembler_.Fork(body); in CompileNonGreedyRepetition()
|
/external/conscrypt/benchmark-jmh/src/jmh/java/org/conscrypt/ |
D | JmhAlpnBenchmark.java | 22 import org.openjdk.jmh.annotations.Fork; 34 @Fork(1)
|
D | JmhCipherEncryptBenchmark.java | 21 import org.openjdk.jmh.annotations.Fork; 34 @Fork(1)
|
D | JmhEngineHandshakeBenchmark.java | 38 import org.openjdk.jmh.annotations.Fork; 50 @Fork(1)
|
D | JmhEngineWrapBenchmark.java | 38 import org.openjdk.jmh.annotations.Fork; 51 @Fork(1)
|
D | JmhServerSocketBenchmark.java | 22 import org.openjdk.jmh.annotations.Fork; 35 @Fork(1)
|
D | JmhClientSocketBenchmark.java | 22 import org.openjdk.jmh.annotations.Fork; 36 @Fork(1)
|
/external/grpc-grpc-java/benchmarks/src/jmh/java/io/grpc/benchmarks/netty/ |
D | SingleThreadBlockingQpsBenchmark.java | 23 import org.openjdk.jmh.annotations.Fork; 36 @Fork(1)
|
D | UnaryCallQpsBenchmark.java | 23 import org.openjdk.jmh.annotations.Fork; 35 @Fork(1)
|
D | UnaryCallResponseBandwidthBenchmark.java | 23 import org.openjdk.jmh.annotations.Fork; 37 @Fork(1)
|
D | StreamingPingPongsPerSecondBenchmark.java | 26 import org.openjdk.jmh.annotations.Fork; 39 @Fork(1)
|
D | StreamingResponseBandwidthBenchmark.java | 25 import org.openjdk.jmh.annotations.Fork; 39 @Fork(1)
|
D | FlowControlledMessagesPerSecondBenchmark.java | 26 import org.openjdk.jmh.annotations.Fork; 39 @Fork(1)
|
D | HandlerRegistryBenchmark.java | 31 import org.openjdk.jmh.annotations.Fork; 43 @Fork(1)
|
/external/grpc-grpc/src/core/lib/surface/ |
D | init.cc | 123 grpc_core::Fork::GlobalInit(); in grpc_init() 181 grpc_core::Fork::GlobalShutdown(); in grpc_shutdown()
|
/external/apache-commons-bcel/src/test/java/org/apache/bcel/ |
D | BCELBenchmark.java | 39 import org.openjdk.jmh.annotations.Fork; 48 @Fork(value = 1, jvmArgs = "-server")
|
/external/python/oauth2client/ |
D | CONTRIBUTING.md | 6 1. [Fork the repo][10], develop and [test][11] your code changes, add docs. 20 Fork `oauth2client` 24 requests. Fork the repository, and make your changes in the forked repository. 52 - Fork and clone the `oauth2client` repository to your GitHub account 53 by clicking the "Fork" button.
|