Lines Matching full:modtime
52 time_t modtime = 0; /* Modification time */ in cupsGetPPD() local
61 if (cupsGetPPD3(CUPS_HTTP_DEFAULT, name, &modtime, pg->ppd_filename, in cupsGetPPD()
87 time_t modtime = 0; /* Modification time */ in cupsGetPPD2() local
92 if (cupsGetPPD3(http, name, &modtime, pg->ppd_filename, in cupsGetPPD2()
104 * The "modtime" parameter contains the modification time of any
126 time_t *modtime, /* IO - Modification time */ in cupsGetPPD3() argument
148 DEBUG_printf(("cupsGetPPD3(http=%p, name=\"%s\", modtime=%p(%d), buffer=%p, " in cupsGetPPD3()
149 "bufsize=%d)", http, name, modtime, in cupsGetPPD3()
150 modtime ? (int)*modtime : 0, buffer, (int)bufsize)); in cupsGetPPD3()
159 if (!modtime) in cupsGetPPD3()
161 DEBUG_puts("2cupsGetPPD3: No modtime, returning NULL."); in cupsGetPPD3()
300 if (*modtime >= ppdinfo.st_mtime) in cupsGetPPD3()
307 …DEBUG_printf(("2cupsGetPPD3: Returning ok, filename=\"%s\", modtime=%ld.", buffer, (long)ppdinfo.s… in cupsGetPPD3()
308 *modtime = ppdinfo.st_mtime; in cupsGetPPD3()
414 if (*modtime > 0) in cupsGetPPD3()
416 httpGetDateString(*modtime)); in cupsGetPPD3()
428 *modtime = httpGetDateTime(httpGetField(http2, HTTP_FIELD_DATE)); in cupsGetPPD3()