Searched refs:filetime (Results 1 - 25 of 27) sorted by relevance

12

/external/curl/docs/examples/
H A Dftpgetinfo.c46 long filetime = -1; local
57 /* Ask for filetime */
69 res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime);
70 if((CURLE_OK == res) && (filetime >= 0)) {
71 time_t file_time = (time_t)filetime;
72 printf("filetime %s: %s", filename, ctime(&file_time));
/external/lzma/CPP/Windows/
H A DPropVariant.h32 p->filetime.dwLowDateTime = (DWORD)v;
33 p->filetime.dwHighDateTime = (DWORD)(v >> 32);
71 CPropVariant(const FILETIME &value) { vt = VT_FILETIME; wReserved1 = 0; filetime = value; }
H A DPropVariantConv.cpp70 case VT_FILETIME: ConvertFileTimeToString(prop.filetime, dest, true, true); return;
91 case VT_FILETIME: ConvertFileTimeToString(prop.filetime, dest, true, true); return;
H A DPropVariant.cpp159 SET_PROP_FUNC(const FILETIME &, VT_FILETIME, filetime)
294 case VT_FILETIME: return ::CompareFileTime(&filetime, &a.filetime);
/external/zlib/src/contrib/minizip/
H A Dminizip.c74 uLong filetime(f, tmzip, dt) function
98 uLong filetime(f, tmzip, dt) function
140 uLong filetime(f, tmzip, dt) function
411 filetime(filenameinzip,&zi.tmz_date,&zi.dosDate);
H A Dmztools.c57 unsigned int filetime = READ_16(header + 10); local
157 WRITE_16(header + 12, filetime);
/external/curl/tests/libtest/
H A Dlib1900.c54 int filetime; local
66 if(fscanf(f, "%d %s\n", &filetime, buf)) {
67 urltime[num_handles] = filetime;
/external/curl/lib/
H A Dfile.c456 data->info.filetime = (long)statbuf.st_mtime;
461 if(!Curl_meets_timecondition(data, (time_t)data->info.filetime)) {
483 time_t filetime = (time_t)statbuf.st_mtime; local
486 result = Curl_gmtime(filetime, &buffer);
H A Dgetinfo.c58 info->filetime = -1; /* -1 is an illegal time and thus means unknown */
140 *param_longp = data->info.filetime;
H A Dftp.c2162 data->info.filetime = (long)curl_getdate(buf, &secs);
2172 (data->info.filetime>=0) ) {
2173 time_t filetime = (time_t)data->info.filetime; local
2177 result = Curl_gmtime(filetime, &buffer);
2208 if((data->info.filetime > 0) && (data->set.timevalue > 0)) {
2212 if(data->info.filetime <= data->set.timevalue) {
2221 if(data->info.filetime > data->set.timevalue) {
H A Durldata.h1073 long filetime; /* If requested, this is might get set. Set to -1 if the time member in struct:PureInfo
H A Dhttp.c3668 data->info.filetime = (long)k->timeofdoc;
/external/lzma/CPP/7zip/UI/Common/
H A DPropIDUtils.cpp61 if ((prop.filetime.dwHighDateTime == 0 &&
62 prop.filetime.dwLowDateTime == 0) ||
63 !::FileTimeToLocalFileTime(&prop.filetime, &localFileTime))
H A DArchiveExtractCallback.cpp332 HRESULT CArchiveExtractCallback::GetTime(int index, PROPID propID, FILETIME &filetime, bool &filetimeIsDefined) argument
339 filetime = prop.filetime;
340 filetimeIsDefined = (filetime.dwHighDateTime != 0 || filetime.dwLowDateTime != 0);
H A DArchiveExtractCallback.h217 HRESULT GetTime(int index, PROPID propID, FILETIME &filetime, bool &filetimeIsDefined);
H A DOpenArchive.cpp756 ft = prop.filetime;
1113 pi.FileTime = prop.filetime;
1124 pi.FileTime = prop.filetime;
/external/lzma/CPP/Common/
H A DMyWindows.h175 FILETIME filetime; member in union:tagPROPVARIANT::__anon13085
/external/lzma/CPP/7zip/Bundles/SFXSetup/
H A DExtractCallbackSfx.cpp139 case VT_FILETIME: _processedFileInfo.MTime = prop.filetime; break;
/external/curl/src/
H A Dtool_operate.c1667 long filetime = -1; local
1668 curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime);
1669 if(filetime >= 0) {
1671 times.actime = (time_t)filetime;
1672 times.modtime = (time_t)filetime;
/external/lzma/CPP/7zip/Archive/7z/
H A D7zHandlerOut.cpp151 ft = prop.filetime.dwLowDateTime | ((UInt64)prop.filetime.dwHighDateTime << 32);
/external/lzma/CPP/7zip/UI/Console/
H A DList.cpp620 PrintTime(temp + tempPos, &prop.filetime);
752 t.Val = prop.filetime;
/external/sonivox/jet_tools/JetCreator/
H A DJetUtils.py227 filetime = time.ctime(os.path.getmtime(fileName))
228 return filetime
/external/lzma/CPP/7zip/UI/Client7z/
H A DClient7z.cpp310 _processedFileInfo.MTime = prop.filetime;
/external/lzma/CPP/7zip/UI/FileManager/
H A DExtractCallback.cpp651 ft = prop.filetime;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 6708 milliseconds

12