HomeSort by relevance Sort by last modified time
    Searched refs:ltime (Results 1 - 10 of 10) sorted by null

  /ndk/sources/cxx-stl/stlport/src/c_locale_win32/
c_locale_win32.c 272 _Locale_lcid_t* _Locale_get_time_hint(_Locale_time_t* ltime)
273 { return (ltime != 0) ? &ltime->lc : 0; }
719 _Locale_time_t *ltime = (_Locale_time_t*)malloc(sizeof(_Locale_time_t)); local
721 if (!ltime) { *__err_code = _STLP_LOC_NO_MEMORY; return ltime; }
722 memset(ltime, 0, sizeof(_Locale_time_t));
724 if (__GetLCIDFromName(name, &ltime->lc.id, ltime->cp, lc_hint) == -1)
725 { free(ltime); *__err_code = _STLP_LOC_UNKNOWN_NAME; return NULL;
    [all...]
c_wlocale_win32.c 292 const wchar_t * _WLocale_full_monthname(_Locale_time_t * ltime, int month,
294 { GetLocaleInfoW(ltime->lc.id, LOCALE_SMONTHNAME1 + month, buf, (int)bufSize); return buf; }
296 const wchar_t * _WLocale_abbrev_monthname(_Locale_time_t * ltime, int month,
298 { GetLocaleInfoW(ltime->lc.id, LOCALE_SABBREVMONTHNAME1 + month, buf, (int)bufSize); return buf; }
300 const wchar_t * _WLocale_full_dayofweek(_Locale_time_t * ltime, int day,
302 { GetLocaleInfoW(ltime->lc.id, LOCALE_SDAYNAME1 + day, buf, (int)bufSize); return buf; }
304 const wchar_t * _WLocale_abbrev_dayofweek(_Locale_time_t * ltime, int day,
306 { GetLocaleInfoW(ltime->lc.id, LOCALE_SABBREVDAYNAME1 + day, buf, (int)bufSize); return buf; }
308 const wchar_t* _WLocale_am_str(_Locale_time_t* ltime,
310 { GetLocaleInfoW(ltime->lc.id, LOCALE_S1159, buf, (int)bufSize); return buf; }
    [all...]
  /ndk/sources/cxx-stl/stlport/src/c_locale_dummy/
c_locale_dummy.c 132 char const* _Locale_time_name(const struct _Locale_time *ltime, char* buf)
147 void _Locale_time_destroy(struct _Locale_time *ltime) {}
420 const char * _Locale_full_monthname(struct _Locale_time * ltime, int n)
426 const char * _Locale_abbrev_monthname(struct _Locale_time * ltime, int n)
431 const char * _Locale_full_dayofweek(struct _Locale_time * ltime, int n)
436 const char * _Locale_abbrev_dayofweek(struct _Locale_time * ltime, int n)
439 const char* _Locale_d_t_fmt(struct _Locale_time* ltime)
441 const char* _Locale_d_fmt(struct _Locale_time* ltime)
443 const char* _Locale_t_fmt(struct _Locale_time* ltime)
445 const char* _Locale_long_d_t_fmt(struct _Locale_time* ltime)
    [all...]
  /external/openssh/
sftp-common.c 217 struct tm *ltime = localtime(&st->st_mtime); local
236 if (ltime != NULL) {
240 sz = strftime(tbuf, sizeof tbuf, "%b %e %H:%M", ltime);
242 sz = strftime(tbuf, sizeof tbuf, "%b %e %Y", ltime);
  /frameworks/native/cmds/rawbu/
backup.cpp 479 int64_t ltime = read_int64(fh, -1); local
480 if (ltime < 0) {
484 st->st_atime = (time_t)(ltime/1000/1000/1000);
485 ltime = read_int64(fh, -1);
486 if (ltime < 0) {
490 st->st_mtime = (time_t)(ltime/1000/1000/1000);
491 ltime = read_int64(fh, -1);
492 if (ltime < 0) {
496 st->st_ctime = (time_t)(ltime/1000/1000/1000);
  /ndk/sources/host-tools/make-3.81/
remake.c 1392 FILE_TIMESTAMP ltime; local
    [all...]
  /external/ipsec-tools/src/libipsec/
pfkey.c 908 pfkey_send_spdadd2(so, src, prefs, dst, prefd, proto, ltime, vtime,
913 u_int64_t ltime, vtime;
922 ltime, vtime,
962 pfkey_send_spdupdate2(so, src, prefs, dst, prefd, proto, ltime, vtime,
967 u_int64_t ltime, vtime;
976 ltime, vtime,
    [all...]
  /external/ipsec-tools/src/racoon/
pfkey.c 2182 u_int64_t ltime, vtime; local
2304 u_int64_t ltime, vtime; local
    [all...]
  /external/linux-tools-perf/src/tools/perf/
builtin-kvm.c 723 struct tm ltime; local
726 if (localtime_r(&tv.tv_sec, &ltime)) {
727 strftime(date, sizeof(date), "%H:%M:%S", &ltime);
    [all...]
  /external/libvncserver/x11vnc/
tkx11vnc     [all...]

Completed in 383 milliseconds