HomeSort by relevance Sort by last modified time
    Searched full:localtime (Results 1 - 25 of 724) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/host-tools/sed-4.2.1/lib/
gettimeofday.c 38 the static buffer that localtime uses for its return value. The
46 #undef localtime macro
47 extern struct tm *localtime (time_t const *);
52 /* This is a wrapper for localtime. It is used only on systems for which
53 gettimeofday clobbers the static buffer used for localtime's result.
56 localtime uses for its result. */
61 struct tm *tm = localtime (timep);
69 /* Same as above, since gmtime and localtime use the same buffer. */
89 the static buffer used for localtime's result. */
93 /* Save and restore the contents of the buffer used for localtime'
    [all...]
  /external/chromium_org/tools/profile_chrome/
util.py 8 return time.strftime('%Y-%m-%d-%H%M%S', time.localtime())
  /ndk/sources/host-tools/sed-4.2.1/m4/
gettimeofday.m4 44 dnl See if gettimeofday clobbers the static buffer that localtime uses
48 dnl If it does, then arrange to use gettimeofday and localtime only via
55 AC_CACHE_CHECK([whether gettimeofday clobbers localtime buffer],
69 lt = localtime (&t);
84 [Define if gettimeofday clobbers the localtime buffer.])
93 AC_DEFINE([localtime], [rpl_localtime],
  /frameworks/av/media/common_time/
cc_helper.cpp 116 CCHELPER_METHOD(commonTimeToLocalTime(int64_t commonTime, int64_t* localTime),
117 commonTimeToLocalTime(commonTime, localTime))
118 CCHELPER_METHOD(localTimeToCommonTime(int64_t localTime, int64_t* commonTime),
119 localTimeToCommonTime(localTime, commonTime))
124 CCHELPER_METHOD(getLocalTime(int64_t* localTime),
125 getLocalTime(localTime))
ICommonClock.cpp 71 int64_t* localTime) {
80 *localTime = reply.readInt64();
86 virtual status_t localTimeToCommonTime(int64_t localTime,
90 data.writeInt64(localTime);
128 virtual status_t getLocalTime(int64_t* localTime) {
135 *localTime = reply.readInt64();
258 int64_t localTime;
259 status_t status = commonTimeToLocalTime(commonTime, &localTime);
262 reply->writeInt64(localTime);
269 int64_t localTime = data.readInt64()
    [all...]
  /frameworks/base/libs/common_time/
common_clock_service.cpp 47 int64_t* localTime) {
48 return mTimeServer.getCommonClock().commonToLocal(commonTime, localTime);
51 status_t CommonClockService::localTimeToCommonTime(int64_t localTime,
53 return mTimeServer.getCommonClock().localToCommon(localTime, commonTime);
65 status_t CommonClockService::getLocalTime(int64_t* localTime) {
66 *localTime = mTimeServer.getLocalClock().getLocalTime();
  /bionic/libc/bionic/
time64_config.h 56 Your system localtime() is probably more accurate, but our gmtime() is
67 Maximum and minimum values your system's gmtime() and localtime()
  /external/chromium_org/content/browser/
time_zone_monitor.h 27 // localtime in renderer processes with custom code that calls
28 // localtime in the browser process via Chrome IPC.
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationNode.cpp 105 const double localTime = inheritedTime - m_startTime;
110 const Phase currentPhase = calculatePhase(activeDuration, localTime, m_timing);
113 const double activeTime = calculateActiveTime(activeDuration, resolvedFillMode(m_timing.fillMode, isAnimation()), localTime, parentPhase, currentPhase, m_timing);
137 const double localLocalTime = localTime < m_timing.startDelay ? localTime : localActiveDuration + m_timing.startDelay;
156 m_calculated.localTime = m_lastUpdateTime - m_startTime;
169 m_calculated.timeToForwardsEffectChange = calculateTimeToEffectChange(true, localTime, timeToNextIteration);
170 m_calculated.timeToReverseEffectChange = calculateTimeToEffectChange(false, localTime, timeToNextIteration);
TimingCalculations.h 48 static inline AnimationNode::Phase calculatePhase(double activeDuration, double localTime, const Timing& specified)
51 if (isNull(localTime))
53 if (localTime < specified.startDelay)
55 if (localTime >= specified.startDelay + activeDuration)
75 static inline double calculateActiveTime(double activeDuration, Timing::FillMode fillMode, double localTime, AnimationNode::Phase parentPhase, AnimationNode::Phase phase, const Timing& specified)
78 ASSERT(phase == calculatePhase(activeDuration, localTime, specified));
87 return localTime - specified.startDelay;
94 ASSERT(isNull(localTime));
  /external/qemu/android/utils/
timezone.c 104 #define LOCALTIME_FILE "/etc/localtime"
145 * but should be /usr/share/zoneinfo by default. /etc/localtime is not guaranteed to exist on
146 * all platforms, so if it doesn't, try $TZDIR/localtime, then /usr/share/zoneinfo/locatime
149 * besides, modern Linux distribution don't make /etc/localtime a symlink but a straight copy of
164 #define LOCALTIME_FILE1 "/etc/localtime"
167 const char* localtime; member in struct:__anon12909
193 fd1 = open( scan->localtime, O_RDONLY );
195 D(" can't open %s: %s\n", scan->localtime, strerror(errno) );
309 char* localtime = NULL; local
344 /* try to find the localtime file *
    [all...]
  /frameworks/av/include/common_time/
ICommonClock.h 74 int64_t* localTime) = 0;
75 virtual status_t localTimeToCommonTime(int64_t localTime,
79 virtual status_t getLocalTime(int64_t* localTime) = 0;
cc_helper.h 49 status_t commonTimeToLocalTime(int64_t commonTime, int64_t* localTime);
50 status_t localTimeToCommonTime(int64_t localTime, int64_t* commonTime);
53 status_t getLocalTime(int64_t* localTime);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 42 return Date(*time.localtime(ticks)[:3])
45 return Time(*time.localtime(ticks)[3:6])
48 return Timestamp(*time.localtime(ticks)[:6])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_time.py 23 == time.asctime(time.localtime(self.t)))
24 self.assertTrue(long(time.mktime(time.localtime(self.t)))
165 time.gmtime(xmas2002), time.localtime(xmas2002)
169 self.assertEqual(time.localtime(xmas2002).tm_isdst, 0)
174 self.assertNotEqual(time.gmtime(xmas2002), time.localtime(xmas2002))
180 self.assertEqual(time.localtime(xmas2002).tm_isdst, 0)
186 self.assertNotEqual(time.gmtime(xmas2002), time.localtime(xmas2002))
198 self.assertEqual(time.localtime(xmas2002).tm_isdst, 1)
214 for func in time.ctime, time.gmtime, time.localtime:
233 lt0 = time.localtime()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 42 return Date(*time.localtime(ticks)[:3])
45 return Time(*time.localtime(ticks)[3:6])
48 return Timestamp(*time.localtime(ticks)[:6])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_time.py 23 == time.asctime(time.localtime(self.t)))
24 self.assertTrue(long(time.mktime(time.localtime(self.t)))
165 time.gmtime(xmas2002), time.localtime(xmas2002)
169 self.assertEqual(time.localtime(xmas2002).tm_isdst, 0)
174 self.assertNotEqual(time.gmtime(xmas2002), time.localtime(xmas2002))
180 self.assertEqual(time.localtime(xmas2002).tm_isdst, 0)
186 self.assertNotEqual(time.gmtime(xmas2002), time.localtime(xmas2002))
198 self.assertEqual(time.localtime(xmas2002).tm_isdst, 1)
214 for func in time.ctime, time.gmtime, time.localtime:
233 lt0 = time.localtime()
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkTime_Unix.cpp 22 tstruct = localtime(&m_time);
  /external/skia/src/ports/
SkTime_Unix.cpp 22 tstruct = localtime(&m_time);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
time.so 
  /external/libcxx/include/
ctime 39 tm* localtime(const time_t* timer);
67 using ::localtime;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
ctime 39 tm* localtime(const time_t* timer);
67 using ::localtime;
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/
ctime 39 tm* localtime(const time_t* timer);
67 using ::localtime;
  /external/chromium_org/third_party/libxslt/libxslt/
extra.c 165 * Implement the localTime XSLT function used by NORM
166 * string localTime(???)
184 "localTime() : invalid number of args %d\n", nargs);
240 local_tm = localtime(&gmt);
243 * Calling localtime() has the side-effect of setting timezone.
252 local_tm = localtime(&lmt);
305 xsltRegisterExtModuleFunction((const xmlChar *) "localTime",
  /external/chromium_org/chrome/installer/tools/
setup_timer.py 74 time.strftime("%x %X", time.localtime()), current_stage,
79 time.strftime("%x %X", time.localtime()), current_stage,
88 time.strftime("%x %X", time.localtime()), new_stage)
92 time.strftime("%x %X", time.localtime()))
96 time.strftime("%x %X", time.localtime()))

Completed in 3576 milliseconds

1 2 3 4 5 6 7 8 91011>>