Home
last modified time | relevance | path

Searched refs:msec (Results 1 – 15 of 15) sorted by relevance

/wlan-driver/qca-wifi-host-cmn/qdf/linux/src/
H A Dqdf_periodic_work.c75 uint32_t msec; in __qdf_periodic_work_handler() local
80 msec = pwork->msec; in __qdf_periodic_work_handler()
81 if (msec) in __qdf_periodic_work_handler()
82 schedule_delayed_work(&pwork->dwork, msecs_to_jiffies(msec)); in __qdf_periodic_work_handler()
104 pwork->msec = 0; in __qdf_periodic_work_create()
116 bool qdf_periodic_work_start(struct qdf_periodic_work *pwork, uint32_t msec) in qdf_periodic_work_start() argument
118 QDF_BUG(msec); in qdf_periodic_work_start()
119 if (!msec) in qdf_periodic_work_start()
122 pwork->msec = msec; in qdf_periodic_work_start()
124 return schedule_delayed_work(&pwork->dwork, msecs_to_jiffies(msec)); in qdf_periodic_work_start()
[all …]
H A Di_qdf_timer.h46 #define __qdf_scaled_msecs_to_jiffies(msec) \ argument
47 (qdf_timer_get_multiplier() * msecs_to_jiffies(msec))
133 static inline void __qdf_timer_start(struct __qdf_timer_t *timer, uint32_t msec) in __qdf_timer_start() argument
137 os_timer->expires = jiffies + __qdf_scaled_msecs_to_jiffies(msec); in __qdf_timer_start()
142 void __qdf_timer_start_on(struct __qdf_timer_t *timer, uint32_t msec, in __qdf_timer_start_on() argument
147 os_timer->expires = jiffies + __qdf_scaled_msecs_to_jiffies(msec); in __qdf_timer_start_on()
151 static inline bool __qdf_timer_mod(struct __qdf_timer_t *timer, uint32_t msec) in __qdf_timer_mod() argument
154 jiffies + __qdf_scaled_msecs_to_jiffies(msec)); in __qdf_timer_mod()
H A Dqdf_delayed_work.c113 bool __qdf_delayed_work_start(struct qdf_delayed_work *dwork, uint32_t msec) in __qdf_delayed_work_start() argument
115 return schedule_delayed_work(&dwork->dwork, msecs_to_jiffies(msec)); in __qdf_delayed_work_start()
H A Dqdf_lock.c330 QDF_STATUS qdf_wake_lock_timeout_acquire(qdf_wake_lock_t *lock, uint32_t msec) in qdf_wake_lock_timeout_acquire() argument
332 pm_wakeup_ws_event(lock->priv, msec, true); in qdf_wake_lock_timeout_acquire()
336 QDF_STATUS qdf_wake_lock_timeout_acquire(qdf_wake_lock_t *lock, uint32_t msec) in qdf_wake_lock_timeout_acquire() argument
341 __pm_wakeup_event(&(lock->lock), msec); in qdf_wake_lock_timeout_acquire()
345 QDF_STATUS qdf_wake_lock_timeout_acquire(qdf_wake_lock_t *lock, uint32_t msec) in qdf_wake_lock_timeout_acquire() argument
/wlan-driver/qca-wifi-host-cmn/qdf/inc/
H A Dqdf_timer.h63 static inline void qdf_timer_start(qdf_timer_t *timer, int msec) in qdf_timer_start() argument
65 __qdf_timer_start(timer, msec); in qdf_timer_start()
77 static inline void qdf_timer_start_on(qdf_timer_t *timer, int msec, int cpu) in qdf_timer_start_on() argument
79 __qdf_timer_start_on(timer, msec, cpu); in qdf_timer_start_on()
93 static inline bool qdf_timer_mod(qdf_timer_t *timer, int msec) in qdf_timer_mod() argument
95 return __qdf_timer_mod(timer, msec); in qdf_timer_mod()
H A Dqdf_delayed_work.h82 #define qdf_delayed_work_start(dwork, msec) \ argument
83 __qdf_delayed_work_start(dwork, msec)
85 bool __qdf_delayed_work_start(struct qdf_delayed_work *dwork, uint32_t msec);
H A Dqdf_periodic_work.h47 uint32_t msec; member
85 bool qdf_periodic_work_start(struct qdf_periodic_work *pwork, uint32_t msec);
H A Dqdf_lock.h669 uint32_t msec);
/wlan-driver/qcacld-3.0/core/cds/inc/
H A Dcds_utils.h106 static inline void cds_host_diag_log_work(qdf_wake_lock_t *lock, uint32_t msec, in cds_host_diag_log_work() argument
112 msec, WIFI_POWER_EVENT_WAKELOCK_TAKEN); in cds_host_diag_log_work()
/wlan-driver/wpa_supplicant_8/wpa_supplicant/
H A Devents.c
H A DREADME-P2P
/wlan-driver/qcacld-3.0/core/wma/inc/
H A Dwma.h221 #define WMA_MSEC_TO_USEC(msec) (msec * 1000) /* msec to usec */ argument
H A Dwma_internal.h1501 void wma_acquire_wakelock(qdf_wake_lock_t *wl, uint32_t msec);
/wlan-driver/qca-wifi-host-cmn/wmi/inc/
H A Dwmi_unified_param.h86 #define WMI_MSEC_TO_USEC(msec) (msec * 1000) argument
110 #define WMI_MSEC_TO_USEC(msec) (msec * 1000) /* msec to usec */ argument
/wlan-driver/qcacld-3.0/core/wma/src/
H A Dwma_utils.c4056 void wma_acquire_wakelock(qdf_wake_lock_t *wl, uint32_t msec) in wma_acquire_wakelock() argument
4060 cds_host_diag_log_work(wl, msec, WIFI_POWER_EVENT_WAKELOCK_WMI_CMD_RSP); in wma_acquire_wakelock()
4061 qdf_wake_lock_timeout_acquire(wl, msec); in wma_acquire_wakelock()