Searched defs:Time (Results 1 - 13 of 13) sorted by relevance

/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
H A DTime.java15 public class Time class in inherits:ASN1Encodable,ASN1Choice
21 public static Time getInstance(
28 public Time( method in class:Time
34 throw new IllegalArgumentException("unknown object passed to Time");
45 public Time( method in class:Time
66 public static Time getInstance(
69 if (obj instanceof Time)
71 return (Time)obj;
75 return new Time((DERUTCTime)obj);
79 return new Time((DERGeneralizedTim
[all...]
/external/openssl/ssl/
H A Ds23_clnt.c144 unsigned long Time=(unsigned long)time(NULL); local
149 RAND_add(&Time,sizeof(Time),0);
273 unsigned long Time,l; local
327 Time=(unsigned long)time(NULL); /* Time */
328 l2n(Time,p);
H A Ds23_srvr.c143 unsigned long Time=(unsigned long)time(NULL); local
148 RAND_add(&Time,sizeof(Time),0);
H A Dd1_clnt.c150 unsigned long Time=(unsigned long)time(NULL); local
155 RAND_add(&Time,sizeof(Time),0);
600 unsigned long Time,l; local
634 Time=(unsigned long)time(NULL); /* Time */
635 l2n(Time,p);
H A Dd1_srvr.c148 unsigned long Time=(unsigned long)time(NULL); local
154 RAND_add(&Time,sizeof(Time),0);
754 unsigned long l,Time; local
760 Time=(unsigned long)time(NULL); /* Time */
761 l2n(Time,p);
762 RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-sizeof(Time));
H A Ds3_clnt.c186 unsigned long Time=(unsigned long)time(NULL); local
191 RAND_add(&Time,sizeof(Time),0);
652 unsigned long Time,l; local
683 Time=(unsigned long)time(NULL); /* Time */
684 l2n(Time,p);
H A Ds3_srvr.c190 unsigned long alg_k,Time=(unsigned long)time(NULL); local
195 RAND_add(&Time,sizeof(Time),0);
1069 unsigned long Time; local
1071 Time=(unsigned long)time(NULL); /* Time */
1073 l2n(Time,pos);
1296 unsigned long Time; local
1305 Time=(unsigned long)time(NULL); /* Time */
[all...]
/external/webkit/WebKit/chromium/public/
H A DWebInputElement.h81 Time, enumerator in enum:WebKit::WebInputElement::InputType
/external/tcpdump/
H A Dutil.c149 time_t Time; local
192 Time = (tvp->tv_sec + thiszone) - s;
193 tm = gmtime (&Time);
/external/webkit/WebCore/html/
H A DDateComponents.h45 // * Time type: hour-minute-second-millisecond
78 // The format argument is valid for DateTime, DateTimeLocal, and Time types.
124 // For Time type. Updates m_hour, m_minute, m_second and m_millisecond.
181 Time, enumerator in enum:WebCore::DateComponents::Type
/external/chromium/base/
H A Dtime.h5 // Time represents an absolute point in time, internally represented as
16 // decrease (if the user changes the computer clock, Time::Now() may actually
37 class Time;
130 Time operator+(Time t) const;
154 friend class Time;
172 // Time -----------------------------------------------------------------------
175 class Time { class in namespace:base
213 // Contains the NULL time. Use Time::Now() to get the current time.
214 explicit Time() function in class:base::Time
358 explicit Time(int64 us) : us_(us) { function in class:base::Time
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
H A DXvproto.h63 #define Time CARD32 macro
272 Time time B32;
281 Time time B32;
571 Time time B32;
583 Time time B32;
600 #undef Time macro
/external/v8/src/
H A Dplatform-win32.cc252 // The Time class represents time on win32. A timestamp is represented as
257 class Time { class in namespace:v8::internal
260 Time();
261 explicit Time(double jstime);
262 Time(int year, int mon, int day, int hour, int min, int sec);
313 int64_t Diff(Time* other);
335 bool Time::tz_initialized_ = false;
336 TIME_ZONE_INFORMATION Time::tzinfo_;
337 char Time::std_tz_name_[kTzNameSize];
338 char Time
342 Time::Time() { function in class:v8::internal::Time
348 Time::Time(double jstime) { function in class:v8::internal::Time
354 Time::Time(int year, int mon, int day, int hour, int min, int sec) { function in class:v8::internal::Time
[all...]

Completed in 202 milliseconds