HomeSort by relevance Sort by last modified time
    Searched full:secs (Results 126 - 150 of 573) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/iproute2/misc/
nstat.c 493 " -d, --scan=SECS sample every statistics every SECS\n"
499 " -t, --interval=SECS report average over the last SECS\n"
  /external/libgdx/tests/gdx-tests-android/src/com/badlogic/gdx/tests/android/
MicroBenchmarks.java 119 buff.append(info).append(", ").append(time).append(" secs\n");
  /external/mesa3d/src/gallium/state_trackers/clover/tgsi/
compiler.cpp 86 m.secs.push_back({ 0, module::section::text, sz, { (char *)prog, sz } });
  /external/netperf/src/
hist.h 28 > 100 secs
  /external/toybox/toys/other/
nbd_client.c 25 usage: nbd-client [-sSpn] [-b BLKSZ] [-t SECS] [-N name] HOST PORT DEVICE
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
receive_statistics_impl.h 51 virtual void LastReceiveTimeNtp(uint32_t* secs, uint32_t* frac) const;
  /external/wpa_supplicant_8/src/ap/
dhcp_snoop.c 29 be16 secs; member in struct:bootp_pkt
  /external/wpa_supplicant_8/src/utils/
eloop_win.c 237 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
252 timeout->time.sec += secs;
258 wpa_printf(MSG_DEBUG, "ELOOP: Too long timeout (secs=%u) to "
259 "ever happen - ignore it", secs);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
RTSPSource.cpp 33 const int64_t kNearEOSTimeoutUs = 2000000ll; // 2 secs
153 // We're going to buffer at least 2 secs worth data on all tracks before
171 ALOGV("audio track doesn't have enough data yet. (%.2f secs buffered)",
180 ALOGV("video track doesn't have enough data yet. (%.2f secs buffered)",
  /frameworks/av/media/libstagefright/
VBRISeeker.cpp 75 ALOGV("duration = %.2f secs", durationUs / 1E6);
  /packages/apps/DevCamera/src/com/android/devcamera/
MediaSaver.java 85 Log.v(TAG, String.format("Wrote JPEG %d bytes as %s in %.3f seconds; mediastore update = %.3f secs",
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
CallListAdapter.java 102 duration.setText((durationMs / 1000) + " secs");
  /platform_testing/libraries/flightdemo-app-helper/src/android/platform/test/helpers/
FlightDemoHelperImpl.java 40 private static final int UI_RESPONSE_WAIT = 2000; // 2 secs
  /platform_testing/libraries/reddit-app-helper/src/android/platform/test/helpers/
RedditHelperImpl.java 45 private static final long UI_NAVIGATION_WAIT = 5000; // 5 secs
  /toolchain/binutils/binutils-2.25/binutils/
nm.c 48 asection **secs; member in struct:get_relocs_info
784 *data->secs = sec;
806 ++data->secs;
863 static asection **secs;
877 free (secs);
880 secs = NULL;
891 secs = (asection **) xmalloc (seccount * sizeof *secs);
895 rinfo.secs = secs;
858 static asection **secs; local
    [all...]
  /external/autotest/client/tests/kvm/tests/
pci_hotplug.py 172 secs = int(params.get("wait_secs_for_hook_up"))
173 if not virt_utils.wait_for(new_shown, 30, secs, 3):
  /external/netperf/doc/
netperf.man 54 .B \-D [secs,units] (*)
55 Display interim results at least every secs seconds uning units as the
  /external/webrtc/webrtc/base/
timeutils.cc 133 time_t secs = timeval.tv_sec; local
134 gmtime_r(&secs, tm);
  /frameworks/rs/
rsCppUtils.h 184 static inline nsecs_t nanoseconds_to_milliseconds(nsecs_t secs)
186 return secs/1000000;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
ServiceProxy.java 161 public ServiceProxy setTimeout(int secs) {
162 mTimeout = secs;
  /system/bt/embdrv/sbc/decoder/include/
oi_bt_spec.h 213 #define OI_SECONDS_TO_BT_TICKS(secs) ((secs)*1600)
  /external/wpa_supplicant_8/wpa_supplicant/
gas_query.c 367 unsigned int secs, usecs; local
374 secs = (comeback_delay * 1024) / 1000000;
375 usecs = comeback_delay * 1024 - secs * 1000000;
377 " in %u secs %u usecs", MAC2STR(query->addr), secs, usecs);
379 eloop_register_timeout(secs, usecs, gas_query_tx_comeback_timeout,
  /frameworks/av/media/libstagefright/omx/tests/
OMXHarness.cpp 589 ALOGI("stream duration is %lld us (%.2f secs)",
621 ALOGI("requesting seek to %lld us (%.2f secs)",
641 ALOGI("nearest keyframe is at %lld us (%.2f secs)",
697 printf("\n * Attempted seeking to %" PRId64 " us (%.2f secs)",
699 printf("\n * Nearest keyframe is at %" PRId64 " us (%.2f secs)",
701 printf("\n * Returned buffer was at %" PRId64 " us (%.2f secs)\n\n",
  /bionic/libc/dns/resolv/
res_debug.c 821 int deg = 0, min = 0, secs = 0, secsfrac = 0; local
844 secs = secs * 10 + (*cp++ - '0');
870 + (((((deg * 60) + min) * 60) + secs) * 1000)
876 - (((((deg * 60) + min) * 60) + secs) * 1000)
1161 p_secstodate (u_long secs) {
1164 time_t myclock = secs;
    [all...]
  /external/clang/utils/
FindSpecRefs 683 secs = str[1:str.index(']')].split('.')
690 indices = secs
692 secs = str.split('.')
694 if 'p' in secs[-1]:
695 secs[-1],p = secs[-1].split('p',1)
697 indices = map(int, secs)
    [all...]

Completed in 1653 milliseconds

1 2 3 4 56 7 8 91011>>