Lines Matching refs:us
429 struct url_stat us; in fetch() local
525 r = fetchStat(url, &us, flags); in fetch()
534 if (us.size == -1) in fetch()
537 printf("%jd\n", (intmax_t)us.size); in fetch()
580 f = fetchXGet(url, &us, flags); in fetch()
603 if (us.size == -1) { in fetch()
605 } else if (us.size != S_size) { in fetch()
607 URL, (intmax_t)S_size, (intmax_t)us.size); in fetch()
621 if (us.size == -1 && !o_stdout && v_level > 0) in fetch()
627 if (us.size != -1) in fetch()
629 (intmax_t)us.size, (long)us.mtime); in fetch()
638 if (!F_flag && us.mtime && sb.st_mtime != us.mtime && tries == 1) { in fetch()
653 } else if (us.size != -1) { in fetch()
654 if (us.size == sb.st_size) in fetch()
657 if (sb.st_size > us.size) { in fetch()
661 (intmax_t)sb.st_size, (intmax_t)us.size); in fetch()
694 if (sb.st_size == us.size && sb.st_mtime == us.mtime) in fetch()
712 if ((f = fetchXGet(url, &us, flags)) == NULL) { in fetch()
750 stat_start(&xs, path, us.size, count); in fetch()
758 if (us.size != -1 && us.size - count < B_size && in fetch()
759 us.size - count >= 0) in fetch()
760 size = us.size - count; in fetch()
802 if (!n_flag && us.mtime && !o_stdout && of != NULL && in fetch()
807 tv[0].tv_sec = (long)(us.atime ? us.atime : us.mtime); in fetch()
808 tv[1].tv_sec = (long)us.mtime; in fetch()
837 if (us.size != -1 && count < us.size) { in fetch()
839 path, (intmax_t)count, (intmax_t)us.size); in fetch()
854 if (sigalrm && us.size == -1) { in fetch()