Home
last modified time | relevance | path

Searched refs:LogEntry (Results 1 – 4 of 4) sorted by relevance

/build/soong/ui/build/paths/
Dlogs.go36 type LogEntry struct { struct
135 func SendLog(logSocket string, entry *LogEntry, done chan interface{}) { argument
139 func sendLog(logSocket string, lookup socketAddrFunc, timeout time.Duration, entry *LogEntry, done … argument
156 func LogListener(ctx context.Context, logSocket string) (chan *LogEntry, error) {
160 func logListener(ctx context.Context, logSocket string, lookup socketAddrFunc) (chan *LogEntry, err…
161 ret := make(chan *LogEntry, 5)
202 entry := &LogEntry{}
Dlogs_test.go78 sendLog(socket, lookup, 0, &LogEntry{
95 ref := LogEntry{
119 sendLog(filepath.Join(d, "missing"), getSocketAddr, 0, &LogEntry{}, make(chan interface{}))
131 sendLog(f, getSocketAddr, 0, &LogEntry{}, make(chan interface{}))
147 sendLog(f, getSocketAddr, timeoutDuration, &LogEntry{
/build/soong/cmd/path_interposer/
Dmain.go75 sendLog func(logSocket string, entry *paths.LogEntry, done chan interface{})
118 opts.sendLog(interposer+"_log", &paths.LogEntry{
Dmain_test.go149 logFunc := func(logSocket string, entry *paths.LogEntry, done chan interface{}) {