| /freebsd-14-stable/sys/ufs/ffs/ |
| HD | softdep.h | 221 #define WK_DATA(wk) ((void *)(wk)) argument 222 #define WK_PAGEDEP(wk) ((struct pagedep *)(wk)) argument 223 #define WK_INODEDEP(wk) ((struct inodedep *)(wk)) argument 224 #define WK_BMSAFEMAP(wk) ((struct bmsafemap *)(wk)) argument 225 #define WK_NEWBLK(wk) ((struct newblk *)(wk)) argument 226 #define WK_ALLOCDIRECT(wk) ((struct allocdirect *)(wk)) argument 227 #define WK_INDIRDEP(wk) ((struct indirdep *)(wk)) argument 228 #define WK_ALLOCINDIR(wk) ((struct allocindir *)(wk)) argument 229 #define WK_FREEFRAG(wk) ((struct freefrag *)(wk)) argument 230 #define WK_FREEBLKS(wk) ((struct freeblks *)(wk)) argument [all …]
|
| HD | ffs_softdep.c | 1079 struct worklist *wk; in jwork_move() local 1085 LIST_FOREACH_SAFE(wk, dst, wk_list, wkn) { in jwork_move() 1086 if (wk->wk_type == D_JSEGDEP) in jwork_move() 1087 jsegdep = jsegdep_merge(WK_JSEGDEP(wk), jsegdep); in jwork_move() 1088 else if (wk->wk_type == D_FREEDEP) in jwork_move() 1089 freedep = freedep_merge(WK_FREEDEP(wk), freedep); in jwork_move() 1092 while ((wk = LIST_FIRST(src)) != NULL) { in jwork_move() 1093 WORKLIST_REMOVE(wk); in jwork_move() 1094 WORKLIST_INSERT(dst, wk); in jwork_move() 1095 if (wk->wk_type == D_JSEGDEP) { in jwork_move() [all …]
|
| /freebsd-14-stable/sys/tests/framework/ |
| HD | kern_testfrwk.c | 88 struct kern_test_entry *wk; in kfrwk_task() local 97 wk = TAILQ_FIRST(&tf->kfrwk_testq); in kfrwk_task() 98 if (wk) { in kfrwk_task() 99 wk->kt_data.tot_threads_running--; in kfrwk_task() 101 memcpy(&kt_data, &wk->kt_data, sizeof(kt_data)); in kfrwk_task() 102 if (wk->kt_data.tot_threads_running == 0) { in kfrwk_task() 103 TAILQ_REMOVE(&tf->kfrwk_testq, wk, next); in kfrwk_task() 109 if (wk->kt_e) { in kfrwk_task() 110 ktf = wk->kt_e->func; in kfrwk_task() 114 if (wk && free_mem) { in kfrwk_task() [all …]
|
| /freebsd-14-stable/contrib/sendmail/src/ |
| HD | convtime.c | 130 int wk, dy, hr, mi, se; local 147 wk = 0; 153 wk = intvl; 171 if (wk > 0) 173 (void) sm_snprintf(p, SPACELEFT(buf, p), ", %d week%s", wk, 174 PLURAL(wk));
|
| /freebsd-14-stable/contrib/wpa/src/drivers/ |
| HD | driver_bsd.c | 268 struct ieee80211req_del_key wk; in bsd_del_key() local 270 os_memset(&wk, 0, sizeof(wk)); in bsd_del_key() 273 wk.idk_keyix = key_idx; in bsd_del_key() 277 os_memcpy(wk.idk_macaddr, addr, IEEE80211_ADDR_LEN); in bsd_del_key() 278 wk.idk_keyix = (u_int8_t) IEEE80211_KEYIX_NONE; /* XXX */ in bsd_del_key() 281 return set80211var(priv, IEEE80211_IOC_DELKEY, &wk, sizeof(wk)); in bsd_del_key() 344 struct ieee80211req_key wk; in bsd_set_key() local 370 os_memset(&wk, 0, sizeof(wk)); in bsd_set_key() 373 wk.ik_type = IEEE80211_CIPHER_WEP; in bsd_set_key() 376 wk.ik_type = IEEE80211_CIPHER_TKIP; in bsd_set_key() [all …]
|
| HD | driver_atheros.c | 469 struct ieee80211req_del_key wk; in atheros_del_key() local 475 os_memset(&wk, 0, sizeof(wk)); in atheros_del_key() 477 os_memcpy(wk.idk_macaddr, addr, IEEE80211_ADDR_LEN); in atheros_del_key() 478 wk.idk_keyix = (u8) IEEE80211_KEYIX_NONE; in atheros_del_key() 480 wk.idk_keyix = key_idx; in atheros_del_key() 483 ret = set80211priv(drv, IEEE80211_IOCTL_DELKEY, &wk, sizeof(wk)); in atheros_del_key() 497 struct ieee80211req_key wk; in atheros_set_key() local 554 if (key_len > sizeof(wk.ik_keydata)) { in atheros_set_key() 560 os_memset(&wk, 0, sizeof(wk)); in atheros_set_key() 561 wk.ik_type = cipher; in atheros_set_key() [all …]
|
| /freebsd-14-stable/sys/net80211/ |
| HD | ieee80211_ddb.c | 916 _db_show_key(const char *tag, int ix, const struct ieee80211_key *wk) in _db_show_key() argument 919 const struct ieee80211_cipher *cip = wk->wk_cipher; in _db_show_key() 920 int keylen = wk->wk_keylen; in _db_show_key() 926 db_printf(" wepkey %u:%s", wk->wk_keyix, in _db_show_key() 933 db_printf(" TKIP %u:%u-bit", wk->wk_keyix, 8*keylen); in _db_show_key() 936 db_printf(" AES-OCB %u:%u-bit", wk->wk_keyix, 8*keylen); in _db_show_key() 939 db_printf(" AES-CCM %u:%u-bit", wk->wk_keyix, 8*keylen); in _db_show_key() 942 db_printf(" CKIP %u:%u-bit", wk->wk_keyix, 8*keylen); in _db_show_key() 945 db_printf(" NULL %u:%u-bit", wk->wk_keyix, 8*keylen); in _db_show_key() 949 cip->ic_cipher, wk->wk_keyix, 8*keylen); in _db_show_key() [all …]
|
| HD | ieee80211_ioctl.c | 79 struct ieee80211_key *wk; in ieee80211_ioctl_getkey() local 94 wk = &ni->ni_ucastkey; in ieee80211_ioctl_getkey() 98 wk = &vap->iv_nw_keys[kid]; in ieee80211_ioctl_getkey() 102 cip = wk->wk_cipher; in ieee80211_ioctl_getkey() 104 ik.ik_keylen = wk->wk_keylen; in ieee80211_ioctl_getkey() 105 ik.ik_flags = wk->wk_flags & (IEEE80211_KEY_XMIT | IEEE80211_KEY_RECV); in ieee80211_ioctl_getkey() 106 if (wk->wk_keyix == vap->iv_def_txkey) in ieee80211_ioctl_getkey() 110 ik.ik_keyrsc = wk->wk_keyrsc[IEEE80211_NONQOS_TID]; in ieee80211_ioctl_getkey() 111 ik.ik_keytsc = wk->wk_keytsc; in ieee80211_ioctl_getkey() 112 memcpy(ik.ik_keydata, wk->wk_key, wk->wk_keylen); in ieee80211_ioctl_getkey() [all …]
|
| /freebsd-14-stable/sys/contrib/dev/iwlwifi/fw/ |
| HD | runtime.h | 74 struct delayed_work wk; member 162 struct delayed_work wk; member 203 cancel_delayed_work_sync(&fwrt->dump.wks[i].wk); in iwl_fw_runtime_free()
|
| HD | dbg.h | 231 flush_delayed_work(&fwrt->dump.wks[i].wk); in iwl_fw_flush_dumps() 240 cancel_delayed_work_sync(&fwrt->timestamp.wk); in iwl_fw_cancel_timestamp() 247 cancel_delayed_work_sync(&fwrt->timestamp.wk); in iwl_fw_suspend_timestamp() 255 schedule_delayed_work(&fwrt->timestamp.wk, in iwl_fw_resume_timestamp()
|
| HD | debugfs.c | 162 container_of(work, struct iwl_fw_runtime, timestamp.wk.work); in iwl_fw_timestamp_marker_wk() 167 schedule_delayed_work(&fwrt->timestamp.wk, in iwl_fw_timestamp_marker_wk() 185 schedule_delayed_work(&fwrt->timestamp.wk, in iwl_fw_trigger_timestamp() 401 INIT_DELAYED_WORK(&fwrt->timestamp.wk, iwl_fw_timestamp_marker_wk); in iwl_fwrt_dbgfs_register()
|
| HD | init.c | 36 INIT_DELAYED_WORK(&fwrt->dump.wks[i].wk, iwl_fw_error_dump_wk); in iwl_fw_runtime_init()
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/sound/ |
| HD | cs35l35.txt | 96 - cirrus,classh-wk-fet-disable 97 - cirrus,classh-wk-fet-delay 98 - cirrus,classh-wk-fet-thld 163 cirrus,classh-wk-fet-disable = <0x01>; 164 cirrus,classh-wk-fet-delay = <0x04>; 165 cirrus,classh-wk-fet-thld = <0x01>;
|
| HD | cs35l36.txt | 60 - cirrus,classh-wk-fet-delay : Weak-FET entry delay. Controls the delay
|
| /freebsd-14-stable/usr.sbin/cron/doc/ |
| HD | CONVERSION | 37 15 5 * * 0 su uucp < /usr/lib/uucp/uudemon.wk 43 15 5 * * 0 echo /usr/lib/uucp/uudemon.wk | su uucp 49 15 5 * * 0 uucp /usr/lib/uucp/uudemon.wk 62 15 5 * * 0 uudemon.wk
|
| /freebsd-14-stable/contrib/tcsh/ |
| HD | glob.c | 713 __Char wc, wk, wc1; in match() local 720 lwk = one_mbtowc(&wk, name, MB_LEN_MAX); in match() 755 if (globcharcoll(wc1, wk, 0) <= 0 && in match() 756 globcharcoll(wk, wc2, 0) <= 0) in match() 758 } else if (wc == wk) in match() 770 if (*name == EOS || samecase(wk) != samecase(wc)) in match()
|
| /freebsd-14-stable/stand/ficl/ |
| HD | tools.c | 137 WORDKIND wk = ficlWordClassify(pFW); 138 return ((wk != COLON) && (wk != DOES)); 384 WORDKIND wk = ficlWordClassify(xt); in ficlDebugXT() local 389 switch (wk) in ficlDebugXT()
|
| /freebsd-14-stable/sys/contrib/dev/iwlwifi/mvm/ |
| HD | ops.c | 750 static void iwl_mvm_async_handlers_wk(struct work_struct *wk); 1148 static void iwl_mvm_sap_connected_wk(struct work_struct *wk) in iwl_mvm_sap_connected_wk() argument 1151 container_of(wk, struct iwl_mvm, sap_connected_wk); in iwl_mvm_sap_connected_wk() 1217 struct wiphy_work *wk) in iwl_mvm_trig_link_selection() argument 1220 container_of(wk, struct iwl_mvm, trig_link_selection_wk); in iwl_mvm_trig_link_selection() 1673 struct wiphy_work *wk) in iwl_mvm_async_handlers_wiphy_wk() argument 1676 container_of(wk, struct iwl_mvm, async_handlers_wiphy_wk); in iwl_mvm_async_handlers_wiphy_wk() 1682 static void iwl_mvm_async_handlers_wk(struct work_struct *wk) in iwl_mvm_async_handlers_wk() argument 1685 container_of(wk, struct iwl_mvm, async_handlers_wk); in iwl_mvm_async_handlers_wk() 1970 static void iwl_mvm_reprobe_wk(struct work_struct *wk) in iwl_mvm_reprobe_wk() argument [all …]
|
| HD | time-event.h | 168 void iwl_mvm_roc_done_wk(struct work_struct *wk);
|
| HD | ptp.c | 194 static void iwl_mvm_ptp_work(struct work_struct *wk) in iwl_mvm_ptp_work() argument 196 struct iwl_mvm *mvm = container_of(wk, struct iwl_mvm, in iwl_mvm_ptp_work()
|
| HD | sta.h | 599 void iwl_mvm_add_new_dqa_stream_wk(struct work_struct *wk);
|
| HD | utils.c | 908 static void iwl_mvm_tcm_uapsd_nonagg_detected_wk(struct work_struct *wk) in iwl_mvm_tcm_uapsd_nonagg_detected_wk() argument 914 mvmvif = container_of(wk, struct iwl_mvm_vif, in iwl_mvm_tcm_uapsd_nonagg_detected_wk()
|
| /freebsd-14-stable/sys/dev/ipw/ |
| HD | if_ipw.c | 2009 struct ieee80211_key *wk; in ipw_setwepkeys() local 2013 wk = &vap->iv_nw_keys[i]; in ipw_setwepkeys() 2015 if (wk->wk_cipher == NULL || in ipw_setwepkeys() 2016 wk->wk_cipher->ic_cipher != IEEE80211_CIPHER_WEP) in ipw_setwepkeys() 2020 wepkey.len = wk->wk_keylen; in ipw_setwepkeys() 2022 memcpy(wepkey.key, wk->wk_key, wk->wk_keylen); in ipw_setwepkeys()
|
| /freebsd-14-stable/sys/dev/usb/wlan/ |
| HD | if_uath.c | 2082 uath_set_key(struct uath_softc *sc, const struct ieee80211_key *wk, in uath_set_key() argument 2103 for (i = 0; i < wk->wk_keylen; i++) in uath_set_key() 2104 crypto.key[i] = wk->wk_key[i] ^ 0xaa; in uath_set_key() 2107 "setting crypto key index=%d len=%d\n", index, wk->wk_keylen); in uath_set_key() 2123 const struct ieee80211_key *wk = &vap->iv_nw_keys[i]; in uath_set_keys() local 2125 if (wk->wk_flags & (IEEE80211_KEY_XMIT|IEEE80211_KEY_RECV)) { in uath_set_keys() 2126 error = uath_set_key(sc, wk, i); in uath_set_keys()
|
| /freebsd-14-stable/sys/compat/linuxkpi/common/src/ |
| HD | linux_80211.c | 7044 struct wiphy_work *wk; local 7052 wk = list_first_entry_or_null(&lwiphy->wwk_list, struct wiphy_work, entry); 7054 if (wk == NULL) { 7059 list_del_init(&wk->entry); 7067 wk->fn(wiphy, wk); 7111 struct wiphy_work *wk; local 7123 wk = list_first_entry(&lwiphy->wwk_list, struct wiphy_work, 7125 list_del_init(&wk->entry); 7127 wk->fn(wiphy, wk); 7129 if (wk == wwk)
|