Lines Matching refs:t

287 	__int64 t;  in php_sys_stat_ex()  local
386 t = data.nFileSizeHigh; in php_sys_stat_ex()
387 t = t << 32; in php_sys_stat_ex()
388 t |= data.nFileSizeLow; in php_sys_stat_ex()
389 buf->st_size = t; in php_sys_stat_ex()
641 …th, int path_len, const char *realpath, int realpath_len, int is_dir, time_t t TSRMLS_DC) /* {{{ */ in realpath_cache_add()
682 bucket->expires = t + CWDG(realpath_cache_ttl); in realpath_cache_add()
691 static inline realpath_cache_bucket* realpath_cache_find(const char *path, int path_len, time_t t T… in realpath_cache_find()
703 if (CWDG(realpath_cache_ttl) && (*bucket)->expires < t) { in realpath_cache_find()
725 CWD_API realpath_cache_bucket* realpath_cache_lookup(const char *path, int path_len, time_t t TSRML… in realpath_cache_lookup()
727 return realpath_cache_find(path, path_len, t TSRMLS_CC); in realpath_cache_lookup()
750 static int tsrm_realpath_r(char *path, int start, int len, int *ll, time_t *t, int use_realpath, in… in tsrm_realpath_r() argument
793 j = tsrm_realpath_r(path, start, i-1, ll, t, use_realpath, 1, NULL TSRMLS_CC); in tsrm_realpath_r()
832 if (!*t) { in tsrm_realpath_r()
833 *t = time(0); in tsrm_realpath_r()
835 if ((bucket = realpath_cache_find(path, len, *t TSRMLS_CC)) != NULL) { in tsrm_realpath_r()
1007 j = tsrm_realpath_r(path, 0, j, ll, t, 0, is_dir, &directory TSRMLS_CC); in tsrm_realpath_r()
1023 j = tsrm_realpath_r(path, start, i + j, ll, t, use_realpath, is_dir, &directory TSRMLS_CC); in tsrm_realpath_r()
1069 j = tsrm_realpath_r(path, 1, j, ll, t, use_realpath, is_dir, &directory TSRMLS_CC); in tsrm_realpath_r()
1082 j = tsrm_realpath_r(path, start, i + j, ll, t, use_realpath, is_dir, &directory TSRMLS_CC); in tsrm_realpath_r()
1108 …j = tsrm_realpath_r(path, start, i-1, ll, t, save ? CWD_FILEPATH : use_realpath, 1, NULL TSRMLS_CC… in tsrm_realpath_r()
1140 realpath_cache_add(tmp, len, path, j, directory, *t TSRMLS_CC); in tsrm_realpath_r()
1157 time_t t; in virtual_file_ex() local
1291 t = CWDG(realpath_cache_ttl) ? 0 : -1; in virtual_file_ex()
1292 …path_length = tsrm_realpath_r(resolved_path, start, path_length, &ll, &t, use_realpath, 0, NULL TS… in virtual_file_ex()
1513 static void UnixTimeToFileTime(time_t t, LPFILETIME pft) /* {{{ */ in UnixTimeToFileTime() argument
1518 ll = Int32x32To64(t, 10000000) + 116444736000000000; in UnixTimeToFileTime()