Home
last modified time | relevance | path

Searched refs:cef_time (Results 1 – 6 of 6) sorted by relevance

/third_party/cef/libcef/common/
Dtime_impl.cc26 void cef_time_to_basetime(const cef_time_t& cef_time, base::Time& time) { in cef_time_to_basetime() argument
28 exploded.year = cef_time.year; in cef_time_to_basetime()
29 exploded.month = cef_time.month; in cef_time_to_basetime()
30 exploded.day_of_week = cef_time.day_of_week; in cef_time_to_basetime()
31 exploded.day_of_month = cef_time.day_of_month; in cef_time_to_basetime()
32 exploded.hour = cef_time.hour; in cef_time_to_basetime()
33 exploded.minute = cef_time.minute; in cef_time_to_basetime()
34 exploded.second = cef_time.second; in cef_time_to_basetime()
35 exploded.millisecond = cef_time.millisecond; in cef_time_to_basetime()
39 void cef_time_from_basetime(const base::Time& time, cef_time_t& cef_time) { in cef_time_from_basetime() argument
[all …]
Dtime_util.h13 void cef_time_to_basetime(const cef_time_t& cef_time, base::Time& time);
14 void cef_time_from_basetime(const base::Time& time, cef_time_t& cef_time);
/third_party/cef/include/internal/
Dcef_time.h61 CEF_EXPORT int cef_time_to_timet(const cef_time_t* cef_time, time_t* time);
62 CEF_EXPORT int cef_time_from_timet(time_t time, cef_time_t* cef_time);
70 CEF_EXPORT int cef_time_to_doublet(const cef_time_t* cef_time, double* time);
71 CEF_EXPORT int cef_time_from_doublet(double time, cef_time_t* cef_time);
76 CEF_EXPORT int cef_time_now(cef_time_t* cef_time);
/third_party/cef/libcef_dll/wrapper/
Dlibcef_dll_dylib.cc2027 int cef_time_to_timet(const cef_time_t* cef_time, time_t* time) { in cef_time_to_timet() argument
2028 return g_libcef_pointers.cef_time_to_timet(cef_time, time); in cef_time_to_timet()
2032 int cef_time_from_timet(time_t time, cef_time_t* cef_time) { in cef_time_from_timet() argument
2033 return g_libcef_pointers.cef_time_from_timet(time, cef_time); in cef_time_from_timet()
2037 int cef_time_to_doublet(const cef_time_t* cef_time, double* time) { in cef_time_to_doublet() argument
2038 return g_libcef_pointers.cef_time_to_doublet(cef_time, time); in cef_time_to_doublet()
2042 int cef_time_from_doublet(double time, cef_time_t* cef_time) { in cef_time_from_doublet() argument
2043 return g_libcef_pointers.cef_time_from_doublet(time, cef_time); in cef_time_from_doublet()
2046 NO_SANITIZE("cfi-icall") int cef_time_now(cef_time_t* cef_time) { in cef_time_now() argument
2047 return g_libcef_pointers.cef_time_now(cef_time); in cef_time_now()
/third_party/cef/
Dcef_paths2.gypi55 'include/internal/cef_time.h',
/third_party/chromium/patch/
D0003-ohos-1115.patch11957 #include "include/internal/cef_time.h"