HomeSort by relevance Sort by last modified time
    Searched refs:interval (Results 301 - 325 of 777) sorted by null

<<11121314151617181920>>

  /external/wpa_supplicant_8/src/p2p/
p2p_build.c 281 wpabuf_put_le32(buf, desc->interval);
301 u16 interval)
307 wpabuf_put_le16(buf, interval);
309 "interval %u msec)", period, interval);
  /hardware/libhardware/include/hardware/
camera.h 83 int (*set_swap_interval)(struct preview_stream_ops *w, int interval);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
BasicEditor.java 53 FilterBasicRepresentation interval = (FilterBasicRepresentation) getLocalRepresentation(); local
  /cts/tests/tests/os/src/android/os/cts/
MessageQueueTest.java 263 public void doTest(long timeout, long interval) throws InterruptedException {
270 wait(interval);
MessengerTest.java 252 public void doTest(long timeout, long interval) throws InterruptedException {
260 wait(interval);
  /device/generic/goldfish/opengl/system/egl/
egl.cpp 177 virtual void setSwapInterval(int interval) = 0;
235 virtual void setSwapInterval(int interval);
307 void egl_window_surface_t::setSwapInterval(int interval)
309 nativeWindow->setSwapInterval(nativeWindow, interval);
339 virtual void setSwapInterval(int interval) {}
835 EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval)
848 draw->setSwapInterval(interval);
850 rcEnc->rcFBSetSwapInterval(rcEnc, interval); //TODO: implement on the host
    [all...]
  /external/chromium_org/content/browser/geolocation/
gps_location_provider_linux.cc 289 void GpsLocationProviderLinux::ScheduleNextGpsPoll(int interval) {
295 base::TimeDelta::FromMilliseconds(interval));
  /external/chromium_org/content/child/npapi/
plugin_instance.h 174 uint32 ScheduleTimer(uint32 interval,
331 uint32 interval; member in struct:content::PluginInstance::TimerInfo
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerRunLoop.cpp 54 virtual void setFireInterval(double interval) { m_nextFireTime = interval + currentTime(); }
166 // Schedule a watchdog, so if there are no events within a particular time interval
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
filevideocapturer.cc 193 // the frame interval to kMinimumInterval here. In Start(), if the capture
194 // format's interval is greater than kMinimumInterval, we use the interval;
195 // otherwise, we use the timestamp in the file to control the interval.
347 // If the capture format's interval is not kMinimumInterval, we use it to
352 GetCaptureFormat()->interval > VideoFormat::kMinimumInterval ?
353 GetCaptureFormat()->interval :
filevideocapturer_unittest.cc 138 // desired format with minimum interval
139 desired.interval = cricket::VideoFormat::kMinimumInterval;
163 capture_format_.interval = cricket::VideoFormat::FpsToInterval(50);
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideocapturer_unittest.cc 122 EXPECT_EQ(kDefaultVideoFormat.interval, format.interval);
  /external/chromium_org/third_party/mesa/src/docs/
MESA_swap_frame_usage.spec 47 depending on the swap interval as set by the GLX_SGI_swap_control or
116 time multiplied by the swap interval (or one if the swap interval is set
141 <interval> set by glXSwapIntervalSGI or the default swap of once
  /external/chromium_org/ui/compositor/
compositor.h 277 base::TimeDelta interval) OVERRIDE;
388 base::TimeDelta interval);
  /external/chromium_org/v8/src/
platform-nullos.cc 547 ProfileSampler::ProfileSampler(int interval) {
551 interval_ = interval;
  /external/mesa3d/docs/
MESA_swap_frame_usage.spec 47 depending on the swap interval as set by the GLX_SGI_swap_control or
116 time multiplied by the swap interval (or one if the swap interval is set
141 <interval> set by glXSwapIntervalSGI or the default swap of once
  /external/netperf/
netcpu_kstat.c 249 calibrate_idle_rate(int iterations, int interval)
292 sleep(interval);
netcpu_perfstat.c 116 calibrate_idle_rate(int iterations, int interval)
193 sleep(interval);
netcpu_pstat.c 98 calibrate_idle_rate(int iterations, int interval)
159 sleep(interval);
  /external/v8/src/
platform-nullos.cc 475 ProfileSampler::ProfileSampler(int interval) {
479 interval_ = interval;
  /frameworks/base/services/java/com/android/server/
NetworkTimeUpdateService.java 45 * interval and then resets to checking on longer intervals.
82 // Try-again polling interval, in case the network request failed
211 * Cancel old alarm and starts a new one for the specified interval.
213 * @param interval when to trigger the alarm, starting from now.
215 private void resetAlarm(long interval) {
218 long next = now + interval;
  /frameworks/native/libs/gui/
Surface.cpp 89 int Surface::hook_setSwapInterval(ANativeWindow* window, int interval) {
91 return c->setSwapInterval(interval);
161 int Surface::setSwapInterval(int interval) {
164 // interval is silently clamped to minimum and maximum implementation
167 if (interval < minSwapInterval)
168 interval = minSwapInterval;
170 if (interval > maxSwapInterval)
171 interval = maxSwapInterval;
173 mSwapIntervalZero = (interval == 0);
  /frameworks/native/opengl/tools/glgen/specs/egl/
EGL14.spec 22 EGLBoolean eglSwapInterval ( EGLDisplay dpy, EGLint interval )
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglMacApi.cpp 205 void swapInterval(EGLNativeDisplayType dpy,EGLNativeSurfaceType win,int interval){
206 nsSwapInterval(&interval);
  /external/bluetooth/bluedroid/stack/btm/
btm_inq.c 166 ** interval, the default values are used.
175 tBTM_STATUS BTM_SetDiscoverability (UINT16 inq_mode, UINT16 window, UINT16 interval)
208 /* If the window and/or interval is '0', set to default values */
212 if (!interval)
213 interval = BTM_DEFAULT_DISC_INTERVAL;
215 BTM_TRACE_API3 ("BTM_SetDiscoverability: mode %d [NonDisc-0, Lim-1, Gen-2], window 0x%04x, interval 0x%04x",
216 inq_mode, window, interval);
218 /*** Check for valid window and interval parameters ***/
222 /* window must be less than or equal to interval */
225 interval < HCI_MIN_INQUIRYSCAN_INTERVAL |
    [all...]

Completed in 540 milliseconds

<<11121314151617181920>>