Home
last modified time | relevance | path

Searched refs:mcc (Results 1 – 25 of 54) sorted by relevance

123

/freebsd/sys/contrib/dev/rtw89/
H A Dchan.c616 struct rtw89_mcc_info *mcc = &rtwdev->mcc; in rtw89_iterate_mcc_roles() local
618 &mcc->role_ref, in rtw89_iterate_mcc_roles()
619 &mcc->role_aux, in rtw89_iterate_mcc_roles()
658 struct rtw89_mcc_info *mcc = &rtwdev->mcc; in __mcc_fw_req_tsf() local
659 struct rtw89_mcc_role *ref = &mcc->role_ref; in __mcc_fw_req_tsf()
660 struct rtw89_mcc_role *aux = &mcc->role_aux; in __mcc_fw_req_tsf()
665 req.group = mcc->group; in __mcc_fw_req_tsf()
683 struct rtw89_mcc_info *mcc = &rtwdev->mcc; in __mrc_fw_req_tsf() local
684 struct rtw89_mcc_role *ref = &mcc->role_ref; in __mrc_fw_req_tsf()
685 struct rtw89_mcc_role *aux = &mcc->role_aux; in __mrc_fw_req_tsf()
[all …]
/freebsd/sys/contrib/dev/iwlwifi/mld/
H A Dmcc.c41 .mcc = cpu_to_le16(alpha2[0] << 8 | alpha2[1]), in iwl_mld_update_mcc()
53 u16 mcc; in iwl_mld_update_mcc() local
68 mcc = le16_to_cpu(resp_cp->mcc); in iwl_mld_update_mcc()
70 IWL_FW_CHECK(mld, !mcc, "mcc can't be 0: %d\n", mcc); in iwl_mld_update_mcc()
74 le32_to_cpu(resp_cp->status), mcc, mcc >> 8, mcc & 0xff); in iwl_mld_update_mcc()
116 __le16_to_cpu(resp->mcc), in iwl_mld_get_regdomain()
135 le16_to_cpu(resp->mcc))) in iwl_mld_get_regdomain()
207 char mcc[3]; in iwl_mld_init_mcc() local
220 if (!iwl_bios_get_mcc(&mld->fwrt, mcc)) { in iwl_mld_init_mcc()
222 regd = iwl_mld_get_regdomain(mld, mcc, MCC_SOURCE_BIOS, NULL); in iwl_mld_init_mcc()
[all …]
H A DMakefile5 iwlmld-y += mld.o notif.o mac80211.o fw.o power.o iface.o link.o rx.o mcc.o session-protect.o phy.o
/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Dnvm.c407 .mcc = cpu_to_le16(alpha2[0] << 8 | alpha2[1]), in iwl_mvm_update_mcc()
421 u16 mcc; in iwl_mvm_update_mcc() local
457 resp_cp->mcc = mcc_resp_v8->mcc; in iwl_mvm_update_mcc()
483 resp_cp->mcc = mcc_resp_v4->mcc; in iwl_mvm_update_mcc()
508 resp_cp->mcc = mcc_resp_v3->mcc; in iwl_mvm_update_mcc()
520 mcc = le16_to_cpu(resp_cp->mcc); in iwl_mvm_update_mcc()
523 if (mcc == 0) { in iwl_mvm_update_mcc()
524 mcc = 0x3030; /* "00" - world */ in iwl_mvm_update_mcc()
525 resp_cp->mcc = cpu_to_le16(mcc); in iwl_mvm_update_mcc()
530 status, mcc, mcc >> 8, mcc & 0xff, n_channels); in iwl_mvm_update_mcc()
[all …]
/freebsd/crypto/krb5/src/lib/gssapi/krb5/
H A Dstore_cred.c42 krb5_ccache cache = NULL, defcache = NULL, mcc = NULL; in copy_initiator_creds() local
112 ret = krb5_cc_new_unique(context, "MEMORY", NULL, &mcc); in copy_initiator_creds()
115 ret = krb5_cc_initialize(context, mcc, kcred->name->princ); in copy_initiator_creds()
118 ret = krb5_cc_copy_creds(context, kcred->ccache, mcc); in copy_initiator_creds()
121 ret = krb5_cc_move(context, mcc, cache); in copy_initiator_creds()
124 mcc = NULL; in copy_initiator_creds()
142 if (mcc != NULL) in copy_initiator_creds()
143 krb5_cc_destroy(context, mcc); in copy_initiator_creds()
/freebsd/sys/contrib/dev/iwlwifi/fw/api/
H A Dnvm-reg.h290 __le16 mcc; member
326 __le16 mcc; member
354 __le16 mcc; member
384 __le16 mcc; member
411 __le16 mcc; member
/freebsd/sys/contrib/dev/iwlwifi/fw/
H A Dregulatory.h199 bool iwl_add_mcc_to_tas_block_list(u16 *list, u8 *size, u16 mcc);
218 int iwl_bios_get_mcc(struct iwl_fw_runtime *fwrt, char *mcc);
241 bool iwl_puncturing_is_allowed_in_bios(u32 puncturing, u16 mcc);
H A Duefi.c646 int iwl_uefi_get_mcc(struct iwl_fw_runtime *fwrt, char *mcc) in iwl_uefi_get_mcc() argument
663 if (data->mcc != BIOS_MCC_CHINA) { in iwl_uefi_get_mcc()
669 mcc[0] = (data->mcc >> 8) & 0xff; in iwl_uefi_get_mcc()
670 mcc[1] = data->mcc & 0xff; in iwl_uefi_get_mcc()
671 mcc[2] = '\0'; in iwl_uefi_get_mcc()
H A Dregulatory.c43 IWL_BIOS_TABLE_LOADER_DATA(mcc, char);
473 bool iwl_add_mcc_to_tas_block_list(u16 *list, u8 *size, u16 mcc) in iwl_add_mcc_to_tas_block_list() argument
476 if (list[i] == mcc) in iwl_add_mcc_to_tas_block_list()
486 list[*size++] = mcc; in iwl_add_mcc_to_tas_block_list()
716 bool iwl_puncturing_is_allowed_in_bios(u32 puncturing, u16 mcc) in iwl_puncturing_is_allowed_in_bios() argument
721 switch (mcc) { in iwl_puncturing_is_allowed_in_bios()
H A Duefi.h164 u32 mcc; member
269 int iwl_uefi_get_mcc(struct iwl_fw_runtime *fwrt, char *mcc);
345 static inline int iwl_uefi_get_mcc(struct iwl_fw_runtime *fwrt, char *mcc) in iwl_uefi_get_mcc() argument
H A Dacpi.h157 int iwl_acpi_get_mcc(struct iwl_fw_runtime *fwrt, char *mcc);
203 static inline int iwl_acpi_get_mcc(struct iwl_fw_runtime *fwrt, char *mcc) in iwl_acpi_get_mcc() argument
H A Dacpi.c359 int iwl_acpi_get_mcc(struct iwl_fw_runtime *fwrt, char *mcc) in iwl_acpi_get_mcc() argument
390 mcc[0] = (mcc_val >> 8) & 0xff; in iwl_acpi_get_mcc()
391 mcc[1] = mcc_val & 0xff; in iwl_acpi_get_mcc()
392 mcc[2] = '\0'; in iwl_acpi_get_mcc()
/freebsd/crypto/krb5/src/clients/kvno/
H A Dkvno.c462 krb5_ccache ccache, mcc, out_ccache = NULL; in do_v5_kvno() local
554 ret = krb5_cc_new_unique(context, "MEMORY", NULL, &mcc); in do_v5_kvno()
568 ret = krb5_cc_initialize(context, mcc, creds->client); in do_v5_kvno()
576 ret = k5_cc_store_primary_cred(context, mcc, creds); in do_v5_kvno()
578 ret = krb5_cc_store_cred(context, mcc, creds); in do_v5_kvno()
589 ret = krb5_cc_move(context, mcc, out_ccache); in do_v5_kvno()
/freebsd/crypto/krb5/src/clients/kinit/
H A Dkinit.c649 krb5_ccache mcc = NULL; in k5_kinit() local
799 ret = krb5_cc_new_unique(k5->ctx, "MEMORY", NULL, &mcc); in k5_kinit()
801 ret = krb5_cc_initialize(k5->ctx, mcc, cprinc); in k5_kinit()
809 ret = k5_cc_store_primary_cred(k5->ctx, mcc, &my_creds); in k5_kinit()
814 ret = krb5_cc_move(k5->ctx, mcc, k5->out_cc); in k5_kinit()
820 mcc = NULL; in k5_kinit()
837 if (mcc != NULL) in k5_kinit()
838 krb5_cc_destroy(k5->ctx, mcc); in k5_kinit()
/freebsd/crypto/krb5/src/lib/krb5/krb/
H A Dget_in_tkt.c1621 krb5_ccache mcc = NULL; in write_out_ccache() local
1627 ret = krb5_cc_new_unique(context, "MEMORY", NULL, &mcc); in write_out_ccache()
1631 ret = krb5_cc_initialize(context, mcc, ctx->cred.client); in write_out_ccache()
1636 ret = krb5_cc_set_config(context, mcc, ctx->cred.server, in write_out_ccache()
1642 ret = save_selected_preauth_type(context, mcc, ctx); in write_out_ccache()
1646 ret = save_cc_config_out_data(context, mcc, ctx); in write_out_ccache()
1650 ret = k5_cc_store_primary_cred(context, mcc, &ctx->cred); in write_out_ccache()
1654 ret = krb5_cc_move(context, mcc, out_ccache); in write_out_ccache()
1657 mcc = NULL; in write_out_ccache()
1660 if (mcc != NULL) in write_out_ccache()
[all …]
/freebsd/sys/contrib/dev/iwlwifi/mei/
H A Diwl-mei.h102 iwl_mei_set_country_code(uint16_t mcc __unused) in iwl_mei_set_country_code()
/freebsd/sys/contrib/ncsw/Peripherals/BM/
H A Dbm_portal.c410 struct bm_mc_command *mcc; in BmPortalAcquire() local
416 mcc = bm_mc_start(p_BmPortal->p_BmPortalLow); in BmPortalAcquire()
417 mcc->acquire.bpid = bpid; in BmPortalAcquire()
/freebsd/sys/contrib/device-tree/src/arm64/arm/
H A Dvexpress-v2m-rs1.dtsi419 mcc {
459 temp-mcc {
H A Drtsm_ve-motherboard.dtsi40 mcc {
/freebsd/sys/contrib/device-tree/src/arm/arm/
H A Dvexpress-v2m-rs1.dtsi419 mcc {
459 temp-mcc {
H A Dvexpress-v2m.dtsi435 mcc {
475 temp-mcc {
/freebsd/sys/contrib/device-tree/Bindings/arm/
H A Dvexpress-sysreg.txt90 mcc {
/freebsd/sys/modules/iwlwifi/
H A DMakefile46 SRCS+= mld/link.c mld/low_latency.c mld/mac80211.c mld/mcc.c mld/mld.c
/freebsd/sys/dev/iwm/
H A Dif_iwm.c4672 uint16_t mcc; in iwm_send_update_mcc_cmd() local
4683 mcc_cmd.mcc = htole16(alpha2[0] << 8 | alpha2[1]); in iwm_send_update_mcc_cmd()
4708 mcc = mcc_resp->mcc; in iwm_send_update_mcc_cmd()
4712 mcc = mcc_resp_v1->mcc; in iwm_send_update_mcc_cmd()
4717 if (mcc == 0) in iwm_send_update_mcc_cmd()
4718 mcc = 0x3030; /* "00" - world */ in iwm_send_update_mcc_cmd()
4722 mcc >> 8, mcc & 0xff, n_channels); in iwm_send_update_mcc_cmd()
5457 sc->sc_fw_mcc[0] = (notif->mcc & 0xff00) >> 8; in iwm_handle_rxb()
5458 sc->sc_fw_mcc[1] = notif->mcc & 0xff; in iwm_handle_rxb()
H A Dif_iwmreg.h6636 * @mcc: given mobile country code
6641 uint16_t mcc;
6652 * @mcc: given mobile country code
6659 uint16_t mcc;
6672 * @mcc: the new applied MCC
6682 uint16_t mcc;
6695 * @mcc: the new applied MCC
6707 uint16_t mcc;
6725 * @mcc: the new applied MCC
6737 uint16_t mcc;
6637 uint16_t mcc; global() member
6655 uint16_t mcc; global() member
6678 uint16_t mcc; global() member
6703 uint16_t mcc; global() member
6733 uint16_t mcc; global() member
6758 uint16_t mcc; global() member
[all...]

123