Searched defs:p_tm (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/fm/libfmnotify/common/
H A Dlibfmnotify.c48 struct tm *p_tm; local
51 p_tm = localtime(&utc_time);
53 (void) strftime(buf, bufsize, "%b %d %H:%M:%S", p_tm);
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dlocaltime.c482 gmtime_r(const time_t *timep, struct tm *p_tm) argument
484 return (offtime_u((time_t)*timep, 0L, p_tm));
502 struct tm *p_tm = tsdalloc(_T_STRUCT_TM, sizeof (struct tm), NULL); local
504 if (p_tm == NULL) /* memory allocation failure */
505 p_tm = &tm; /* use static buffer and hope for the best */
506 return (gmtime_r(timep, p_tm));
623 localtime_r(const time_t *timep, struct tm *p_tm) argument
636 return (offtime_u(*timep, 0L, p_tm));
643 rt = offtime_u(*timep, offset, p_tm);
644 p_tm
668 struct tm *p_tm = tsdalloc(_T_STRUCT_TM, sizeof (struct tm), NULL); local
[all...]

Completed in 61 milliseconds