/freebsd/contrib/wpa/src/ap/ |
H A D | ieee802_11_vht.c | 77 struct ieee80211_vht_operation *oper; in hostapd_eid_vht_operation() local 91 *pos++ = sizeof(*oper); in hostapd_eid_vht_operation() 93 oper = (struct ieee80211_vht_operation *) pos; in hostapd_eid_vht_operation() 94 os_memset(oper, 0, sizeof(*oper)); in hostapd_eid_vht_operation() 109 oper->vht_op_info_chan_center_freq_seg0_idx = seg0; in hostapd_eid_vht_operation() 110 oper->vht_op_info_chan_center_freq_seg1_idx = seg1; in hostapd_eid_vht_operation() 112 oper->vht_op_info_chwidth = oper_chwidth; in hostapd_eid_vht_operation() 118 oper->vht_op_info_chwidth = CHANWIDTH_80MHZ; in hostapd_eid_vht_operation() 119 oper->vht_op_info_chan_center_freq_seg1_idx = in hostapd_eid_vht_operation() 120 oper->vht_op_info_chan_center_freq_seg0_idx; in hostapd_eid_vht_operation() [all …]
|
H A D | ieee802_11_ht.c | 84 struct ieee80211_ht_operation *oper; in hostapd_eid_ht_operation() local 92 *pos++ = sizeof(*oper); in hostapd_eid_ht_operation() 94 oper = (struct ieee80211_ht_operation *) pos; in hostapd_eid_ht_operation() 95 os_memset(oper, 0, sizeof(*oper)); in hostapd_eid_ht_operation() 97 oper->primary_chan = hapd->iconf->channel; in hostapd_eid_ht_operation() 98 oper->operation_mode = host_to_le16(hapd->iface->ht_op_mode); in hostapd_eid_ht_operation() 100 oper->ht_param |= HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE | in hostapd_eid_ht_operation() 103 oper->ht_param |= HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW | in hostapd_eid_ht_operation() 106 pos += sizeof(*oper); in hostapd_eid_ht_operation()
|
H A D | ieee802_11_eht.c | 204 struct ieee80211_eht_operation *oper; in hostapd_eid_eht_operation() local 232 oper = (struct ieee80211_eht_operation *) pos; in hostapd_eid_eht_operation() 233 oper->oper_params = 0; in hostapd_eid_eht_operation() 236 oper->oper_params |= EHT_OPER_DEFAULT_PE_DURATION; in hostapd_eid_eht_operation() 239 oper->basic_eht_mcs_nss_set[0] = 0x11; in hostapd_eid_eht_operation() 240 oper->basic_eht_mcs_nss_set[1] = 0x00; in hostapd_eid_eht_operation() 241 oper->basic_eht_mcs_nss_set[2] = 0x00; in hostapd_eid_eht_operation() 242 oper->basic_eht_mcs_nss_set[3] = 0x00; in hostapd_eid_eht_operation() 247 oper->oper_params |= EHT_OPER_INFO_PRESENT; in hostapd_eid_eht_operation() 252 oper->oper_info.control |= EHT_OPER_CHANNEL_WIDTH_320MHZ; in hostapd_eid_eht_operation() [all …]
|
H A D | ieee802_11_he.c | 174 struct ieee80211_he_operation *oper; in hostapd_eid_he_operation() local 189 oper = (struct ieee80211_he_operation *) pos; in hostapd_eid_he_operation() 190 os_memset(oper, 0, sizeof(*oper)); in hostapd_eid_he_operation() 215 oper->he_mcs_nss_set = in hostapd_eid_he_operation() 285 oper->he_oper_params = host_to_le32(params); in hostapd_eid_he_operation()
|
H A D | ieee802_11_shared.c | 1041 struct ieee80211_vht_operation *oper = sta->vht_operation; in get_tx_parameters() local 1047 if (oper->vht_op_info_chwidth == CHANWIDTH_USE_HT) { in get_tx_parameters() 1049 } else if (oper->vht_op_info_chan_center_freq_seg1_idx == 0) { in get_tx_parameters() 1056 oper->vht_op_info_chan_center_freq_seg0_idx - in get_tx_parameters() 1058 oper->vht_op_info_chan_center_freq_seg1_idx); in get_tx_parameters() 1059 vht_80p80 = oper->vht_op_info_chan_center_freq_seg1_idx in get_tx_parameters()
|
H A D | wnm_ap.c | 29 u8 *buf, u16 *buf_len, enum wnm_oper oper) in ieee80211_11_get_tfs_ie() argument 31 wpa_printf(MSG_DEBUG, "%s: TFS get operation %d", __func__, oper); in ieee80211_11_get_tfs_ie() 33 return hostapd_drv_wnm_oper(hapd, oper, addr, buf, buf_len); in ieee80211_11_get_tfs_ie() 39 u8 *buf, u16 *buf_len, enum wnm_oper oper) in ieee80211_11_set_tfs_ie() argument 41 wpa_printf(MSG_DEBUG, "%s: TFS set operation %d", __func__, oper); in ieee80211_11_set_tfs_ie() 43 return hostapd_drv_wnm_oper(hapd, oper, addr, buf, buf_len); in ieee80211_11_set_tfs_ie()
|
/freebsd/bin/dd/ |
H A D | args.c | 98 static char *oper; variable 111 while ((oper = *++argv) != NULL) { in jcl() 112 if ((oper = strdup(oper)) == NULL) in jcl() 114 if ((arg = strchr(oper, '=')) == NULL) in jcl() 115 errx(1, "unknown operand %s", oper); in jcl() 118 errx(1, "no value specified for %s", oper); in jcl() 119 tmp.name = oper; in jcl() 210 errc(1, ERANGE, "%s", oper); in f_count() 497 errx(1, "%s: invalid numeric value", oper); in get_num() 499 err(1, "%s", oper); in get_num() [all …]
|
/freebsd/crypto/openssl/crypto/property/ |
H A D | property_parse.c | 368 prop->oper = OSSL_PROPERTY_OPER_EQ; in ossl_parse_property() 424 prop->oper = OSSL_PROPERTY_OVERRIDE; in ossl_parse_query() 435 prop->oper = OSSL_PROPERTY_OPER_EQ; in ossl_parse_query() 437 prop->oper = OSSL_PROPERTY_OPER_NE; in ossl_parse_query() 440 prop->oper = OSSL_PROPERTY_OPER_EQ; in ossl_parse_query() 477 OSSL_PROPERTY_OPER oper; in ossl_property_match_count() 480 if ((oper = q[i].oper) == OSSL_PROPERTY_OVERRIDE) { in ossl_property_match_count() 493 if ((eq && oper == OSSL_PROPERTY_OPER_EQ) in ossl_property_match_count() 494 || (!eq && oper in ossl_property_match_count() 476 OSSL_PROPERTY_OPER oper; ossl_property_match_count() local [all...] |
H A D | property_query.c | 74 if (prop == NULL || prop->optional || prop->oper == OSSL_PROPERTY_OVERRIDE) in ossl_property_is_enabled() 77 && ((prop->oper == OSSL_PROPERTY_OPER_EQ in ossl_property_is_enabled() 79 || (prop->oper == OSSL_PROPERTY_OPER_NE in ossl_property_is_enabled()
|
H A D | property_local.h | 23 OSSL_PROPERTY_OPER oper; member
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | BIO_set_callback.pod | 14 typedef long (*BIO_callback_fn_ex)(BIO *b, int oper, const char *argp, 24 long BIO_debug_callback_ex(BIO *bio, int oper, const char *argp, size_t len, 31 typedef long (*BIO_callback_fn)(BIO *b, int oper, const char *argp, int argi, 70 =item B<oper> 72 B<oper> is set to the operation being performed. For some operations 74 operation, the latter case has B<oper> or'ed with BIO_CB_RETURN. 79 B<oper> is BIO_CB_READ, BIO_CB_WRITE or BIO_CB_GETS. 84 the value of B<oper>, that is the operation being performed.
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/ |
H A D | XtensaInstrInfo.td | 38 class ADDX<bits<4> oper, string instrAsm, list<dag> pattern> 39 : RRR_Inst<0x00, 0x00, oper, (outs AR:$r), (ins AR:$s, AR:$t), 46 class SUBX<bits<4> oper, string instrAsm, list<dag> pattern> 47 : RRR_Inst<0x00, 0x00, oper, (outs AR:$r), (ins AR:$s, AR:$t), 199 class Load_RRI8<bits<4> oper, string instrAsm, SDPatternOperator opNode, 206 let r = oper; 219 class Store_II8<bits<4> oper, string instrAsm, SDPatternOperator opNode, 226 let r = oper; 274 class Branch_RR<bits<4> oper, string instrAsm, CondCode CC> 281 let r = oper; [all …]
|
/freebsd/contrib/wpa/src/common/ |
H A D | hw_features_common.c | 181 struct ieee80211_ht_operation *oper; in get_pri_sec_chan() local 188 oper = (struct ieee80211_ht_operation *) elems.ht_operation; in get_pri_sec_chan() 189 *pri_chan = oper->primary_chan; in get_pri_sec_chan() 190 if (oper->ht_param & HT_INFO_HT_PARAM_STA_CHNL_WIDTH) { in get_pri_sec_chan() 191 int sec = oper->ht_param & in get_pri_sec_chan() 271 struct ieee80211_ht_operation *oper; in check_20mhz_bss() local 287 oper = (struct ieee80211_ht_operation *) elems.ht_operation; in check_20mhz_bss() 288 if (oper->ht_param & HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK) in check_20mhz_bss()
|
/freebsd/crypto/openssl/test/ |
H A D | bio_callback_test.c | 27 static long my_bio_cb_ex(BIO *b, int oper, const char *argp, size_t len, in my_bio_cb_ex() argument 33 my_param_oper[my_param_count] = oper; in my_bio_cb_ex() 202 static long my_bio_callback(BIO *b, int oper, const char *argp, int argi, in my_bio_callback() argument 208 my_param_oper[my_param_count] = oper; in my_bio_callback()
|
H A D | http_test.c | 102 static long http_bio_cb_ex(BIO *bio, int oper, const char *argp, size_t len, in http_bio_cb_ex() argument 107 if (oper == (BIO_CB_CTRL | BIO_CB_RETURN) && cmd == BIO_CTRL_FLUSH) in http_bio_cb_ex()
|
/freebsd/crypto/openssl/crypto/bio/ |
H A D | bio_lib.c | 37 static long bio_call_callback(BIO *b, int oper, const char *argp, size_t len, in bio_call_callback() argument 47 return b->callback_ex(b, oper, argp, len, argi, argl, inret, processed); in bio_call_callback() 51 bareoper = oper & ~BIO_CB_RETURN; in bio_call_callback() 65 if (inret > 0 && (oper & BIO_CB_RETURN) && bareoper != BIO_CB_CTRL) { in bio_call_callback() 71 ret = b->callback(b, oper, argp, argi, argl, inret); in bio_call_callback() 73 if (ret > 0 && (oper & BIO_CB_RETURN) && bareoper != BIO_CB_CTRL) { in bio_call_callback()
|
/freebsd/contrib/wpa/src/drivers/ |
H A D | driver_atheros.c | 2097 u8 *ie, u16 *len, enum wnm_oper oper) in athr_wnm_tfs() argument 2105 drv->iface, oper, MAC2STR(peer)); in athr_wnm_tfs() 2107 switch (oper) { in athr_wnm_tfs() 2120 val = oper; in athr_wnm_tfs() 2142 val = oper; in athr_wnm_tfs() 2169 val = oper; in athr_wnm_tfs() 2182 wpa_printf(MSG_DEBUG, "Unsupported TFS oper %d", oper); in athr_wnm_tfs() 2191 const u8 *peer, enum wnm_oper oper) in atheros_wnm_sleep() argument 2199 oper, MAC2STR(peer)); in atheros_wnm_sleep() 2211 val = oper; in atheros_wnm_sleep() [all …]
|
/freebsd/sys/dev/ixl/ |
H A D | i40e_dcb.c | 711 u8 i, tc, err, sync, oper; in i40e_cee_to_dcb_config() local 753 oper = (status & I40E_TLV_STATUS_OPER) ? 1 : 0; in i40e_cee_to_dcb_config() 755 if (!err && sync && oper) { in i40e_cee_to_dcb_config() 769 oper = (status & I40E_TLV_STATUS_OPER) ? 1 : 0; in i40e_cee_to_dcb_config() 771 if (!err && sync && oper) { in i40e_cee_to_dcb_config() 785 oper = (status & I40E_TLV_STATUS_OPER) ? 1 : 0; in i40e_cee_to_dcb_config() 787 if (!err && sync && oper) { in i40e_cee_to_dcb_config()
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | wnm_sta.c | 34 u16 *buf_len, enum wnm_oper oper) in ieee80211_11_get_tfs_ie() argument 36 wpa_printf(MSG_DEBUG, "%s: TFS get operation %d", __func__, oper); in ieee80211_11_get_tfs_ie() 38 return wpa_drv_wnm_oper(wpa_s, oper, wpa_s->bssid, buf, buf_len); in ieee80211_11_get_tfs_ie() 45 enum wnm_oper oper) in ieee80211_11_set_tfs_ie() argument 49 wpa_printf(MSG_DEBUG, "%s: TFS set operation %d", __func__, oper); in ieee80211_11_set_tfs_ie() 51 return wpa_drv_wnm_oper(wpa_s, oper, addr, (u8 *) buf, &len); in ieee80211_11_set_tfs_ie()
|
H A D | driver_i.h | 594 enum tdls_oper oper, const u8 *peer) in wpa_drv_tdls_oper() argument 598 return wpa_s->driver->tdls_oper(wpa_s->drv_priv, oper, peer); in wpa_drv_tdls_oper() 678 enum wnm_oper oper, const u8 *peer, in wpa_drv_wnm_oper() argument 683 return wpa_s->driver->wnm_oper(wpa_s->drv_priv, oper, peer, buf, in wpa_drv_wnm_oper()
|
H A D | mesh_mpm.c | 732 struct ieee80211_ht_operation *oper; in mesh_mpm_add_peer() local 765 oper = (struct ieee80211_ht_operation *) elems->ht_operation; in mesh_mpm_add_peer() 766 if (oper && in mesh_mpm_add_peer() 767 !(oper->ht_param & HT_INFO_HT_PARAM_STA_CHNL_WIDTH) && in mesh_mpm_add_peer()
|
/freebsd/contrib/wpa/src/rsn_supp/ |
H A D | wpa_i.h | 400 static inline int wpa_sm_tdls_oper(struct wpa_sm *sm, int oper, in wpa_sm_tdls_oper() argument 404 return sm->ctx->tdls_oper(sm->ctx->ctx, oper, peer); in wpa_sm_tdls_oper()
|
/freebsd/sys/dev/mlx5/ |
H A D | port.h | 149 u32 oper; member
|
/freebsd/contrib/wpa/hs20/client/ |
H A D | oma_dm_client.c | 279 int cmdid, const char *oper, in oma_dm_add_hs20_generic_alert() argument 290 snprintf(buf, sizeof(buf), "Reversed-Domain-Name: %s", oper); in oma_dm_add_hs20_generic_alert() 299 const char *url, int msgid, const char *oper) in build_oma_dm_1() argument 324 oma_dm_add_hs20_generic_alert(ctx, syncbody, cmdid, oper, str); in build_oma_dm_1()
|
/freebsd/lib/libfetch/ |
H A D | ftp.c | 618 ftp_transfer(conn_t *conn, const char *oper, const char *file, in ftp_transfer() argument 781 e = ftp_cmd(conn, "%s %.*s", oper, filenamelen, filename); in ftp_transfer() 872 e = ftp_cmd(conn, "%s %.*s", oper, filenamelen, filename); in ftp_transfer()
|