/wlan-driver/qcacld-3.0/ |
D | wlan_qcacld3_modules.bzl | 330 "cmn/cfg/src/cfg.c", 331 "cmn/dp/wifi3.0/dp_arch_ops.c", 332 "cmn/dp/wifi3.0/dp_htt.c", 333 "cmn/dp/wifi3.0/dp_main.c", 334 "cmn/dp/wifi3.0/dp_peer.c", 335 "cmn/dp/wifi3.0/dp_rx.c", 336 "cmn/dp/wifi3.0/dp_rx_defrag.c", 337 "cmn/dp/wifi3.0/dp_rx_desc.c", 338 "cmn/dp/wifi3.0/dp_stats.c", 339 "cmn/dp/wifi3.0/dp_tx.c", [all …]
|
/wlan-driver/platform/ |
D | wlan_platform_modules.bzl | 94 "cnss2/main.c", 95 "cnss2/bus.c", 96 "cnss2/debug.c", 97 "cnss2/pci.c", 99 "cnss2/power.c", 100 "cnss2/genl.c", 110 "cnss2/qmi.c", 111 "cnss2/coexistence_service_v01.c", 116 "cnss2/pci_qcom.c", 132 "icnss2/main.c", [all …]
|
/wlan-driver/fw-api/hw/qcn9000/ |
D | HALcomdef.h | 769 #define UPCASE( c ) ( ((c) >= 'a' && (c) <= 'z') ? ((c) - 0x20) : (c) ) argument 797 #define DECCHK( c ) ((c) >= '0' && (c) <= '9') argument 799 #define HEXCHK( c ) ( ((c) >= '0' && (c) <= '9') ||\ argument 800 ((c) >= 'A' && (c) <= 'F') ||\ 801 ((c) >= 'a' && (c) <= 'f') )
|
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/ |
D | README | 1 The below qca6290 and qca8074 folder has c files defining functions 9 hal_6290_rx.c - rx related target specific function 10 hal_6290_srng_table.c - holds hw srng table and hal hw reg offsets array 11 hal_6290_tx.c - tx related target specific function 13 hal_8074_rx.c - rx related target specific function 14 hal_8074_srng_table.c - holds hw srng table and hal hw reg offsets array 15 hal_8074_tx.c - tx related target specific function
|
/wlan-driver/qca-wifi-host-cmn/qdf/src/ |
D | qdf_types.c | 69 static QDF_STATUS qdf_consume_char(const char **str, char c) in qdf_consume_char() argument 71 if ((*str)[0] != c) in qdf_consume_char() 81 uint8_t c = (*str)[0]; in qdf_consume_dec() local 83 if (c >= '0' && c <= '9') in qdf_consume_dec() 84 *out_digit = c - '0'; in qdf_consume_dec() 95 uint8_t c = (*str)[0]; in qdf_consume_hex() local 97 if (c >= '0' && c <= '9') in qdf_consume_hex() 98 *out_nibble = c - '0'; in qdf_consume_hex() 99 else if (c >= 'a' && c <= 'f') in qdf_consume_hex() 100 *out_nibble = c - 'a' + 10; in qdf_consume_hex() [all …]
|
D | qdf_str.c | 61 char *dst, uint32_t dst_len, char c) in qdf_str_copy_all_before_char() argument 69 (*str != '\0') && (*str != c)) { in qdf_str_copy_all_before_char()
|
/wlan-driver/qcacld-3.0/core/mac/src/sys/legacy/src/platform/inc/ |
D | sys_wrapper.h | 82 #define tx_timer_create(a, b, c, d, e, f, g, h) tx_timer_create_intern_debug((void *)a, b, c, d… argument 84 #define tx_timer_create(a, b, c, d, e, f, g, h) tx_timer_create_intern((void *)a, b, c, d, e, f…
|
/wlan-driver/qca-wifi-host-cmn/qdf/inc/ |
D | qdf_str.h | 39 static inline bool qdf_is_space(char c) in qdf_is_space() argument 41 return __qdf_is_space(c); in qdf_is_space() 199 char *dst, uint32_t dst_len, char c);
|
D | qdf_trace.h | 1565 unsigned int c; in qdf_tso_seg_dbg_record() local 1570 c = qdf_atomic_read(&tsoseg->dbg.cur); in qdf_tso_seg_dbg_record() 1572 c &= 0x0f; in qdf_tso_seg_dbg_record() 1574 if (tsoseg->dbg.h[c].id >= id) in qdf_tso_seg_dbg_record() 1577 c = qdf_atomic_inc_return(&tsoseg->dbg.cur); in qdf_tso_seg_dbg_record() 1579 c &= 0x0f; in qdf_tso_seg_dbg_record() 1580 tsoseg->dbg.h[c].ts = qdf_get_log_timestamp(); in qdf_tso_seg_dbg_record() 1581 tsoseg->dbg.h[c].id = id; in qdf_tso_seg_dbg_record() 1582 rc = c; in qdf_tso_seg_dbg_record()
|
D | qdf_mem.h | 750 #define qdf_kmem_cache_create(c, z) __qdf_kmem_cache_create(c, z) argument 752 #define qdf_kmem_cache_create(c, z) NULL argument
|
/wlan-driver/qca-wifi-host-cmn/htc/ |
D | htc_packet.h | 171 #define SET_HTC_PACKET_INFO_RX_REFILL(p, c, b, len, ep) \ argument 173 (p)->pPktContext = (c); \ 185 #define SET_HTC_PACKET_INFO_TX(p, c, b, len, ep, tag) \ argument 187 (p)->pPktContext = (c); \
|
/wlan-driver/qca-wifi-host-cmn/qdf/linux/src/ |
D | i_qdf_str.h | 29 #define __qdf_is_space(c) isspace(c) argument
|
/wlan-driver/qcacld-3.0/core/sme/src/csr/ |
D | csr_link_list.c | 115 uint32_t c = 0; in csr_ll_count() local 119 return c; in csr_ll_count() 123 c = pList->Count; in csr_ll_count() 125 return c; in csr_ll_count()
|
/wlan-driver/qca-wifi-host-cmn/qdf/ |
D | Kbuild | 155 qdf.mod.o: qdf.mod.c 156 ${CC} -c -o $@ ${EXTRA_CFLAGS} ${MOD_CFLAGS} $< 165 %.o: %.c 166 ${CC} -c -o $@ ${EXTRA_CFLAGS} $<
|
/wlan-driver/qca-wifi-host-cmn/iot_sim/ |
D | Kbuild | 140 qca_iot_sim.mod.o: qca_iot_sim.mod.c 141 ${CC} -c -o $@ ${ccflags-y} ${MOD_CFLAGS} $< 150 %.o: %.c 151 ${CC} -c -o $@ ${ccflags-y} $<
|
/wlan-driver/qca-wifi-host-cmn/dp/cmn_dp_api/ |
D | dp_ratetable.h | 80 #define DP_ATH_RATE_IN(c) (DP_ATH_EP_MUL((c), DP_ATH_RATE_EP_MULTIPLIER)) argument
|
/wlan-driver/qca-wifi-host-cmn/spectral/ |
D | Kbuild | 239 qca_spectral.mod.o: qca_spectral.mod.c 240 ${CC} -c -o $@ ${ccflags-y} ${MOD_CFLAGS} $< 249 %.o: %.c 250 ${CC} -c -o $@ ${ccflags-y} $<
|
/wlan-driver/qcacld-3.0/os_if/dp/src/ |
D | os_if_dp.c | 540 uint8_t c; in dp_dns_make_name_query() local 547 while ((c = *(string++))) { in dp_dns_make_name_query() 548 if (c == '.') { in dp_dns_make_name_query() 552 *(buf++) = c; in dp_dns_make_name_query()
|
/wlan-driver/qcacld-3.0/components/pkt_capture/core/src/ |
D | wlan_pkt_capture_mon_thread.c | 36 #define kthread_complete_and_exit(c, s) complete_and_exit(c, s) argument
|
/wlan-driver/qca-wifi-host-cmn/target_if/cfr/src/ |
D | target_if_cfr_enh.c | 1725 int c, g, pc, pg; in populate_phase_delta() local 1731 for (c = 0; c < pcfr->max_aoa_chains; c++) { in populate_phase_delta() 1733 if (((0x1 << c) & c_mask) && (pc < WMI_MAX_CHAINS_PHASE)) { in populate_phase_delta() 1734 pcfr->ibf_cal_val[c] = param.ibf_cal_val[pc]; in populate_phase_delta() 1737 pcfr->phase_delta[c][g] = get_u16_lsb in populate_phase_delta() 1739 pcfr->phase_delta[c][g + 1] = get_u16_msb in populate_phase_delta()
|
/wlan-driver/qcacld-3.0/core/hdd/src/ |
D | wlan_hdd_cfg.c | 71 char c; in get_next_line() local 76 c = *str; in get_next_line() 77 while (c != '\n' && c != '\0' && c != 0xd) { in get_next_line() 79 c = *str; in get_next_line() 82 if (c == '\0') in get_next_line()
|
/wlan-driver/qca-wifi-host-cmn/umac/cmn_services/crypto/src/ |
D | wlan_crypto_def_i.h | 165 #define WLAN_CRYPTO_SELECTOR(a, b, c, d) \ argument 168 (((uint32_t) (c)) << 8) | \
|
/wlan-driver/qcacld-3.0/core/cds/src/ |
D | cds_sched.c | 53 #define kthread_complete_and_exit(c, s) complete_and_exit(c, s) argument
|
/wlan-driver/qca-wifi-host-cmn/wmi/src/ |
D | wmi_unified_tlv.c | 10829 int c; in fips_extend_align_data_be() local 10888 for (c = 0; c < param->cmd_params.key_len / 4; c++) { in fips_extend_align_data_be() 10889 *((u_int32_t *)key_aligned + c) = in fips_extend_align_data_be() 10890 qdf_cpu_to_le32(*((u_int32_t *)key_aligned + c)); in fips_extend_align_data_be() 10892 for (c = 0; c < param->data_len / 4; c++) { in fips_extend_align_data_be() 10893 *((u_int32_t *)data_aligned + c) = in fips_extend_align_data_be() 10894 qdf_cpu_to_le32(*((u_int32_t *)data_aligned + c)); in fips_extend_align_data_be() 10933 for (c = 0; c < param->cmd_params.nonce_iv_len / 4; c++) { in fips_extend_align_data_be() 10934 *((u_int32_t *)nonce_iv_aligned + c) = in fips_extend_align_data_be() 10935 qdf_cpu_to_le32(*((u_int32_t *)nonce_iv_aligned + c)); in fips_extend_align_data_be() [all …]
|
/wlan-driver/qca-wifi-host-cmn/hif/src/sdio/transfer/ |
D | mailbox.c | 54 #define kthread_complete_and_exit(c, s) complete_and_exit(c, s) argument
|