Searched refs:old_state (Results 1 - 25 of 48) sorted by relevance

12

/freebsd-current/contrib/wpa/src/fst/
H A Dfst_ctrl_aux.h67 enum fst_session_state old_state; member in struct:fst_event_extra::fst_event_extra_session_state
/freebsd-current/sys/arm/broadcom/bcm2835/
H A Draspberrypi_gpio.c305 union msg_get_gpio_state old_state; local
317 bzero(&old_state, sizeof(old_state));
320 old_state.req.gpio = RPI_FW_GPIO_BASE + pin;
325 BCM2835_FIRMWARE_TAG_GET_GPIO_STATE, &old_state, sizeof(old_state));
327 if (rv == 0 && old_state.resp.gpio == 0) {
329 new_state.req.state = !old_state.resp.state;
334 if (rv == 0 && (old_state.resp.gpio != 0 || new_state.resp.gpio != 0))
/freebsd-current/contrib/jemalloc/src/
H A Dtsd.c172 uint8_t old_state; local
175 old_state = tsd_atomic_exchange(&tsd->state, new_state,
177 } while (old_state == tsd_state_nominal_recompute);
184 uint8_t old_state = tsd_atomic_load(&tsd->state, ATOMIC_RELAXED); local
185 if (old_state > tsd_state_nominal_max) {
/freebsd-current/sys/dev/acpica/
H A Dacpi_pci.c217 int old_state, error; local
233 old_state = pci_get_powerstate(child);
234 if (old_state < state && pci_do_power_suspend) {
249 if (old_state > state && pci_do_power_resume)
/freebsd-current/sys/contrib/dev/rtw89/
H A Dmac80211.c530 enum ieee80211_sta_state old_state,
535 if (old_state == IEEE80211_STA_NOTEXIST &&
539 if (old_state == IEEE80211_STA_AUTH &&
546 if (old_state == IEEE80211_STA_ASSOC &&
550 if (old_state == IEEE80211_STA_AUTH &&
554 if (old_state == IEEE80211_STA_NONE &&
564 enum ieee80211_sta_state old_state,
572 ret = __rtw89_ops_sta_state(hw, vif, sta, old_state, new_state);
527 __rtw89_ops_sta_state(struct ieee80211_hw *hw, struct ieee80211_vif *vif, struct ieee80211_sta *sta, enum ieee80211_sta_state old_state, enum ieee80211_sta_state new_state) argument
561 rtw89_ops_sta_state(struct ieee80211_hw *hw, struct ieee80211_vif *vif, struct ieee80211_sta *sta, enum ieee80211_sta_state old_state, enum ieee80211_sta_state new_state) argument
/freebsd-current/sys/arm/mv/
H A Dgpio.c786 uint32_t *old_state; local
793 old_state = &sc->debounced_state_hi;
796 old_state = &sc->debounced_state_lo;
799 *old_state |= (1 << pin);
801 *old_state &= ~(1 << pin);
/freebsd-current/contrib/wpa/wpa_supplicant/
H A Dnotify.c87 enum wpa_states old_state)
99 else if (old_state >= WPA_ASSOCIATED &&
107 else if (old_state >= WPA_ASSOCIATED && new_state < WPA_ASSOCIATED)
85 wpas_notify_state_changed(struct wpa_supplicant *wpa_s, enum wpa_states new_state, enum wpa_states old_state) argument
H A Dnotify.h26 enum wpa_states old_state);
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dz_Linux_util.cpp497 int status, old_type, old_state; local
533 status = pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &old_state);
578 int status, old_type, old_state; local
610 status = pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &old_state);
1234 int status, old_state; local
1235 status = pthread_setcancelstate(new_state, &old_state);
1237 KMP_DEBUG_ASSERT(old_state == PTHREAD_CANCEL_DISABLE);
1241 void __kmp_disable(int *old_state) { argument
1244 status = pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, old_state);
H A Dkmp_stats.h554 stats_state_e old_state; member in class:blockThreadState
558 : state_pointer(thread_state_pointer), old_state(*thread_state_pointer) {
561 ~blockThreadState() { *state_pointer = old_state; }
H A Dz_Windows_NT_util.cpp307 void __kmp_disable(int *old_state) { argument
308 *old_state = 0;
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dvdev_initialize.c156 vdev_initializing_state_t old_state = vd->vdev_initialize_state; local
180 if (old_state == VDEV_INITIALIZE_ACTIVE ||
181 old_state == VDEV_INITIALIZE_SUSPENDED)
H A Dvdev_trim.c339 vdev_trim_state_t old_state = vd->vdev_trim_state; local
340 boolean_t resumed = (old_state == VDEV_TRIM_SUSPENDED);
361 if (old_state == VDEV_TRIM_ACTIVE ||
362 old_state == VDEV_TRIM_SUSPENDED) {
H A Darc.c2390 arc_state_t *old_state; local
2403 old_state = hdr->b_l1hdr.b_state;
2408 IMPLY(GHOST_STATE(old_state), hdr->b_l1hdr.b_buf == NULL);
2410 IMPLY(old_state == arc_anon, hdr->b_l1hdr.b_buf == NULL ||
2413 old_state = arc_l2c_only;
2418 if (GHOST_STATE(old_state))
2424 ASSERT3P(new_state, !=, old_state);
2431 if (old_state != arc_anon && old_state != arc_l2c_only) {
2435 multilist_remove(&old_state
[all...]
/freebsd-current/sys/contrib/dev/iwlwifi/mvm/
H A Dmac80211.c3581 enum ieee80211_sta_state old_state,
3591 return iwl_mvm_mac_sta_state_common(hw, vif, sta, old_state, new_state,
3857 enum ieee80211_sta_state old_state,
3869 sta->addr, old_state, new_state);
3884 if (old_state == IEEE80211_STA_NONE &&
3917 if (old_state == IEEE80211_STA_NOTEXIST &&
3923 } else if (old_state == IEEE80211_STA_NONE &&
3932 } else if (old_state == IEEE80211_STA_AUTH &&
3936 } else if (old_state == IEEE80211_STA_ASSOC &&
3940 } else if (old_state
3578 iwl_mvm_mac_sta_state(struct ieee80211_hw *hw, struct ieee80211_vif *vif, struct ieee80211_sta *sta, enum ieee80211_sta_state old_state, enum ieee80211_sta_state new_state) argument
3854 iwl_mvm_mac_sta_state_common(struct ieee80211_hw *hw, struct ieee80211_vif *vif, struct ieee80211_sta *sta, enum ieee80211_sta_state old_state, enum ieee80211_sta_state new_state, const struct iwl_mvm_sta_state_ops *callbacks) argument
[all...]
H A Dsta.h622 enum ieee80211_sta_state old_state,
H A Dmld-mac80211.c612 enum ieee80211_sta_state old_state,
622 return iwl_mvm_mac_sta_state_common(hw, vif, sta, old_state, new_state,
609 iwl_mvm_mld_mac_sta_state(struct ieee80211_hw *hw, struct ieee80211_vif *vif, struct ieee80211_sta *sta, enum ieee80211_sta_state old_state, enum ieee80211_sta_state new_state) argument
/freebsd-current/contrib/ntp/sntp/libevent/
H A Dbufferevent_openssl.c328 unsigned old_state : 2; member in struct:bufferevent_openssl
1316 return be_openssl_set_fd(bev_ssl, bev_ssl->old_state, data->fd);
1385 bev_ssl->old_state = state;
/freebsd-current/sys/contrib/dev/mediatek/mt76/mt7921/
H A Dmain.c877 enum ieee80211_sta_state old_state,
884 mt76_connac_sta_state_dp(&dev->mt76, old_state, new_state);
888 return mt76_sta_state(hw, vif, sta, old_state, new_state);
874 mt7921_sta_state(struct ieee80211_hw *hw, struct ieee80211_vif *vif, struct ieee80211_sta *sta, enum ieee80211_sta_state old_state, enum ieee80211_sta_state new_state) argument
/freebsd-current/contrib/libevent/
H A Dbufferevent_openssl.c328 unsigned old_state : 2; member in struct:bufferevent_openssl
1316 return be_openssl_set_fd(bev_ssl, bev_ssl->old_state, data->fd);
1385 bev_ssl->old_state = state;
/freebsd-current/sys/contrib/dev/mediatek/mt76/
H A Dmac80211.c1486 enum ieee80211_sta_state old_state,
1492 if (old_state == IEEE80211_STA_NOTEXIST &&
1496 if (old_state == IEEE80211_STA_AUTH &&
1501 if (old_state == IEEE80211_STA_NONE &&
1484 mt76_sta_state(struct ieee80211_hw *hw, struct ieee80211_vif *vif, struct ieee80211_sta *sta, enum ieee80211_sta_state old_state, enum ieee80211_sta_state new_state) argument
/freebsd-current/contrib/dialog/
H A Dformbox.c728 int old_state = state; local
731 if (old_state >= 0 && state == sTEXT) {
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp1322 const StateType old_state = m_public_state.GetValue(); local
1335 const bool old_state_is_stopped = StateIsStoppedState(old_state, false);
1438 const StateType old_state = m_private_state.GetValueNoLock(); local
1439 state_changed = old_state != new_state;
1441 const bool old_state_is_stopped = StateIsStoppedState(old_state, false);
4843 lldb::StateType old_state = eStateInvalid;
4869 old_state = m_public_state.GetValue();
5320 if (old_state != eStateInvalid)
5321 m_public_state.SetValueNoLock(old_state);
/freebsd-current/sys/net/
H A Dieee8023ad_lacp.c466 uint8_t old_state; local
483 old_state = lp->lp_state;
499 if (old_state != lp->lp_state || old_key != lp->lp_key) {
/freebsd-current/sys/ofed/drivers/infiniband/core/
H A Dib_cma.c363 enum rdma_cm_state old_state; member in struct:cma_work
2577 work->old_state = RDMA_CM_ROUTE_QUERY;
2640 if (!cma_comp_exch(id_priv, work->old_state, work->new_state))
2667 work->old_state = RDMA_CM_ROUTE_QUERY;
2726 work->old_state = RDMA_CM_ROUTE_QUERY;
2833 work->old_state = RDMA_CM_ROUTE_QUERY;
3013 work->old_state = RDMA_CM_ADDR_QUERY;
3043 work->old_state = RDMA_CM_ADDR_QUERY;

Completed in 528 milliseconds

12