Home
last modified time | relevance | path

Searched refs:Thread (Results 1 – 9 of 9) sorted by relevance

/build/soong/ui/build/
Dcontext.go41 Thread tracer.Thread member
48 c.Tracer.Begin(desc, c.Thread)
51 c.Metrics.EventTracer.Begin(name, desc, c.Thread)
58 c.Tracer.End(c.Thread)
61 c.Metrics.SetTimeMetrics(c.Metrics.EventTracer.End(c.Thread))
68 c.Tracer.Complete(desc, c.Thread, begin, end)
/build/soong/ui/tracer/
Dtracer.go37 type Thread uint64 type
40 MainThread = Thread(iota)
41 MaxInitThreads = Thread(iota)
45 Begin(name string, thread Thread) argument
46 End(thread Thread) argument
47 Complete(name string, thread Thread, begin, end uint64) argument
53 NewThread(name string) Thread
191 func (t *tracerImpl) defineThread(thread Thread, name string) {
205 func (t *tracerImpl) NewThread(name string) Thread {
209 ret := Thread(t.nextTid)
[all …]
/build/make/tools/product_config/src/com/android/build/config/
DKatiCommandImpl.java94 final Thread stdoutThread = new Thread(new OutputReader(process.getInputStream(), stdout), in run()
99 final Thread stderrThread = new Thread(new OutputReader(process.getErrorStream(), stderr), in run()
129 private static void joinThread(Thread thread) { in joinThread()
/build/make/tools/rbcrun/
Dhost_test.go56 func testSetup(t *testing.T, env []string) *starlark.Thread {
58 thread := &starlark.Thread{
59 Load: func(thread *starlark.Thread, module string) (starlark.StringDict, error) {
83 thread := &starlark.Thread{
84 Load: func(thread *starlark.Thread, module string) (starlark.StringDict, error) {
132 thread.Load = func(thread *starlark.Thread, module string) (starlark.StringDict, error) {
Dhost.go62 func loader(thread *starlark.Thread, module string) (starlark.StringDict, error) { argument
92 childThread := &starlark.Thread{Name: "exec " + module, Load: thread.Load}
115 func fileExists(_ *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, argument
128 func regexMatch(_ *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, argument
146 func wildcard(_ *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, argument
177 func shell(_ *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, argument
256 mainThread := &starlark.Thread{
258 Print: func(_ *starlark.Thread, msg string) { fmt.Println(msg) },
/build/soong/ui/metrics/
Devent.go140 func (t *EventTracer) Begin(name, desc string, _ tracer.Thread) { argument
146 func (t *EventTracer) End(tracer.Thread) soong_metrics_proto.PerfInfo { argument
/build/soong/cc/
Dsanitize.go174 Thread *bool `android:"arch_variant"` member
305 …if found, globalSanitizers = removeFromList("thread", globalSanitizers); found && s.Thread == nil {
306 s.Thread = boolPtr(true)
460 s.Thread = nil
469 s.Thread = nil
474 …roid.Windows && (Bool(s.All_undefined) || Bool(s.Undefined) || Bool(s.Address) || Bool(s.Thread) ||
481 if Bool(s.Address) || Bool(s.Thread) || Bool(s.Hwaddress) || ctx.Config().DisableScudo() {
487 s.Thread = nil
756 return sanitize.Properties.Sanitize.Thread
798 sanitize.Properties.Sanitize.Thread = boolPtr(b)
[all …]
/build/soong/cmd/multiproduct_kati/
Dmain.go425 Thread: mpctx.Tracer.NewThread(product),
/build/make/tools/releasetools/
Dcommon.py2982 th = threading.Thread(target=run)
3054 threads = [threading.Thread(target=worker)