Home
last modified time | relevance | path

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

/freebsd/contrib/elftoolchain/libelftc/
H A Delftc_timestamp.c38 long long source_date_epoch; in elftc_timestamp() local
43 source_date_epoch = strtoll(env, &eptr, 10); in elftc_timestamp()
46 if (source_date_epoch < 0) in elftc_timestamp()
50 *timestamp = source_date_epoch; in elftc_timestamp()
/freebsd/contrib/pkgconf/cli/spdxtool/
H A Dutil.c254 const char *source_date_epoch = getenv("SOURCE_DATE_EPOCH"); in spdxtool_util_get_current_iso8601_time() local
256 if (source_date_epoch != NULL && *source_date_epoch != '\0') in spdxtool_util_get_current_iso8601_time()
257 now = (time_t) strtoll(source_date_epoch, NULL, 10); in spdxtool_util_get_current_iso8601_time()
/freebsd/contrib/pkgconf/cli/bomtool/
H A Dmain.c161 const char *source_date_epoch = getenv("SOURCE_DATE_EPOCH"); in write_sbom_header() local
163 if (source_date_epoch != NULL && *source_date_epoch != '\0') in write_sbom_header()
164 t = (time_t) strtoll(source_date_epoch, NULL, 10); in write_sbom_header()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td8630 def source_date_epoch : Separate<["-"], "source-date-epoch">,