/AliOS-Things-master/components/linkkit/wifi_provision/frameworks/ieee80211/ |
A D | zconfig_ieee80211.c | 14 int ieee80211_is_ctl(uint16_t fc) in ieee80211_is_ctl() argument 24 int ieee80211_is_data(uint16_t fc) in ieee80211_is_data() argument 34 int ieee80211_has_tods(uint16_t fc) in ieee80211_has_tods() argument 43 int ieee80211_has_fromds(uint16_t fc) in ieee80211_has_fromds() argument 53 int ieee80211_has_a4(uint16_t fc) in ieee80211_has_a4() argument 56 return (fc & tmp) == tmp; in ieee80211_has_a4() 215 if (ieee80211_is_data(fc)) { in ieee80211_hdrlen_2() 216 if (ieee80211_has_a4(fc)) in ieee80211_hdrlen_2() 226 if (ieee80211_is_ctl(fc)) { in ieee80211_hdrlen_2() 765 int i, fc; in ieee80211_data_extract() local [all …]
|
A D | zconfig_ieee80211.h | 264 int ieee80211_hdrlen_2(uint16_t fc); 265 int ieee80211_has_a4(uint16_t fc); 266 int ieee80211_is_ctl(uint16_t fc); 267 int ieee80211_is_mgmt(uint16_t fc); 268 int ieee80211_is_data(uint16_t fc); 269 int ieee80211_has_tods(uint16_t fc); 270 int ieee80211_has_frags(uint16_t fc); 271 int ieee80211_has_order(uint16_t fc); 272 int ieee80211_is_beacon(uint16_t fc); 273 int ieee80211_is_action(uint16_t fc); [all …]
|
/AliOS-Things-master/components/linkkit/wifi_provision/phone_ap/ |
A D | awss_aha.c | 62 int fc, ret, channel; in awss_ieee80211_aha_process() local 78 fc = hdr->frame_control; in awss_ieee80211_aha_process() 80 if (!ieee80211_is_beacon(fc) && !ieee80211_is_probe_resp(fc)) in awss_ieee80211_aha_process()
|
/AliOS-Things-master/components/linkkit/wifi_provision/mcast_smartconfig/ |
A D | mcast_smartconfig.c | 214 int hdrlen, fc, seq_ctrl; in awss_ieee80211_mcast_smartconfig_process() local 236 fc = hdr->frame_control; in awss_ieee80211_mcast_smartconfig_process() 242 if (!ieee80211_is_data_exact(fc)) { in awss_ieee80211_mcast_smartconfig_process() 247 if (ieee80211_has_tods(fc) == ieee80211_has_fromds(fc)) { in awss_ieee80211_mcast_smartconfig_process() 252 if (ieee80211_has_frags(fc)) { in awss_ieee80211_mcast_smartconfig_process() 271 hdrlen = ieee80211_hdrlen_2(fc); in awss_ieee80211_mcast_smartconfig_process() 286 tods = ieee80211_has_tods(fc); in awss_ieee80211_mcast_smartconfig_process() 296 if (!ieee80211_has_protected(fc)) { in awss_ieee80211_mcast_smartconfig_process() 343 res->tods = ieee80211_has_tods(fc); in awss_ieee80211_mcast_smartconfig_process()
|
/AliOS-Things-master/components/linkkit/wifi_provision/frameworks/aplist/ |
A D | awss_aplist.c | 323 int fc, ret, channel; in awss_ieee80211_aplist_process() local 330 fc = hdr->frame_control; in awss_ieee80211_aplist_process() 335 if (!ieee80211_is_beacon(fc) && !ieee80211_is_probe_resp(fc)) { in awss_ieee80211_aplist_process()
|
/AliOS-Things-master/components/py_engine/external/unzip/internal/ |
A D | deflate.h | 66 } fc; member 73 #define Freq fc.freq 74 #define Code fc.code
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/ |
A D | deflate.h | 72 } fc; member 79 #define Freq fc.freq 80 #define Code fc.code
|
/AliOS-Things-master/components/linkkit/wifi_provision/smartconfig/ |
A D | awss_smartconfig.c | 816 int hdrlen, fc, seq_ctrl; in awss_ieee80211_smartconfig_process() local 838 fc = hdr->frame_control; in awss_ieee80211_smartconfig_process() 844 if (!ieee80211_is_data_exact(fc)) { in awss_ieee80211_smartconfig_process() 849 if (ieee80211_has_tods(fc) == ieee80211_has_fromds(fc)) { in awss_ieee80211_smartconfig_process() 853 if (ieee80211_has_frags(fc)) { in awss_ieee80211_smartconfig_process() 867 hdrlen = ieee80211_hdrlen_2(fc); in awss_ieee80211_smartconfig_process() 882 tods = ieee80211_has_tods(fc); in awss_ieee80211_smartconfig_process() 892 if (!ieee80211_has_protected(fc)) { in awss_ieee80211_smartconfig_process() 939 res->tods = ieee80211_has_tods(fc); in awss_ieee80211_smartconfig_process()
|
/AliOS-Things-master/components/linkkit/wifi_provision/dev_ap/ |
A D | awss_dev_ap.c | 45 int fc; in awss_80211_frame_handler() local 58 fc = hdr->frame_control; in awss_80211_frame_handler() 59 if (!ieee80211_is_beacon(fc) && !ieee80211_is_probe_resp(fc)) { in awss_80211_frame_handler()
|
/AliOS-Things-master/components/linkkit/wifi_provision/zero_config/ |
A D | awss_enrollee.c | 260 int fc; in awss_ieee80211_zconfig_process() local 276 fc = hdr->frame_control; in awss_ieee80211_zconfig_process() 278 if (!ieee80211_is_probe_resp(fc)) in awss_ieee80211_zconfig_process()
|
/AliOS-Things-master/components/linkkit/wifi_provision/p2p/ |
A D | awss_wps.c | 368 int fc; in awss_ieee80211_wps_process() local 386 fc = hdr->frame_control; in awss_ieee80211_wps_process() 388 if (!ieee80211_is_probe_req(fc)) { in awss_ieee80211_wps_process()
|
/AliOS-Things-master/components/ble_host/bt_host/host/ |
A D | rfcomm_internal.h | 26 struct k_sem fc; member
|
A D | rfcomm.c | 276 k_sem_give(&dlc->session->fc); in rfcomm_dlc_disconnect() 520 k_sem_take(&dlc->session->fc, K_FOREVER); in rfcomm_check_fc() 527 k_sem_give(&dlc->session->fc); in rfcomm_check_fc() 1311 k_sem_give(&session->fc); in rfcomm_handle_msg() 1330 k_sem_take(&session->fc, K_NO_WAIT); in rfcomm_handle_msg() 1591 k_sem_init(&session->fc, 0, 1); in rfcomm_session_new()
|
/AliOS-Things-master/components/uvoice/test/ |
A D | test_player.c | 286 static void play_equalizer_config(char *fc, char *width, char *gain) in play_equalizer_config() argument 292 snprintf(equalizer_opt_fc, 16, "%s", fc); in play_equalizer_config()
|
/AliOS-Things-master/components/SDL2/test/ |
A D | utf8.txt | 226 4.1.5 U+002F = fc 80 80 80 80 af = "������" | 239 4.2.5 U-03FFFFFF = fc 83 bf bf bf bf = "������" | 251 4.3.5 U+0000 = fc 80 80 80 80 80 = "������" |
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | testimg.ppm | 4 …:QR@]bLgqVizXm�]j�\j�]p�bq�eo�do�er�hu�kr�hq�it�lx�rz�vy�vy�vv�tw�tu�ro�kj�fc|^UlOJ^BHA9@91;4,6717… 5 …g�Gf�Gj�Im�Ln�Qo�Rr�U-1"-1#,/&,.).0-11/34/45-9;0<>1@B5EH?KMLQRWUTbXWi\Yx^]fc�pm�zx���ύ�ᐏ퐎�釃�~�|…
|
A D | aclocal.m4 | 7830 # Source file extension for fc test sources. 7833 # Object file extension for compiled fc test sources.
|
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/ |
A D | CHANGELOG | 3156 1, Support ' fc ' Source DomainName
|
/AliOS-Things-master/components/SDL2/src/image/acinclude/ |
A D | libtool.m4 | 6766 # Source file extension for fc test sources. 6769 # Object file extension for compiled fc test sources.
|
/AliOS-Things-master/components/SDL2/acinclude/ |
A D | libtool.m4 | 7340 # Source file extension for fc test sources. 7343 # Object file extension for compiled fc test sources.
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/m4/ |
A D | libtool.m4 | 7839 # Source file extension for fc test sources. 7842 # Object file extension for compiled fc test sources.
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/scripts/ |
A D | libtool.m4 | 7820 # Source file extension for fc test sources. 7823 # Object file extension for compiled fc test sources.
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/m4/ |
A D | libtool.m4 | 7820 # Source file extension for fc test sources. 7823 # Object file extension for compiled fc test sources.
|
/AliOS-Things-master/components/SDL2/src/gfx/Test/ |
A D | aclocal.m4 | 7335 # Source file extension for fc test sources. 7338 # Object file extension for compiled fc test sources.
|
/AliOS-Things-master/components/SDL2/src/gfx/ |
A D | aclocal.m4 | 7335 # Source file extension for fc test sources. 7338 # Object file extension for compiled fc test sources.
|