HomeSort by relevance Sort by last modified time
    Searched refs:sec (Results 251 - 275 of 321) sorted by null

<<111213

  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/asymmetric/ec/
KeyPairGenerator.java 17 import org.bouncycastle.asn1.sec.SECNamedCurves;
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant_i.h 418 int scan_interval; /* time in sec between scans to find suitable AP */
585 int sec, int usec);
  /external/chromium/base/
process_util_posix.cc 768 time_t sec = static_cast<time_t>(wait_milliseconds / 1000); local
769 wait_milliseconds = wait_milliseconds - (sec * 1000);
770 spec.tv_sec = sec;
  /external/icu4c/i18n/
olsontz.cpp 469 double sec = uprv_floor(date / U_MILLIS_PER_SECOND); local
470 if (!local && sec < transitionTimeInSeconds(0)) {
523 if (sec >= transition) {
    [all...]
  /external/qemu/
trace.c 308 uint32_t sec = tm->tm_sec; local
309 tens = sec / 10;
310 ones = (sec - tens * 10);
311 sec = (tens << 4) | ones;
313 *ptime = (hour << 16) | (min << 8) | sec;
640 printf("Elapsed seconds: %.2f, simulated cycles/sec: %.1f%s\n",
    [all...]
  /external/icu4c/test/intltest/
dtfmttst.cpp 248 int32_t y, m, day, hr, min, sec; local
249 dateToFields(d, y, m, day, hr, min, sec);
650 int32_t month,yr,day,hr,min,sec; dateToFields(d,yr,month,day,hr,min,sec); local
656 dateToFields(d,yr,month,day,hr,min,sec);
714 int32_t year,month,day,hour,min,sec; dateToFields(today,year,month,day,hour,min,sec); local
    [all...]
  /external/wpa_supplicant/
wpa_supplicant.c 487 * @sec: Number of seconds after which to scan
493 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec)
519 wpa_msg(wpa_s, MSG_DEBUG, "Setting scan request: %d sec %d usec",
520 sec, usec);
522 eloop_register_timeout(sec, usec, wpa_supplicant_scan, wpa_s, NULL);
560 * @sec: Number of seconds after which to time out authentication
567 int sec, int usec)
573 wpa_msg(wpa_s, MSG_DEBUG, "Setting authentication timeout: %d sec "
574 "%d usec", sec, usec);
576 eloop_register_timeout(sec, usec, wpa_supplicant_timeout, wpa_s, NULL)
    [all...]
  /frameworks/base/core/java/android/os/
BatteryStats.java 321 * Returns the total time (in 1/100 sec) spent executing in user code.
328 * Returns the total time (in 1/100 sec) spent executing in system code.
1058 long sec = time \/ 100; local
1065 long sec = time \/ 1000; local
    [all...]
  /external/v8/src/
log.cc 958 uint32_t sec, usec; local
959 if (OS::GetUserTime(&sec, &usec) != -1) {
960 msg.Append("%d,%d,", sec, usec);
    [all...]
platform-win32.cc 250 Time(int year, int mon, int day, int hour, int min, int sec);
342 Time::Time(int year, int mon, int day, int hour, int min, int sec) {
349 st.wSecond = sec;
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEECPrivateKey.java 27 import org.bouncycastle.asn1.sec.ECPrivateKeyStructure;
  /external/jpeg/
jmemdosa.asm 280 mov cx,bx ; save returned BX for a sec
361 mov cx,bx ; save returned BX for a sec
  /external/svox/pico/lib/
picoos.h 543 void picoos_get_timer(picopal_uint32 * sec, picopal_uint32 * usec);
  /external/valgrind/tsan/
ts_pin.cc     [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
DateMath.cpp 316 static inline double timeToMS(double hour, double min, double sec, double ms)
318 return (((hour * minutesPerHour + min) * secondsPerMinute + sec) * msPerSecond + ms);
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_upnp.c 491 if (now.sec != sm->last_event_sec) {
492 sm->last_event_sec = now.sec;
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_registrar.c 157 if (now.sec > pbc->timestamp.sec + WPS_PBC_WALK_TIME) {
200 if (now.sec > pbc->timestamp.sec + WPS_PBC_WALK_TIME)
446 p->expiration.sec += timeout;
    [all...]
  /external/iproute2/doc/
ip-cref.tex 190 (Sec.\ref{IP-LINK}, p.\pageref{IP-LINK}),
477 \verb|ip maddr ls| in~Sec.\ref{IP-MADDR} (p.\pageref{IP-MADDR} of this
672 may be found in sec.\ref{IP-ADDR-FLUSH}, p.\pageref{IP-ADDR-FLUSH}.
733 valid_lft forever preferred_lft 604746sec
743 additional address attributes: scope value (see Sec.\ref{IP-ADDR-ADD},
    [all...]
api-ip6-flowlabels.tex 324 unprivileged user to set linger longer than 60 sec.
329 unprivileged user to set timeout longer than 60 sec. Proviledged applications
  /external/wpa_supplicant_8/src/p2p/
p2p.c 61 if (dev->last_seen.sec + P2P_PEER_EXPIRATION_AGE >= now.sec)
123 void p2p_set_timeout(struct p2p_data *p2p, unsigned int sec, unsigned int usec)
126 "P2P: Set timeout (state=%s): %u.%06u sec",
127 p2p_state_txt(p2p->state), sec, usec);
129 eloop_register_timeout(sec, usec, p2p_state_timeout, p2p, NULL);
    [all...]
  /external/icu4c/tools/tzcode/
tz2icu.cpp 1656 time_t sec; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
wpa_supplicant.c 204 * @sec: Number of seconds after which to time out authentication
211 int sec, int usec)
217 wpa_msg(wpa_s, MSG_DEBUG, "Setting authentication timeout: %d sec "
218 "%d usec", sec, usec);
220 eloop_register_timeout(sec, usec, wpa_supplicant_timeout, wpa_s, NULL);
    [all...]
  /device/samsung/crespo/libcamera/
SecCamera.cpp 69 unsigned long sec, usec, time; local
71 sec = stop->tv_sec - start->tv_sec;
77 sec--;
80 time = (sec * 1000000) + usec;
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
PEMReader.java 47 import org.bouncycastle.asn1.sec.ECPrivateKeyStructure;
  /external/openssl/crypto/ocsp/
ocsp.h 454 long sec, long maxsec);

Completed in 2451 milliseconds

<<111213