/build/soong/ui/status/ |
D | critical_path_test.go | 34 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 …]
|
D | critical_path.go | 38 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)
|
D | ninja_test.go | 38 start := time.Now() 42 if g, w := time.Since(start), NINJA_READER_CLOSE_TIMEOUT; g >= w {
|
/build/soong/ui/tracer/ |
D | status.go | 32 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/ |
D | time.go | 33 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())),
|
D | time_test.go | 35 start: startTime,
|
/build/soong/ui/terminal/ |
D | format.go | 28 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())
|
D | smart_status.go | 240 start := "\r" + ansi.bold() 242 fmt.Fprint(s.writer, start, str, end)
|
/build/make/tools/atree/ |
D | files.cpp | 88 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/ |
D | rs.go | 39 (echo '${out}: \' && cat ${depFiles} | awk 'start { sub(/( \\)?$$/, " \\"); print } /:/ { start=1 }…
|
/build/make/tools/ |
D | generate-self-extracting-archive.py | 95 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/ |
D | rangelib.py | 267 start = None 271 start = p 273 offset += p-start 274 start = None 276 out.append(offset + p - start)
|
D | test_merge_target_files.py | 46 def getRelPaths(start, filepaths): argument 48 os.path.relpath(path=filepath, start=start) for filepath in filepaths)
|
/build/soong/cuj/ |
D | cuj.go | 100 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/ |
D | cleanup.go | 119 start := precedingFields 121 filePath := strings.Join(fields[start:end], fieldSeperator)
|
/build/blueprint/parser/ |
D | modify.go | 71 func (list *PatchList) Add(start, end int, replacement string) error { argument 72 patch := Patch{start, end, replacement}
|
/build/soong/cmd/host_bionic_inject/ |
D | host_bionic_inject.go | 113 start, err := findSymbol(symbols, "_start") 117 return start.Value, nil
|
/build/soong/zip/ |
D | zip.go | 763 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/ |
D | README.md | 12 Then you can start up new instances with:
|
/build/make/core/ |
D | copy_headers.mk | 31 $(call pretty-error,LOCAL_COPY_HEADERS_TO may not start with / or ../ : $(LOCAL_COPY_HEADERS_TO))
|
/build/soong/third_party/zip/ |
D | writer.go | 69 start := w.cw.count 127 size := uint64(end - start) 128 offset := uint64(start)
|
/build/make/tools/droiddoc/templates-ndk/ |
D | macros_override.cs | 2 <?cs # pre is an HTML string to start the list, post is an HTML string to close the list ?>
|
/build/soong/cmd/soong_ui/ |
D | main.go | 193 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/ |
D | CONTRIBUTING.md | 13 Before you start working on a larger contribution, you should get in touch with
|
/build/make/tools/zipalign/ |
D | README.txt | 16 with a particular alignment relative to the start of the file. This
|