Home
last modified time | relevance | path

Searched refs:ap (Results 1 - 25 of 26) sorted by relevance

12

/device/qemu/riscv32_virt/liteos_m/board/libc/
H A Ddprintf.c58 va_list ap; in __wrap_printf() local
59 va_start(ap, fmt); in __wrap_printf()
60 int len = vsnprintf_s(buf, sizeof(buf), BUFSIZE - 1, fmt, ap); in __wrap_printf()
61 va_end(ap); in __wrap_printf()
83 va_list ap; in hal_trace_printf() local
84 va_start(ap, fmt); in hal_trace_printf()
85 int len = vsnprintf_s(buf, sizeof(buf), BUFSIZE - 1, fmt, ap); in hal_trace_printf()
86 va_end(ap); in hal_trace_printf()
/device/soc/hisilicon/hi3861v100/sdk_liteos/components/at/src/
H A Dat_printf.c64 va_list ap = 0; in hi_at_printf() local
66 va_start(ap, fmt); in hi_at_printf()
70 len = __dprintf(fmt, ap, fn_put, (void *)NULL); in hi_at_printf()
75 va_end(ap); in hi_at_printf()
135 va_list ap = 0; in hi_at_printf_crashinfo() local
137 va_start(ap, fmt); in hi_at_printf_crashinfo()
140 len = __dprintf(fmt, ap, fn_put, (void *)NULL); in hi_at_printf_crashinfo()
142 va_end(ap); in hi_at_printf_crashinfo()
H A Dat.c292 va_list ap = NULL; in at_pading() local
295 va_start(ap, format); in at_pading()
296 ret = vsnprintf_s(str, AT_SSID_MAX_LEN * 4 + 1, size, format, ap); /* 4 length */ in at_pading()
297 va_end(ap); in at_pading()
/device/soc/rockchip/rk3568/hardware/omx_il/osal/
H A DRockchip_OSAL_Log.c50 va_list ap; in _Rockchip_OSAL_Log() local
51 va_start(ap, msg); in _Rockchip_OSAL_Log()
53 if (vsnprintf_s(str, sizeof(str), sizeof(str), msg, ap) <= 0) { in _Rockchip_OSAL_Log()
55 va_end(ap); in _Rockchip_OSAL_Log()
58 va_end(ap); in _Rockchip_OSAL_Log()
/device/qemu/arm_mps2_an386/liteos_m/board/libc/
H A Ddprintf.c54 va_list ap; in printf() local
55 va_start(ap, fmt); in printf()
56 int len = vsnprintf_s(buf, sizeof(buf), BUFSIZE - 1, fmt, ap); in printf()
57 va_end(ap); in printf()
/device/qemu/arm_mps3_an547/liteos_m/board/libc/
H A Ddprintf.c53 va_list ap; in printf() local
54 va_start(ap, __format); in printf()
55 int len = vsnprintf_s(buf, sizeof(buf), BUFSIZE - 1, __format, ap); in printf()
56 va_end(ap); in printf()
/device/qemu/esp32/liteos_m/board/libc/
H A Ddprintf.c57 va_list ap; in printf() local
58 va_start(ap, fmt); in printf()
59 int len = vsnprintf_s(buf, sizeof(buf), BUFSIZE - 1, fmt, ap); in printf()
60 va_end(ap); in printf()
/device/qemu/SmartL_E802/liteos_m/board/libc/
H A Ddprintf.c76 va_list ap; in printf() local
77 va_start(ap, fmt); in printf()
78 int len = vsnprintf_s(buf, sizeof(buf), BUFSIZE - 1, fmt, ap); in printf()
79 va_end(ap); in printf()
/device/soc/rockchip/common/sdk_linux/scripts/kconfig/
H A Dparser.y566 va_list ap;
569 va_start(ap, err);
570 vfprintf(stderr, err, ap);
571 va_end(ap);
577 va_list ap;
581 va_start(ap, err);
582 vfprintf(stderr, err, ap);
583 va_end(ap);
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/osal/include/
H A Dhi_osal.h543 #define osal_va_arg(ap, T) va_arg(ap, T)
544 #define osal_va_end(ap) va_end(ap)
545 #define osal_va_start(ap, A) va_start(ap, A)
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/
H A Dhi_osal.h540 #define osal_va_arg(ap, T) va_arg(ap, T)
541 #define osal_va_end(ap) va_end(ap)
542 #define osal_va_start(ap, A) va_start(ap, A)
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/mac/hmac/
H A Dhmac_chan_mgmt.c130 功能描述 : 遍历device下所有ap,设置VAP信道参数,准备切换至新信道运行
143 mac_vap_stru *ap = HI_NULL; in hmac_chan_multi_switch_to_new_channel() local
154 /* 遍历device下所有ap,设置ap信道参数,准备切换至新信道运行 */ in hmac_chan_multi_switch_to_new_channel()
156 ap = mac_vap_get_vap_stru(mac_dev->auc_vap_id[vap_idx]); in hmac_chan_multi_switch_to_new_channel()
157 if (ap == HI_NULL) { in hmac_chan_multi_switch_to_new_channel()
164 if (ap->vap_mode != WLAN_VAP_MODE_BSS_AP) { in hmac_chan_multi_switch_to_new_channel()
168 hmac_chan_initiate_switch_to_new_channel(ap, channel, bandwidth); in hmac_chan_multi_switch_to_new_channel()
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/
H A Dhi_osal.h545 #define osal_va_arg(ap, T) va_arg(ap, T)
546 #define osal_va_end(ap) va_end(ap)
547 #define osal_va_start(ap, A) va_start(ap, A)
/device/soc/rockchip/common/vendor/drivers/staging/android/fiq_debugger/
H A Dfiq_debugger.c298 va_list ap; in fiq_debugger_printf() local
301 va_start(ap, fmt); in fiq_debugger_printf()
302 vsnprintf(buf, sizeof(buf), fmt, ap); in fiq_debugger_printf()
303 va_end(ap); in fiq_debugger_printf()
313 va_list ap; in fiq_debugger_printf_nfiq() local
316 va_start(ap, fmt); in fiq_debugger_printf_nfiq()
317 vsnprintf(buf, 128, fmt, ap); in fiq_debugger_printf_nfiq()
318 va_end(ap); in fiq_debugger_printf_nfiq()
/device/soc/rockchip/rk3588/kernel/drivers/staging/android/fiq_debugger/
H A Dfiq_debugger.c284 va_list ap; in fiq_debugger_printf() local
287 va_start(ap, fmt); in fiq_debugger_printf()
288 vsnprintf(buf, sizeof(buf), fmt, ap); in fiq_debugger_printf()
289 va_end(ap); in fiq_debugger_printf()
300 va_list ap; in fiq_debugger_printf_nfiq() local
303 va_start(ap, fmt); in fiq_debugger_printf_nfiq()
304 vsnprintf(buf, 128, fmt, ap); in fiq_debugger_printf_nfiq()
305 va_end(ap); in fiq_debugger_printf_nfiq()
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Dwl_iw.c730 int infra = 0, ap = 0, error = 0; in wl_iw_set_mode() local
745 infra = ap = 1; in wl_iw_set_mode()
757 ap = htod32(ap); in wl_iw_set_mode()
760 (error = dev_wlc_ioctl(dev, WLC_SET_AP, &ap, sizeof(ap)))) in wl_iw_set_mode()
775 int error, infra = 0, ap = 0; in wl_iw_get_mode() local
780 (error = dev_wlc_ioctl(dev, WLC_GET_AP, &ap, sizeof(ap)))) in wl_iw_get_mode()
784 ap in wl_iw_get_mode()
[all...]
H A Dbcmutils.c1443 va_list ap; in bcm_bprintf() local
1446 va_start(ap, fmt); in bcm_bprintf()
1448 r = vsnprintf(b->buf, b->size, fmt, ap); in bcm_bprintf()
1469 va_end(ap); in bcm_bprintf()
H A Dwl_cfg80211.c2141 do not wait for link down of ap mode in wl_cfg80211_p2p_if_del()
3425 * do not wait for link down of ap mode in wl_cfg80211_change_p2prole()
3538 WL_ERR(("set ap role failed!\n")); in wl_cfg80211_change_virtual_iface()
4632 /* handle static ap */ in wl_cfg80211_delete_iface()
10998 s32 ap = 0; in wl_cfg80211_set_ap_role() local
11029 WLC_GET_AP, &ap, sizeof(s32))) < 0) { in wl_cfg80211_set_ap_role()
11034 if (!ap) { in wl_cfg80211_set_ap_role()
11049 err = wldev_ioctl_set(dev, WLC_DOWN, &ap, sizeof(s32)); in wl_cfg80211_set_ap_role()
11059 ap = 1; in wl_cfg80211_set_ap_role()
11061 WLC_SET_AP, &ap, sizeo in wl_cfg80211_set_ap_role()
11117 s32 ap = 1; wl_cfg80211_bcn_bringup_ap() local
12090 int ap = 0; wl_cfg80211_stop_ap() local
[all...]
H A Dwl_android_ext.c2340 } else if (!strcmp(pick_tmp2, "ap")) { in wl_ext_isam_init()
2342 } else if (!strcmp(pick_tmp2, "sta-ap")) { in wl_ext_isam_init()
2347 } else if (!strcmp(pick_tmp2, "ap-ap")) { in wl_ext_isam_init()
2349 } else if (!strcmp(pick_tmp2, "sta-ap-ap")) { in wl_ext_isam_init()
2372 } else if (!strcmp(pick_tmp2, "sta-ap-mesh")) { in wl_ext_isam_init()
2374 } else if (!strcmp(pick_tmp2, "mesh-ap")) { in wl_ext_isam_init()
2376 } else if (!strcmp(pick_tmp2, "mesh-ap-ap")) { in wl_ext_isam_init()
5195 s32 apsta = 0, ap = 0; wl_ext_iapsta_alive_postinit() local
[all...]
H A Ddhd_linux.c2912 if (FW_SUPPORTED((&dhd->pub), ap) && (if_event->event.role != WLC_E_IF_ROLE_STA)) { in dhd_ifadd_event_handler()
11411 if (FW_SUPPORTED(dhd, ap)) { in dhd_preinit_ioctls()
/device/qemu/SmartL_E802/liteos_m/board/hals/csky_driver/include/
H A Dcore_802.h1380 access_permission_e ap: 2; /* super user and normal user access.*/ member
1438 capr.w = (capr.w | (attr.nx << idx) | (attr.ap << (idx * 2 + 8)) | (attr.s << (idx + 24))); in csi_mpu_config_region()
/device/soc/rockchip/common/sdk_linux/scripts/dtc/
H A Dchecks.c63 va_list ap; in check_msg() local
98 va_start(ap, fmt); in check_msg()
99 xavsprintf_append(&str, fmt, ap); in check_msg()
100 va_end(ap); in check_msg()
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/i915/gt/
H A Dintel_engine_cs.c1581 va_list ap; in intel_engine_dump() local
1583 va_start(ap, header); in intel_engine_dump()
1584 drm_vprintf(m, header, &ap); in intel_engine_dump()
1585 va_end(ap); in intel_engine_dump()
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/
H A D802.11.h282 struct ether_addr ap; /* Current AP address */ member
/device/soc/hisilicon/common/hal/middleware/ffmpeg_adapt/
H A Dconfigure_llvm5022 ap)

Completed in 96 milliseconds

12