OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxLatencyNs
(Results
1 - 4
of
4
) sorted by null
/device/google/contexthub/firmware/src/platform/stm32f4xx/
exti.c
110
static void extiUpdateMaxLatency(uint32_t
maxLatencyNs
)
112
if (!
maxLatencyNs
&& mMaxLatency)
114
else if (
maxLatencyNs
&& !mMaxLatency)
115
platRequestDevInSleepMode(Stm32sleepDevExti,
maxLatencyNs
);
116
else if (
maxLatencyNs
&& mMaxLatency)
117
platAdjustDevInSleepMode(Stm32sleepDevExti,
maxLatencyNs
);
118
mMaxLatency =
maxLatencyNs
;
166
int extiSetMaxLatency(struct ChainedIsr *isr, uint32_t
maxLatencyNs
)
173
if (
maxLatencyNs
!= isr->
maxLatencyNs
) {
[
all
...]
/device/google/contexthub/firmware/inc/
isr.h
38
uint32_t
maxLatencyNs
;
101
if (!latency || (curIsr->
maxLatencyNs
&& curIsr->
maxLatencyNs
< latency))
102
latency = curIsr->
maxLatencyNs
;
/device/google/contexthub/firmware/inc/platform/stm32f4xx/
exti.h
71
int extiSetMaxLatency(struct ChainedIsr *isr, uint32_t
maxLatencyNs
);
/device/google/contexthub/firmware/src/drivers/vsync/
vsync.c
202
mTask.isr.
maxLatencyNs
= MAX_VSYNC_INT_LATENCY;
Completed in 91 milliseconds