Home
last modified time | relevance | path

Searched refs:timestamp (Results 126 – 150 of 167) sorted by relevance

1234567

/php-src/ext/phar/
H A Dstream.c477 data->internal_file->timestamp = time(0); in phar_stream_flush()
503 ssb->sb.st_mtime = data->timestamp; in phar_dostat()
504 ssb->sb.st_atime = data->timestamp; in phar_dostat()
505 ssb->sb.st_ctime = data->timestamp; in phar_dostat()
511 ssb->sb.st_mtime = data->timestamp; in phar_dostat()
512 ssb->sb.st_atime = data->timestamp; in phar_dostat()
513 ssb->sb.st_ctime = data->timestamp; in phar_dostat()
H A Dfunc_interceptors.c612 sb.st_mtime = data->timestamp; in phar_file_stat()
613 sb.st_atime = data->timestamp; in phar_file_stat()
614 sb.st_ctime = data->timestamp; in phar_file_stat()
623 sb.st_mtime = data->timestamp; in phar_file_stat()
624 sb.st_atime = data->timestamp; in phar_file_stat()
625 sb.st_ctime = data->timestamp; in phar_file_stat()
H A Dzip.c71 entry->timestamp = PHAR_GET_32(h.time.time); in phar_zip_process_extra()
416 entry.timestamp = phar_zip_d2u_time(zipentry.timestamp, zipentry.datestamp); in phar_parse_zipfile()
924 phar_zip_u2d_time(entry->timestamp, local.timestamp, local.datestamp); in phar_zip_changed_apply_int()
925 memcpy(central.timestamp, local.timestamp, sizeof(local.timestamp)); in phar_zip_changed_apply_int()
1269 entry.timestamp = time(NULL); in phar_zip_flush()
H A Dtar.c479 entry.timestamp = phar_tar_number(hdr->mtime, sizeof(hdr->mtime)); in phar_parse_tarfile()
764 if (FAILURE == phar_tar_octal(header.mtime, entry->timestamp, sizeof(header.mtime)-1)) { in phar_tar_writeheaders_int()
968 entry.timestamp = time(NULL); in phar_tar_flush()
H A Dphar.c1159 PHAR_GET_32(buffer, entry.timestamp); in phar_parse_pharfile()
1162 mydata->min_timestamp = entry.timestamp; in phar_parse_pharfile()
1163 mydata->max_timestamp = entry.timestamp; in phar_parse_pharfile()
1165 if (mydata->min_timestamp > entry.timestamp) { in phar_parse_pharfile()
1166 mydata->min_timestamp = entry.timestamp; in phar_parse_pharfile()
1167 } else if (mydata->max_timestamp < entry.timestamp) { in phar_parse_pharfile()
1168 mydata->max_timestamp = entry.timestamp; in phar_parse_pharfile()
/php-src/ext/date/tests/
H A Dbug68549-dst-transition-DateTime-setTimezone.phpt132 foreach ($timestamps as $timestamp) {
134 $dt = DateTime::createFromFormat('U', $timestamp);
136 …printf("%s %d -> %d %s\n", $timezone, $timestamp, $dt->getTimestamp(), $dt->format(DateTimeInterfa…
/php-src/main/streams/
H A Dmemory.c189 time_t timestamp = 0; in php_stream_memory_stat() local
200 ssb->sb.st_mtime = timestamp; in php_stream_memory_stat()
201 ssb->sb.st_atime = timestamp; in php_stream_memory_stat()
202 ssb->sb.st_ctime = timestamp; in php_stream_memory_stat()
/php-src/ext/calendar/
H A Dcalendar_arginfo.h74 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timestamp, IS_LONG, 1, "null")
/php-src/ext/zip/
H A Dphp_zip.stub.php702 public function setMtimeIndex(int $index, int $timestamp, int $flags = 0): bool {}
705 public function setMtimeName(string $name, int $timestamp, int $flags = 0): bool {}
/php-src/.github/workflows/
H A Dpush.yml118 append-timestamp: false
172 append-timestamp: false
248 append-timestamp: false
/php-src/ext/date/
H A Dphp_date.c1258 zend_long timestamp; in php_strftime() local
1279 timestamp = (zend_long) php_time(); in php_strftime()
1382 zend_long timestamp; in PHP_FUNCTION() local
1395 timestamp = (zend_long) php_time(); in PHP_FUNCTION()
1438 zend_long timestamp; in PHP_FUNCTION() local
1449 timestamp = (zend_long) php_time(); in PHP_FUNCTION()
1473 add_index_long(return_value, 0, timestamp); in PHP_FUNCTION()
3827 zend_long timestamp; in PHP_FUNCTION() local
3843 zend_long timestamp; in PHP_METHOD() local
3926 zend_long timestamp; in PHP_FUNCTION() local
[all …]
/php-src/ext/com_dotnet/
H A Dcom_extension.stub.php335 function variant_date_from_timestamp(int $timestamp): variant {} argument
H A Dcom_variant.c965 zend_long timestamp; in PHP_FUNCTION() local
972 &timestamp)) { in PHP_FUNCTION()
976 if (timestamp < 0) { in PHP_FUNCTION()
983 ttstamp = timestamp; in PHP_FUNCTION()
H A Dcom_extension_arginfo.h67 ZEND_ARG_TYPE_INFO(0, timestamp, IS_LONG, 0)
/php-src/ext/opcache/
H A DZendAccelerator.h123 accel_time_t timestamp; /* the script modification time */ member
H A DZendAccelerator.c1128 if (persistent_script->timestamp == 0) { in do_validate_timestamps()
1136 if (zend_get_file_handle_timestamp(file_handle, NULL) == persistent_script->timestamp) { in do_validate_timestamps()
1151 ret = zend_get_file_handle_timestamp(&ps_handle, NULL) == persistent_script->timestamp in do_validate_timestamps()
1161 if (persistent_script->timestamp == 0) { in validate_timestamp_and_record()
1370 persistent_script->timestamp = 0; in zend_accel_discard_script()
1579 (new_persistent_script->timestamp == existing_persistent_script->timestamp))) { in cache_script_in_shared_memory()
1733 accel_time_t timestamp = 0; in opcache_compile_file() local
1768timestamp = zend_get_file_handle_timestamp(file_handle, ZCG(accel_directives).max_file_size > 0 ? … in opcache_compile_file()
1773 if (timestamp == 0) { in opcache_compile_file()
1780 … ((accel_time_t)(ZCG(request_time) - ZCG(accel_directives).file_update_protection) < timestamp)) { in opcache_compile_file()
[all …]
H A Dzend_file_cache.c198 accel_time_t timestamp; member
938 info->timestamp = script->timestamp;
1830 zend_get_file_handle_timestamp(file_handle, NULL) != info.timestamp) {
/php-src/ext/pdo_pgsql/tests/
H A Dbug62498.phpt198 string(9) "timestamp"
H A Dbug62498-32bit.phpt199 string(9) "timestamp"
/php-src/ext/intl/
H A Dphp_intl_arginfo.h32 ZEND_ARG_TYPE_INFO(0, timestamp, IS_DOUBLE, 0)
76 ZEND_ARG_TYPE_INFO(0, timestamp, IS_DOUBLE, 0)
138 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timestamp, IS_DOUBLE, 1, "null")
192 ZEND_ARG_TYPE_INFO(0, timestamp, IS_DOUBLE, 0)
718 ZEND_ARG_TYPE_INFO(0, timestamp, IS_DOUBLE, 0)
/php-src/ext/intl/calendar/
H A Dcalendar_arginfo.h17 ZEND_ARG_TYPE_INFO(0, timestamp, IS_DOUBLE, 0)
113 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timestamp, IS_DOUBLE, 1, "null")
164 ZEND_ARG_TYPE_INFO(0, timestamp, IS_DOUBLE, 0)
/php-src/ext/intl/timezone/
H A Dtimezone_arginfo.h68 ZEND_ARG_TYPE_INFO(0, timestamp, IS_DOUBLE, 0)
/php-src/ext/pdo_firebird/
H A Dfirebird_statement.c487 ISC_TIMESTAMP timestamp = php_get_isc_timestamp_from_sqldata(var->sqldata); in pdo_firebird_stmt_get_col() local
488 isc_decode_timestamp(&timestamp, &t); in pdo_firebird_stmt_get_col()
/php-src/build/
H A Dconfig.sub7 timestamp='2023-06-26'
77 GNU config.sub ($timestamp)
91 echo "$timestamp" ; exit ;;
H A Dconfig.guess7 timestamp='2023-06-23'
60 GNU config.guess ($timestamp)
75 echo "$timestamp" ; exit ;;

Completed in 140 milliseconds

1234567