Home | History | Annotate | Download | only in upload_system_symbols

Lines Matching refs:fq

318 	fq := &findQueue{
322 fq.WorkerPool = StartWorkerPool(12, fq.worker)
325 fq.findLibsInPath(path.Join(root, p))
328 close(fq.queue)
329 fq.Wait()
335 func (fq *findQueue) findLibsInPath(loc string) {
351 fq.findLibsInPath(fp)
359 fq.queue <- fp
368 func (fq *findQueue) worker() {
369 for fp := range fq.queue {
388 fq.dumpMachOFile(fp, fatArch.File)
398 fq.dumpMachOFile(fp, thinFile)
406 func (fq *findQueue) dumpMachOFile(fp string, image *macho.File) {
418 fq.dq.DumpSymbols(fp, arch)