Home
last modified time | relevance | path

Searched refs:oper (Results 1 – 25 of 42) sorted by relevance

12

/freebsd/contrib/wpa/src/ap/
H A Dieee802_11_vht.c76 struct ieee80211_vht_operation *oper; in hostapd_eid_vht_operation() local
83 *pos++ = sizeof(*oper); in hostapd_eid_vht_operation()
85 oper = (struct ieee80211_vht_operation *) pos; in hostapd_eid_vht_operation()
86 os_memset(oper, 0, sizeof(*oper)); in hostapd_eid_vht_operation()
93 oper->vht_op_info_chan_center_freq_seg0_idx = in hostapd_eid_vht_operation()
95 oper->vht_op_info_chan_center_freq_seg1_idx = in hostapd_eid_vht_operation()
104 oper->vht_op_info_chwidth = 1; in hostapd_eid_vht_operation()
105 oper->vht_op_info_chan_center_freq_seg1_idx = in hostapd_eid_vht_operation()
106 oper->vht_op_info_chan_center_freq_seg0_idx; in hostapd_eid_vht_operation()
117 oper->vht_op_info_chwidth = 1; in hostapd_eid_vht_operation()
[all …]
H A Dieee802_11_ht.c84 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 Dieee802_11_he.c166 struct ieee80211_he_operation *oper; in hostapd_eid_he_operation() local
181 oper = (struct ieee80211_he_operation *) pos; in hostapd_eid_he_operation()
182 os_memset(oper, 0, sizeof(*oper)); in hostapd_eid_he_operation()
206 oper->he_mcs_nss_set = in hostapd_eid_he_operation()
253 oper->he_oper_params = host_to_le32(params); in hostapd_eid_he_operation()
H A Dwnm_ap.c29 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()
H A Dieee802_11_shared.c995 struct ieee80211_vht_operation *oper = sta->vht_operation; in get_tx_parameters() local
1001 if (oper->vht_op_info_chwidth == 0) { in get_tx_parameters()
1003 } else if (oper->vht_op_info_chan_center_freq_seg1_idx == 0) { in get_tx_parameters()
1010 oper->vht_op_info_chan_center_freq_seg0_idx - in get_tx_parameters()
1012 oper->vht_op_info_chan_center_freq_seg1_idx); in get_tx_parameters()
1013 vht_80p80 = oper->vht_op_info_chan_center_freq_seg1_idx in get_tx_parameters()
/freebsd/bin/dd/
H A Dargs.c98 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 Dproperty_parse.c367 prop->oper = OSSL_PROPERTY_OPER_EQ; in ossl_parse_property()
423 prop->oper = OSSL_PROPERTY_OVERRIDE; in ossl_parse_query()
434 prop->oper = OSSL_PROPERTY_OPER_EQ; in ossl_parse_query()
436 prop->oper = OSSL_PROPERTY_OPER_NE; in ossl_parse_query()
439 prop->oper = OSSL_PROPERTY_OPER_EQ; in ossl_parse_query()
476 OSSL_PROPERTY_OPER oper; in ossl_property_match_count() local
479 if ((oper = q[i].oper) == OSSL_PROPERTY_OVERRIDE) { in ossl_property_match_count()
509 if (oper == OSSL_PROPERTY_OPER_NE) in ossl_property_match_count()
514 || (oper == OSSL_PROPERTY_OPER_EQ in ossl_property_match_count()
516 || (oper == OSSL_PROPERTY_OPER_NE in ossl_property_match_count()
[all …]
H A Dproperty_query.c74 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 Dproperty_local.h23 OSSL_PROPERTY_OPER oper; member
/freebsd/sys/dev/usb/controller/
H A Dxhci.c335 XWRITE4(sc, oper, XHCI_DNCTRL, 0); in xhci_start_controller()
3365 v = XREAD4(sc, oper, port); in xhci_roothub_exec()
3406 XWRITE4(sc, oper, port, v | in xhci_roothub_exec()
3414 XWRITE4(sc, oper, port, v | in xhci_roothub_exec()
3557 v = XREAD4(sc, oper, port); in xhci_roothub_exec()
3560 XWRITE4(sc, oper, port, v); in xhci_roothub_exec()
3568 v = XREAD4(sc, oper, port); in xhci_roothub_exec()
3571 XWRITE4(sc, oper, port, v); in xhci_roothub_exec()
3577 XWRITE4(sc, oper, port, v | in xhci_roothub_exec()
3593 XWRITE4(sc, oper, port, v | in xhci_roothub_exec()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/
H A DXtensaInstrInfo.td37 class ADDX<bits<4> oper, string instrAsm, list<dag> pattern>
38 : RRR_Inst<0x00, 0x00, oper, (outs AR:$r), (ins AR:$s, AR:$t),
45 class SUBX<bits<4> oper, string instrAsm, list<dag> pattern>
46 : RRR_Inst<0x00, 0x00, oper, (outs AR:$r), (ins AR:$s, AR:$t),
205 let r = oper;
225 let r = oper;
245 class Branch_RR<bits<4> oper, string instrAsm, CondCode CC>
252 let r = oper;
256 class Branch_RI<bits<4> oper, string instrAsm, CondCode CC>
264 let t = oper;
[all …]
/freebsd/contrib/wpa/src/common/
H A Dhw_features_common.c181 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
284 oper = (struct ieee80211_ht_operation *) elems.ht_operation; in check_20mhz_bss()
285 if (oper->ht_param & HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK) in check_20mhz_bss()
/freebsd/crypto/openssl/doc/man3/
H A DBIO_set_callback.pod14 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/crypto/openssl/test/
H A Dbio_callback_test.c27 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 Dhttp_test.c102 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 Dbio_lib.c37 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 Ddriver_atheros.c2096 u8 *ie, u16 *len, enum wnm_oper oper) in athr_wnm_tfs() argument
2104 drv->iface, oper, MAC2STR(peer)); in athr_wnm_tfs()
2106 switch (oper) { in athr_wnm_tfs()
2119 val = oper; in athr_wnm_tfs()
2141 val = oper; in athr_wnm_tfs()
2168 val = oper; in athr_wnm_tfs()
2190 const u8 *peer, enum wnm_oper oper) in atheros_wnm_sleep() argument
2198 oper, MAC2STR(peer)); in atheros_wnm_sleep()
2210 val = oper; in atheros_wnm_sleep()
2230 switch (oper) { in atheros_wnm_oper()
[all …]
/freebsd/sys/dev/ixl/
H A Di40e_dcb.c711 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 Dwnm_sta.c34 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 Ddriver_i.h595 enum tdls_oper oper, const u8 *peer) in wpa_drv_tdls_oper() argument
599 return wpa_s->driver->tdls_oper(wpa_s->drv_priv, oper, peer); in wpa_drv_tdls_oper()
679 enum wnm_oper oper, const u8 *peer, in wpa_drv_wnm_oper() argument
684 return wpa_s->driver->wnm_oper(wpa_s->drv_priv, oper, peer, buf, in wpa_drv_wnm_oper()
H A Dmesh_mpm.c705 struct ieee80211_ht_operation *oper; in mesh_mpm_add_peer() local
738 oper = (struct ieee80211_ht_operation *) elems->ht_operation; in mesh_mpm_add_peer()
739 if (oper && in mesh_mpm_add_peer()
740 !(oper->ht_param & HT_INFO_HT_PARAM_STA_CHNL_WIDTH) && in mesh_mpm_add_peer()
/freebsd/contrib/wpa/src/rsn_supp/
H A Dwpa_i.h387 static inline int wpa_sm_tdls_oper(struct wpa_sm *sm, int oper, in wpa_sm_tdls_oper() argument
391 return sm->ctx->tdls_oper(sm->ctx->ctx, oper, peer); in wpa_sm_tdls_oper()
/freebsd/sys/dev/mlx5/
H A Dport.h149 u32 oper; member
/freebsd/contrib/wpa/hs20/client/
H A Doma_dm_client.c279 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 Dftp.c618 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()

12