Searched defs:tm (Results 1 - 25 of 26) sorted by relevance

12

/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/transmngr/module/
H A DtmIPCModule.h95 * tm should be null coming into this method. This does NOT delete tm
103 static tmTransactionManager *tm; member in class:tmIPCModule
H A DtmIPCModule.cpp66 tmTransactionManager *tmIPCModule::tm; member in class:tmIPCModule
73 if (!tm)
79 if (tm) {
80 delete tm;
81 tm = nsnull;
91 if (!tm && (InitInternal() < 0))
106 tm->HandleTransaction(trans);
132 tm = new tmTransactionManager();
133 if (tm)
134 return tm
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pcbios/
H A Drtc_time.c75 struct tm tm; local
90 tm.tm_sec = read_component ( RTC_SEC );
91 tm.tm_min = read_component ( RTC_MIN );
98 tm.tm_hour = hour;
99 tm.tm_mday = read_component ( RTC_MDAY );
100 tm.tm_mon = ( read_component ( RTC_MON ) - 1 );
101 tm.tm_year = ( read_component ( RTC_YEAR ) +
106 "(%s,%d-hour)\n", ( tm.tm_year + 1900 ), ( tm
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dtime.h13 struct tm { struct
49 extern time_t mktime ( struct tm *tm );
/vbox/src/VBox/Devices/PC/ipxe/src/tests/
H A Dtime_test.c36 struct tm tm; member in struct:mktime_test
70 .tm = { \
90 time_t time = mktime ( &(test)->tm ); \
92 ok ( (test)->tm.tm_wday == (test)->wday ); \
93 ok ( (test)->tm.tm_yday == (test)->yday ); \
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/
H A Dstrptime.c85 strptime(const char *buf, const char *fmt, struct tm *tm) argument
172 new_fmt, tm);
181 bp = find_string(bp, &tm->tm_wday, _ctloc(day),
189 bp = find_string(bp, &tm->tm_mon, _ctloc(mon),
200 i += tm->tm_year % 100;
202 tm->tm_year = i;
208 bp = conv_num(bp, &tm->tm_mday, 1, 31);
216 bp = conv_num(bp, &tm->tm_hour, 0, 23);
224 bp = conv_num(bp, &tm
[all...]
H A Dstrftime.c77 static char * _fmt(const char *, const struct tm * const, char *, const char * const, int *);
96 const struct tm * __restrict timeptr
132 const struct tm * const t,
289 struct tm tm; local
294 tm = *t;
295 mkt = mktime(&tm);
513 struct tm tmp;
H A DTime.c82 localsub(const time_t * const timep, const long offset, struct tm * const tmp);
95 struct tm * const tmp
231 tmcomp(const struct tm * const atmp, const struct tm * const btmp)
246 struct tm * const tmp,
247 void (* const funcp)(const time_t*, long, struct tm*),
260 struct tm yourtm, mytm;
402 time2(struct tm * const tmp, void (* const funcp)(const time_t*, long, struct tm*), argument
418 struct tm * cons
245 time2sub( struct tm * const tmp, void (* const funcp)(const time_t*, long, struct tm*), const long offset, int * const okayp, const int do_norm_secs ) argument
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dtime.h56 struct tm { struct
99 unsigned __cdecl _getsystime(struct tm*);
100 unsigned __cdecl _setsystime(struct tm*,unsigned);
107 char* __cdecl asctime(const struct tm*);
113 struct tm* __cdecl _gmtime32(const __time32_t*);
114 struct tm* __cdecl _gmtime64(const __time64_t*);
115 struct tm* __cdecl _localtime32(const __time32_t*);
116 errno_t __cdecl _localtime32_s(struct tm*, const __time64_t*);
117 struct tm* __cdecl _localtime64(const __time64_t*);
118 errno_t __cdecl _localtime64_s(struct tm*, cons
130 mktime(struct tm *tm) argument
[all...]
H A Dwchar.h69 struct tm { struct
449 wchar_t* __cdecl _wasctime(const struct tm*);
450 size_t __cdecl wcsftime(wchar_t*,size_t,const wchar_t*,const struct tm*);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dtime.h56 struct tm { struct
99 unsigned __cdecl _getsystime(struct tm*);
100 unsigned __cdecl _setsystime(struct tm*,unsigned);
105 char* __cdecl asctime(const struct tm*);
111 struct tm* __cdecl _gmtime32(const __time32_t*);
112 struct tm* __cdecl _gmtime64(const __time64_t*);
113 struct tm* __cdecl _localtime32(const __time32_t*);
114 struct tm* __cdecl _localtime64(const __time64_t*);
115 __time32_t __cdecl _mktime32(struct tm*);
116 __time64_t __cdecl _mktime64(struct tm*);
126 mktime(struct tm *tm) argument
[all...]
H A Dwchar.h79 struct tm { struct
388 wchar_t* __cdecl _wasctime(const struct tm*);
389 size_t __cdecl wcsftime(wchar_t*,size_t,const wchar_t*,const struct tm*);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dtime.h15 arithmetic types capable of representing times; and struct tm which holds
19 implementation-defined. The tm structure shall contain at least the following
47 struct tm Holds the components of a calendar time; or broken-down time.
55 time_t mktime (struct tm *timeptr);
59 char * asctime (const struct tm *timeptr);
61 struct tm * gmtime (const time_t *timer);
62 time_t timegm (struct tm*);
63 struct tm * localtime (const time_t *timer);
66 const struct tm * __restrict timeptr);
67 char * strptime (const char *, const char * format, struct tm*);
141 struct tm { struct
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Dncr.c208 struct tm *localtime_r (const time_t *clock, struct tm *result)
210 struct tm *tmPtr;
226 * that case, we also return a NULL pointer and the struct tm
248 struct tm *gmtime_r (const time_t *clock, struct tm *result)
250 struct tm *tmPtr;
313 char *asctime_r (const struct tm *tm, char *buf, int buflen) argument
327 cbuf = asctime (tm);
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dbigfile.c113 PRExplodedTime tm; local
123 PR_ExplodeTime(info->creationTime, PR_GMTParameters, &tm);
124 (void)PR_FormatTime(ctime, sizeof(ctime), "%c GMT", &tm);
125 PR_ExplodeTime(info->modifyTime, PR_GMTParameters, &tm);
126 (void)PR_FormatTime(mtime, sizeof(mtime), "%c GMT", &tm);
/vbox/src/recompiler/
H A Dcutils.c593 time_t mktimegm(struct tm *tm) argument
596 int y = tm->tm_year + 1900, m = tm->tm_mon + 1, d = tm->tm_mday;
603 t += 3600 * tm->tm_hour + 60 * tm->tm_min + tm->tm_sec;
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/
H A DOpenSslSupport.h98 struct tm { struct
204 struct tm *localtime (const time_t *);
205 struct tm *gmtime (const time_t *);
206 struct tm *gmtime_r (const time_t *, struct tm *);
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Dasn1.c624 struct tm tm; local
690 tm.tm_year = ( ( ( pairs.named.century - 19 ) * 100 ) +
692 tm.tm_mon = ( pairs.named.month - 1 );
693 tm.tm_mday = pairs.named.day;
694 tm.tm_hour = pairs.named.hour;
695 tm.tm_min = pairs.named.minute;
696 tm.tm_sec = pairs.named.second;
699 *time = mktime ( &tm );
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsTimelineService.cpp303 static void ParseTime(PRTime tm, PRInt32& secs, PRInt32& msecs) argument
307 LL_DIV(llsecs, tm, 1000000);
308 LL_MOD(tmp, tm, 1000000);
333 static void PrintTime(PRTime tm, const char *text, va_list args) argument
338 ParseTime(tm, secs, msecs);
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_transform.c508 GLfloat tm[16]; local
510 _math_transposef(tm, m1);
511 crStateLoadMatrixf(tm);
516 GLdouble tm[16]; local
518 _math_transposed(tm, m1);
519 crStateLoadMatrixd(tm);
674 GLfloat tm[16]; local
676 _math_transposef(tm, m1);
677 crStateMultMatrixf(tm);
682 GLdouble tm[1 local
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprtime.c220 * Cf. struct tm *gmtime(const time_t *tp) and
221 * struct tm *localtime(const time_t *tp)
244 * Cf. time_t mktime(struct tm *tp)
554 * to struct tm. The macro definition above would not be able to
569 extern struct tm *Maclocaltime(const time_t * t);
574 static struct tm *MT_safe_localtime(const time_t *clock, struct tm *result)
576 struct tm *tmPtr;
591 * that case, we also return a NULL pointer and the struct tm
599 * With negative values of clock, emx returns the struct tm fo
966 PRExplodedTime tm; local
[all...]
/vbox/src/libs/libpng-1.2.8/contrib/gregbook/
H A Drpng2-win.c709 TEXTMETRIC tm; local
711 GetTextMetrics(hdc, &tm);
712 x = (rpng2_info.width - len*tm.tmAveCharWidth)/2;
713 y = (rpng2_info.height - tm.tmHeight)/2;
/vbox/src/VBox/Devices/PC/
H A DDevRTC.cpp283 struct my_tm *tm = &pThis->current_tm; local
285 tm->tm_sec = from_bcd(pThis, pThis->cmos_data[RTC_SECONDS]);
286 tm->tm_min = from_bcd(pThis, pThis->cmos_data[RTC_MINUTES]);
287 tm->tm_hour = from_bcd(pThis, pThis->cmos_data[RTC_HOURS] & 0x7f);
290 tm->tm_hour %= 12;
292 tm->tm_hour += 12;
294 tm->tm_wday = from_bcd(pThis, pThis->cmos_data[RTC_DAY_OF_WEEK]);
295 tm->tm_mday = from_bcd(pThis, pThis->cmos_data[RTC_DAY_OF_MONTH]);
296 tm->tm_mon = from_bcd(pThis, pThis->cmos_data[RTC_MONTH]) - 1;
297 tm
587 rtc_next_second(struct my_tm *tm) argument
664 const struct my_tm *tm = &pThis->current_tm; local
978 rtc_set_date(PRTCSTATE pThis, const struct my_tm *tm) argument
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_printf.c515 struct tm tm; local
518 (void) localtime_r(&sec, &tm);
519 (void) strftime(buf, sizeof (buf), "%a, %d %b %G %T %Z", &tm);
/vbox/include/VBox/vmm/
H A Dvm.h182 } tm; member in struct:VMCPU
1101 } tm; member in struct:VM

Completed in 135 milliseconds

12