/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/ |
StatsTraceContext.java | 43 private final StreamTracer[] tracers; field in class:StatsTraceContext 56 StreamTracer[] tracers = new StreamTracer[factories.size()]; local 57 for (int i = 0; i < tracers.length; i++) { 58 tracers[i] = factories.get(i).newClientStreamTracer(callOptions, headers); 60 return new StatsTraceContext(tracers); 71 StreamTracer[] tracers = new StreamTracer[factories.size()]; local 72 for (int i = 0; i < tracers.length; i++) { 73 tracers[i] = factories.get(i).newServerStreamTracer(fullMethodName, headers); 75 return new StatsTraceContext(tracers); 79 StatsTraceContext(StreamTracer[] tracers) { [all...] |
/external/grpc-grpc/tools/run_tests/sanity/ |
check_tracer_sanity.py | 26 tracers = [] variable 35 tracers.append(o[1]) 40 for t in tracers:
|
/external/autotest/client/tests/tracing_microbenchmark/ |
tracing_microbenchmark.py | 6 import tracers 19 tracer_class = getattr(tracers, tracer)
|
/external/blktrace/iowatcher/ |
Makefile | 21 iowatcher: blkparse.o plot.o main.o tracers.o mpstat.o fio.o
|
/external/python/cpython3/Lib/idlelib/ |
configdialog.py | 86 tracers.attach() 430 # # Define tk vars and register var and callback with tracers. 525 self.font_name = tracers.add(StringVar(self), self.var_changed_font) 526 self.font_size = tracers.add(StringVar(self), self.var_changed_font) 527 self.font_bold = tracers.add(BooleanVar(self), self.var_changed_font) 528 self.space_num = tracers.add(IntVar(self), ('main', 'Indent', 'num-spaces')) 2186 tracers = VarTrace() variable [all...] |
/external/python/cpython3/Lib/idlelib/idle_test/ |
test_configdialog.py | 13 from idlelib.configdialog import idleConf, changes, tracers 43 tracers.detach() 44 tracers.clear() 75 tracers.detach() 86 tracers.attach() 266 tracers.detach() 304 tracers.attach() 716 tracers.detach() 755 tracers.attach() [all...] |
htest.py | 235 'msg': "There are two tracers which can be toggled using a checkbox.\n" 238 "If both the tracers are 'on', the output from the tracer which "
|
/art/test/991-field-trace-2/src/art/ |
Test991.java | 183 FieldTracer[] tracers = new FieldTracer[] { local 197 for (FieldTracer trace : tracers) {
|
/external/bcc/SPECS/ |
bcc.spec | 120 Summary: Standalone tool to run BCC tracers written in Lua 123 Standalone tool to run BCC tracers written in Lua
|
/art/test/989-method-trace-throw/src/art/ |
Test989.java | 260 MethodTracer[] tracers = new MethodTracer[] { local 269 for (MethodTracer t : tracers) {
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
htest.py | 239 'msg': "There are two tracers which can be toggled using a checkbox.\n" 242 "If both the tracers are 'on', the output from the tracer which "
|
/external/blktrace/ |
blktrace.c | 124 * We will use a mutex to guard each of the trace_buf list. The tracers 296 static LIST_HEAD(tracers); 1471 * tracers are done [all...] |
/external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/ |
NettyServerHandlerTest.java | 236 List<StreamTracer> tracers = statsTraceCtx.getTracersForTest(); local 237 assertEquals(1, tracers.size()); 238 assertSame(streamTracer, tracers.get(0)); [all...] |
/external/grpc-grpc-java/core/ |
grpc-core-1.14.0.jar | |