Home
last modified time | relevance | path

Searched refs:start (Results 1 – 25 of 51) sorted by relevance

123

/build/soong/ui/status/
Dcritical_path_test.go34 func (t *testCriticalPath) start(id int, startTime time.Duration, outputs, inputs []string) { func
67 cp.start(0, 0, []string{"a"}, nil)
68 cp.start(1, 0, []string{"a"}, nil)
83 cp.start(0, 0, []string{"a"}, nil)
85 cp.start(1, 1000, []string{"b"}, []string{"a"})
87 cp.start(2, 3000, []string{"c"}, []string{"b"})
101 cp.start(0, 0, []string{"a"}, nil)
103 cp.start(1, 1000, []string{"b"}, []string{"a"})
104 cp.start(2, 1000, []string{"c"}, []string{"a"})
107 cp.start(3, 3000, []string{"d"}, []string{"b", "c"})
[all …]
Dcritical_path.go38 start, end time.Time member
61 start := cp.clock.Now()
62 if cp.start.IsZero() {
63 cp.start = start
65 cp.running[action] = start
69 if start, ok := cp.running[result.Action]; ok {
83 duration := end.Sub(start)
112 if !cp.start.IsZero() {
113 elapsedTime := cp.end.Sub(cp.start).Round(time.Second)
Dninja_test.go38 start := time.Now()
42 if g, w := time.Since(start), NINJA_READER_CLOSE_TIMEOUT; g >= w {
/build/soong/ui/tracer/
Dstatus.go32 start time.Time member
59 start: time.Now(),
64 start, ok := s.running[result.Action]
69 s.cpus[start.cpu] = false
79 Time: uint64(start.start.UnixNano()) / 1000,
80 Dur: uint64(time.Since(start.start).Nanoseconds()) / 1000,
82 Tid: uint64(start.cpu),
/build/soong/ui/metrics/
Dtime.go33 start time.Time member
52 t.activeEvents = append(t.activeEvents, timeEvent{name: name, desc: desc, start: _now()})
61 realTime := uint64(_now().Sub(lastEvent.start).Nanoseconds())
66 StartTime: proto.Uint64(uint64(lastEvent.start.UnixNano())),
Dtime_test.go35 start: startTime,
/build/soong/ui/terminal/
Dformat.go28 start time.Time member
39 start: time.Now(),
88 fmt.Fprintf(buf, "%.1f", float64(counts.FinishedActions)/time.Since(s.start).Seconds())
95 fmt.Fprintf(buf, "%.3f", time.Since(s.start).Seconds())
Dsmart_status.go240 start := "\r" + ansi.bold()
242 fmt.Fprint(s.writer, start, str, end)
/build/make/tools/atree/
Dfiles.cpp88 const char* start = q; in split_line() local
90 if (len > 2 && *start == '"' && start[len - 1] == '"') { in split_line()
91 start++; in split_line()
94 out->push_back(string(start, len)); in split_line()
103 const char* start = q; in split_line() local
105 if (len > 2 && *start == '"' && start[len - 1] == '"') { in split_line()
106 start++; in split_line()
109 out->push_back(string(start, len)); in split_line()
/build/soong/cc/
Drs.go39 (echo '${out}: \' && cat ${depFiles} | awk 'start { sub(/( \\)?$$/, " \\"); print } /:/ { start=1 }…
/build/make/tools/
Dgenerate-self-extracting-archive.py95 def _generate_extract_command(start, size, extract_name): argument
110 start_str = ('+%d' % (start + 1)).rjust(_MAX_OFFSET_WIDTH + 1)
112 raise Exception('Start offset too large (%d)' % start)
/build/make/tools/releasetools/
Drangelib.py267 start = None
271 start = p
273 offset += p-start
274 start = None
276 out.append(offset + p - start)
Dtest_merge_target_files.py46 def getRelPaths(start, filepaths): argument
48 os.path.relpath(path=filepath, start=start) for filepath in filepaths)
/build/soong/cuj/
Dcuj.go100 if start, ok := os.LookupEnv("TRACE_BEGIN_SOONG"); ok {
101 if !strings.HasSuffix(start, "N") {
102 if start_time, err := strconv.ParseUint(start, 10, 64); err == nil {
/build/blueprint/bootstrap/
Dcleanup.go119 start := precedingFields
121 filePath := strings.Join(fields[start:end], fieldSeperator)
/build/blueprint/parser/
Dmodify.go71 func (list *PatchList) Add(start, end int, replacement string) error { argument
72 patch := Patch{start, end, replacement}
/build/soong/cmd/host_bionic_inject/
Dhost_bionic_inject.go113 start, err := findSymbol(symbols, "_start")
117 return start.Value, nil
/build/soong/zip/
Dzip.go763 for start := int64(0); start < fileSize; start += parallelBlockSize {
764 sr := io.NewSectionReader(r, start, parallelBlockSize)
770 last := !(start+parallelBlockSize < fileSize)
772 if start >= windowSize {
773 dict, err = ioutil.ReadAll(io.NewSectionReader(r, start-windowSize, windowSize))
/build/make/tools/docker/
DREADME.md12 Then you can start up new instances with:
/build/make/core/
Dcopy_headers.mk31 $(call pretty-error,LOCAL_COPY_HEADERS_TO may not start with / or ../ : $(LOCAL_COPY_HEADERS_TO))
/build/soong/third_party/zip/
Dwriter.go69 start := w.cw.count
127 size := uint64(end - start)
128 offset := uint64(start)
/build/make/tools/droiddoc/templates-ndk/
Dmacros_override.cs2 <?cs # pre is an HTML string to start the list, post is an HTML string to close the list ?>
/build/soong/cmd/soong_ui/
Dmain.go193 if start, ok := os.LookupEnv("TRACE_BEGIN_SOONG"); ok {
194 if !strings.HasSuffix(start, "N") {
195 if start_time, err := strconv.ParseUint(start, 10, 64); err == nil {
/build/blueprint/
DCONTRIBUTING.md13 Before you start working on a larger contribution, you should get in touch with
/build/make/tools/zipalign/
DREADME.txt16 with a particular alignment relative to the start of the file. This

123