HomeSort by relevance Sort by last modified time
    Searched refs:secs (Results 51 - 75 of 77) sorted by null

1 23 4

  /external/sonivox/arm-wt-22k/lib_src/
eas_pcm.c 1358 EAS_I32 secs, msecs; local
    [all...]
  /external/v8/src/
platform.h 141 static int GetUserTime(uint32_t* secs, uint32_t* usecs);
platform-win32.cc 597 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) {
609 *secs = static_cast<uint32_t>(usertime / 1000000);
    [all...]
  /packages/apps/Music/src/com/android/music/
MusicUtils.java 751 public static String makeTimeString(Context context, long secs) {
753 secs < 3600 ? R.string.durationformatshort : R.string.durationformatlong);
761 timeArgs[0] = secs / 3600;
762 timeArgs[1] = secs / 60;
763 timeArgs[2] = (secs / 60) % 60;
764 timeArgs[3] = secs;
765 timeArgs[4] = secs % 60;
    [all...]
TrackBrowserActivity.java     [all...]
  /external/qemu/
vl-android.c 2162 int cyls, heads, secs, translation; local
4924 int cyls, heads, secs, translation; local
    [all...]
vl.c 2241 int cyls, heads, secs, translation; local
4988 int cyls, heads, secs, translation; local
    [all...]
qemu-char-android.c 268 int secs; local
274 secs = ti / 1000;
277 secs / 3600,
278 (secs / 60) % 60,
279 secs % 60,
    [all...]
qemu-char.c 260 int secs; local
266 secs = ti / 1000;
269 secs / 3600,
270 (secs / 60) % 60,
271 secs % 60,
    [all...]
trace.c 176 void convert_secs_to_date_time(time_t secs, uint32_t *pdate, uint32_t *ptime)
178 struct tm *tm = localtime(&secs);
    [all...]
  /external/iproute2/misc/
ss.c 397 int secs, msecs, minutes; local
400 secs = timeout/1000;
401 minutes = secs/60;
402 secs = secs%60;
409 secs = 0;
411 if (secs) {
412 if (secs > 9)
414 sprintf(buf+strlen(buf), "%d%s", secs, msecs ? "." : "sec");
    [all...]
  /external/chromium/net/url_request/
url_request_unittest.h 445 bool Wait(int64 secs) {
446 TimeDelta td = TimeDelta::FromSeconds(secs);
  /external/wpa_supplicant/
eloop_win.c 244 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
254 timeout->time.sec += secs;
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
eloop_win.c 244 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
254 timeout->time.sec += secs;
  /external/srec/portable/src/
plog.c 318 loctime = localtime(&now.secs);
  /external/ppp/pppd/
main.c 1254 timeout(func, arg, secs, usecs)
1257 int secs, usecs;
1269 newp->c_time.tv_sec = timenow.tv_sec + secs;
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/aix/
SDL_syscdrom.c 502 entry.indexing.track_msf.secs,
  /system/core/libnetutils/
dhcpclient.c 292 LOGD("xid = 0x%08x secs = %d, flags = 0x%04x optlen = %d",
293 ntohl(msg->xid), ntohs(msg->secs), ntohs(msg->flags), len);
  /external/dhcpcd/
dhcp.c 810 dhcp->secs = htons((uint16_t)UINT16_MAX);
812 dhcp->secs = htons(up);
  /external/qemu/block/
vvfat.c 361 sector = spos % (bs->secs); spos/= bs->secs;
971 bootsector->sectors_per_track=cpu_to_le16(s->bs->secs);
1017 bs->cyls=1024; bs->heads=16; bs->secs=63;
1037 bs->cyls = 80; bs->heads = 2; bs->secs = 36;
1040 s->sector_count=bs->cyls*bs->heads*bs->secs;
1066 bs->total_sectors=bs->cyls*bs->heads*bs->secs;
1078 bs->heads = bs->cyls = bs->secs = 0;
    [all...]
  /external/srec/srec/EventLog/src/
EventLogImpl.c 239 ct = localtime_r(&timestamp.secs, &ct_r);
478 ct = localtime_r(&timestamp.secs, &ct_r);
  /external/openssl/include/openssl/
ts.h 563 int secs, int millis, int micros);
  /external/blktrace/
blktrace.c 512 long secs = tsp->tv_nsec / 1000000000L; local
514 tsp->tv_sec += secs;
515 tsp->tv_nsec -= (secs * 1000000000L);
    [all...]
  /external/netperf/
netlib.c 3562 int usecs, secs; local
    [all...]
  /external/dnsmasq/src/
dnsmasq.h 564 u16 secs, flags; member in struct:dhcp_packet

Completed in 1441 milliseconds

1 23 4