/wlan-driver/qca-wifi-host-cmn/qdf/linux/src/ |
H A D | qdf_periodic_work.c | 75 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 D | i_qdf_timer.h | 46 #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 D | qdf_delayed_work.c | 113 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 D | qdf_lock.c | 330 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 D | qdf_timer.h | 63 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 D | qdf_delayed_work.h | 82 #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 D | qdf_periodic_work.h | 47 uint32_t msec; member 85 bool qdf_periodic_work_start(struct qdf_periodic_work *pwork, uint32_t msec);
|
H A D | qdf_lock.h | 669 uint32_t msec);
|
/wlan-driver/qcacld-3.0/core/cds/inc/ |
H A D | cds_utils.h | 106 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 D | events.c |
|
H A D | README-P2P |
|
/wlan-driver/qcacld-3.0/core/wma/inc/ |
H A D | wma.h | 221 #define WMA_MSEC_TO_USEC(msec) (msec * 1000) /* msec to usec */ argument
|
H A D | wma_internal.h | 1501 void wma_acquire_wakelock(qdf_wake_lock_t *wl, uint32_t msec);
|
/wlan-driver/qca-wifi-host-cmn/wmi/inc/ |
H A D | wmi_unified_param.h | 86 #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 D | wma_utils.c | 4056 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()
|