Searched defs:interval (Results 1 - 25 of 273) sorted by path

1234567891011

/external/blktrace/
H A Dblkiomon.c77 static int interval = -1; variable
279 wake.tv_sec += interval;
599 "-I <interval> | --interval=<interval>\n" \
607 "\t-I Sample interval.\n" \
641 .name = "interval",
705 interval = atoi(optarg);
725 if (interval <= 0) {
/external/blktrace/btt/
H A Dargs.c155 .name = "iostat-interval",
228 "[ -S <interval> | --iostat-interval=<interval> ]\n" \
352 unsigned int interval; local
354 sscanf(optarg, "%u", &interval);
355 iostat_interval = (__u64)interval * 1000000000LL;
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_acl.c2231 ** interval - number of baseband slots (meaning depends on mode)
2236 void btm_process_mode_change (UINT8 hci_status, UINT16 hci_handle, UINT8 mode, UINT16 interval) argument
H A Dbtm_inq.c166 ** interval, the default values are used.
175 tBTM_STATUS BTM_SetDiscoverability (UINT16 inq_mode, UINT16 window, UINT16 interval) argument
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_API ("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_INTERVA
617 BTM_SetConnectability(UINT16 page_mode, UINT16 window, UINT16 interval) argument
[all...]
H A Dbtm_int.h676 UINT16 interval; member in struct:__anon1255
695 UINT16 interval; /* the interval from last mode change event. */ member in struct:__anon1258
1030 UINT16 interval);
1040 UINT16 interval);
H A Dbtm_pm.c223 /* already in the requested mode and the current interval has less latency than the max */
225 ((p_mode->mode & BTM_PM_MD_FORCE) && (p_mode->max >= p_cb->interval) && (p_mode->min <= p_cb->interval)) ||
226 ((p_mode->mode & BTM_PM_MD_FORCE)==0 && (p_mode->max >= p_cb->interval)) )
228 BTM_TRACE_DEBUG( "BTM_SetPowerMode: mode:0x%x interval %d max:%d, min:%d", p_mode->mode, p_cb->interval, p_mode->max, p_mode->min);
602 ((md_res.max >= p_cb->interval) && (md_res.min <= p_cb->interval)) )
784 ** interval - number of baseband slots (meaning depends on mode)
789 void btm_pm_proc_mode_change (UINT8 hci_status, UINT16 hci_handle, UINT8 mode, UINT16 interval) argument
[all...]
/external/bluetooth/bluedroid/stack/btu/
H A Dbtu_hcif.c131 extern void hidd_pm_proc_mode_change( UINT8 hci_status, UINT8 mode, UINT16 interval );
1781 UINT16 interval; local
1787 STREAM_TO_UINT16 (interval, p);
1792 btm_pm_proc_mode_change (status, handle, current_mode, interval);
1794 btm_process_mode_change (status, handle, current_mode, interval);
1798 hidd_pm_proc_mode_change( status, current_mode, interval ) ;
/external/bluetooth/bluedroid/stack/gap/
H A Dgap_api.c45 ** the interval.
47 ** interval - Amount of time between the start of two inquiry scans.
60 UINT16 GAP_SetDiscoverableMode (UINT16 mode, UINT16 duration, UINT16 interval) argument
64 status = BTM_SetDiscoverability(mode, duration, interval);
81 ** interval - pointer to the amount of time between the start of
91 UINT16 GAP_ReadDiscoverableMode (UINT16 *duration, UINT16 *interval) argument
93 return (BTM_ReadDiscoverability(duration, interval));
113 ** the interval.
115 ** interval - Amount of time between the start of two page scans.
128 UINT16 GAP_SetConnectableMode (UINT16 mode, UINT16 duration, UINT16 interval) argument
223 GAP_ReadConnectableMode(UINT16 *duration, UINT16 *interval) argument
[all...]
/external/bluetooth/bluedroid/stack/gatt/
H A Dgatt_utils.c2759 UINT16 connectability, window, interval; local
2778 connectability = BTM_ReadConnectability (&window, &interval);
/external/bluetooth/bluedroid/stack/hcic/
H A Dhcicmds.c1550 BOOLEAN btsnd_hcic_write_pagescan_cfg(UINT16 interval, UINT16 window) argument
1566 UINT16_TO_STREAM (pp, interval);
1593 BOOLEAN btsnd_hcic_write_inqscan_cfg(UINT16 interval, UINT16 window) argument
1609 UINT16_TO_STREAM (pp, interval);
/external/chromium_org/base/files/
H A Dimportant_file_writer.h84 // to disk after the commit interval. If another ScheduleWrite is issued
103 void set_commit_interval(const TimeDelta& interval) { argument
104 commit_interval_ = interval;
/external/chromium_org/cc/output/
H A Dbegin_frame_args.cc15 interval(base::TimeDelta::FromMicroseconds(-1)) {
20 base::TimeDelta interval)
23 interval(interval)
28 base::TimeDelta interval) {
29 return BeginFrameArgs(frame_time, deadline, interval);
44 state->SetDouble("interval_us", interval.InMicroseconds());
50 // so we set the deadline to 0 and guess that the interval is 16 milliseconds.
18 BeginFrameArgs(base::TimeTicks frame_time, base::TimeTicks deadline, base::TimeDelta interval) argument
26 Create(base::TimeTicks frame_time, base::TimeTicks deadline, base::TimeDelta interval) argument
H A Dbegin_frame_args.h30 base::TimeDelta interval);
38 // This is the default interval to use to avoid sprinkling the code with
48 bool IsValid() const { return interval >= base::TimeDelta(); }
55 base::TimeDelta interval; member in struct:cc::BeginFrameArgs
60 base::TimeDelta interval);
H A Doutput_surface.cc75 base::TimeDelta interval) {
80 "interval",
81 interval.InSecondsF());
82 client_->CommitVSyncParameters(timebase, interval);
74 CommitVSyncParameters(base::TimeTicks timebase, base::TimeDelta interval) argument
H A Doutput_surface_unittest.cc43 base::TimeDelta interval) {
44 CommitVSyncParameters(timebase, interval);
42 CommitVSyncParametersForTesting(base::TimeTicks timebase, base::TimeDelta interval) argument
/external/chromium_org/cc/scheduler/
H A Ddelay_based_time_source.cc23 // fraction of an interval. This helps account for jitter in the timebase as
27 // kIntervalChangeThreshold is the fraction of the interval that will trigger an
28 // immediate interval change. kPhaseChangeThreshold is the fraction of the
29 // interval that will trigger an immediate phase change. If the changes are
41 base::TimeDelta interval,
44 new DelayBasedTimeSourceHighRes(interval, task_runner));
48 base::TimeDelta interval,
50 : DelayBasedTimeSource(interval, task_runner) {
62 base::TimeDelta interval,
64 return make_scoped_refptr(new DelayBasedTimeSource(interval, task_runne
40 Create( base::TimeDelta interval, base::SingleThreadTaskRunner* task_runner) argument
47 DelayBasedTimeSourceHighRes( base::TimeDelta interval, base::SingleThreadTaskRunner* task_runner) argument
61 Create( base::TimeDelta interval, base::SingleThreadTaskRunner* task_runner) argument
67 DelayBasedTimeSource( base::TimeDelta interval, base::SingleThreadTaskRunner* task_runner) argument
134 SetTimebaseAndInterval(base::TimeTicks timebase, base::TimeDelta interval) argument
[all...]
H A Ddelay_based_time_source.h31 // This timer implements a time source that achieves the specified interval
38 base::TimeDelta interval, base::SingleThreadTaskRunner* task_runner);
44 base::TimeDelta interval);
60 DelayBasedTimeSource(base::TimeDelta interval,
71 Parameters(base::TimeDelta interval, base::TimeTicks tick_target) argument
72 : interval(interval), tick_target(tick_target) {}
73 base::TimeDelta interval; member in struct:cc::DelayBasedTimeSource::Parameters
101 base::TimeDelta interval, base::SingleThreadTaskRunner* task_runner);
106 DelayBasedTimeSourceHighRes(base::TimeDelta interval,
[all...]
H A Ddelay_based_time_source_unittest.cc124 // At 60Hz, when the tick returns at exactly 2*interval after the requested next
146 // At 60Hz, when the tick returns at 2*interval and a bit after the requested
191 // If the timebase and interval are updated with a jittery source, we want to
281 // Tick, then double the interval.
295 // Tick, then halve the interval.
512 // int(big_now / interval) < 0, so this causes a crash if the number of
514 base::TimeDelta interval = base::TimeDelta::FromInternalValue(4000); local
521 FakeDelayBasedTimeSource::Create(interval, task_runner.get());
H A Dscheduler.cc32 base::TimeDelta interval) {
33 time_source_->SetTimebaseAndInterval(timebase, interval);
140 base::TimeDelta interval) {
142 if (interval == base::TimeDelta())
143 interval = BeginFrameArgs::DefaultInterval();
144 vsync_interval_ = interval;
146 synthetic_begin_frame_source_->CommitVSyncParameters(timebase, interval);
267 begin_impl_frame_args_.interval <= base::TimeDelta())
273 int64 intervals = 1 + ((now - timebase) / begin_impl_frame_args_.interval);
274 return timebase + (begin_impl_frame_args_.interval * interval
30 CommitVSyncParameters( base::TimeTicks timebase, base::TimeDelta interval) argument
139 CommitVSyncParameters(base::TimeTicks timebase, base::TimeDelta interval) argument
[all...]
/external/chromium_org/cc/surfaces/
H A Ddisplay.cc144 base::TimeDelta interval) {
145 client_->CommitVSyncParameters(timebase, interval);
143 CommitVSyncParameters(base::TimeTicks timebase, base::TimeDelta interval) argument
/external/chromium_org/cc/test/
H A Dbegin_frame_args_test.cc26 int64 interval) {
29 base::TimeDelta::FromInternalValue(interval));
57 (lhs.interval == rhs.interval);
68 << args.interval.InMicroseconds() << "us)";
24 CreateBeginFrameArgsForTesting(int64 frame_time, int64 deadline, int64 interval) argument
H A Dscheduler_test_common.cc21 base::TimeDelta interval,
23 : DelayBasedTimeSource(interval, task_runner), now_src_(now_src) {
19 TestDelayBasedTimeSource( scoped_refptr<TestNowSource> now_src, base::TimeDelta interval, OrderedSimpleTaskRunner* task_runner) argument
H A Dscheduler_test_common.h36 base::TimeDelta interval, base::SingleThreadTaskRunner* task_runner) {
37 return make_scoped_refptr(new FakeDelayBasedTimeSource(interval,
45 FakeDelayBasedTimeSource(base::TimeDelta interval, argument
47 : DelayBasedTimeSource(interval, task_runner) {}
57 base::TimeDelta interval,
60 new TestDelayBasedTimeSource(now_src, interval, task_runner));
65 base::TimeDelta interval,
35 Create( base::TimeDelta interval, base::SingleThreadTaskRunner* task_runner) argument
55 Create( scoped_refptr<TestNowSource> now_src, base::TimeDelta interval, OrderedSimpleTaskRunner* task_runner) argument
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_impl.cc107 // that time interval, and then uploads should have a chance to be processed.
932 // Lazily create the time_source adapter so that we can vary the interval for
1646 // Cache the begin impl frame interval
1647 begin_impl_frame_interval_ = args.interval;
2103 base::TimeDelta interval) {
2104 client_->CommitVSyncParameters(timebase, interval);
2102 CommitVSyncParameters(base::TimeTicks timebase, base::TimeDelta interval) argument
H A Dthread_proxy.cc328 base::TimeDelta interval) {
329 impl().scheduler->CommitVSyncParameters(timebase, interval);
327 CommitVSyncParameters(base::TimeTicks timebase, base::TimeDelta interval) argument

Completed in 899 milliseconds

1234567891011