Home
last modified time | relevance | path

Searched refs:flags (Results 1 – 14 of 14) sorted by relevance

/NetX-Duo-v6.2.1/test/cmake/azure_iot/configs/
Dlinux.cmake17 set(CMAKE_C_FLAGS "${LINUX_FLAGS} " CACHE INTERNAL "c compiler flags")
18 set(CMAKE_CXX_FLAGS "${LINUX_FLAGS} -fno-rtti -fno-exceptions" CACHE INTERNAL "cxx compiler flags")
19 set(CMAKE_ASM_FLAGS "${LINUX_FLAGS} -x assembler-with-cpp" CACHE INTERNAL "asm compiler flags")
20 …KE_EXE_LINKER_FLAGS "${LINUX_FLAGS} ${LD_FLAGS} -Wl,--gc-sections" CACHE INTERNAL "exe link flags")
22 SET(CMAKE_C_FLAGS_DEBUG "-Og -g -ggdb3" CACHE INTERNAL "c debug compiler flags")
23 SET(CMAKE_CXX_FLAGS_DEBUG "-Og -g -ggdb3" CACHE INTERNAL "cxx debug compiler flags")
24 SET(CMAKE_ASM_FLAGS_DEBUG "-g -ggdb3" CACHE INTERNAL "asm debug compiler flags")
26 SET(CMAKE_C_FLAGS_RELEASE "-O3" CACHE INTERNAL "c release compiler flags")
27 SET(CMAKE_CXX_FLAGS_RELEASE "-O3" CACHE INTERNAL "cxx release compiler flags")
28 SET(CMAKE_ASM_FLAGS_RELEASE "" CACHE INTERNAL "asm release compiler flags")
[all …]
Dwin32.cmake9 set(CMAKE_C_FLAGS "${WIN32_FLAGS} " CACHE INTERNAL "c compiler flags")
10 set(CMAKE_CXX_FLAGS "${WIN32_FLAGS} -fno-rtti -fno-exceptions" CACHE INTERNAL "cxx compiler flags")
11 set(CMAKE_ASM_FLAGS "${WIN32_FLAGS} -x assembler-with-cpp" CACHE INTERNAL "asm compiler flags")
12 set(CMAKE_EXE_LINKER_FLAGS "${WIN32_FLAGS} ${LD_FLAGS}" CACHE INTERNAL "exe link flags")
14 …e test compiles use static library option so that we don't need to pre-set linker flags and scripts
Dazure_rtos_src.cmake23 # Enable strict build flags for netxduo
/NetX-Duo-v6.2.1/cmake/
Darm-none-eabi.cmake15 …e test compiles use static library option so that we don't need to pre-set linker flags and scripts
18 … ${SPEC_FLAGS} -fdata-sections -ffunction-sections -mlong-calls" CACHE INTERNAL "c compiler flags")
19 …ns -ffunction-sections -fno-rtti -fno-exceptions -mlong-calls" CACHE INTERNAL "cxx compiler flags")
20 set(CMAKE_ASM_FLAGS "${MCPU_FLAGS} -x assembler-with-cpp" CACHE INTERNAL "asm compiler flags")
21 …AKE_EXE_LINKER_FLAGS "${MCPU_FLAGS} ${LD_FLAGS} -Wl,--gc-sections" CACHE INTERNAL "exe link flags")
23 SET(CMAKE_C_FLAGS_DEBUG "-Og -g -ggdb3" CACHE INTERNAL "c debug compiler flags")
24 SET(CMAKE_CXX_FLAGS_DEBUG "-Og -g -ggdb3" CACHE INTERNAL "cxx debug compiler flags")
25 SET(CMAKE_ASM_FLAGS_DEBUG "-g -ggdb3" CACHE INTERNAL "asm debug compiler flags")
27 SET(CMAKE_C_FLAGS_RELEASE "-O3" CACHE INTERNAL "c release compiler flags")
28 SET(CMAKE_CXX_FLAGS_RELEASE "-O3" CACHE INTERNAL "cxx release compiler flags")
[all …]
/NetX-Duo-v6.2.1/addons/BSD/
Dnxd_bsd.h1030 INT nx_bsd_recvfrom(INT sockID, CHAR *buffer, INT buffersize, INT flags,struct nx_bsd_sockaddr *fr…
1031 INT nx_bsd_recv(INT sockID, VOID *rcvBuffer, INT bufferLength, INT flags);
1032 INT nx_bsd_recvmsg(INT sockID, struct nx_bsd_msghdr *msg, INT flags);
1033 INT nx_bsd_sendto(INT sockID, CHAR *msg, INT msgLength, INT flags, struct nx_bsd_sockaddr *destAdd…
1034 INT nx_bsd_send(INT sockID, const CHAR *msg, INT msgLength, INT flags);
1043 …dr *sa, nx_bsd_socklen_t salen, char *host, size_t hostlen, char *serv, size_t servlen, int flags);
Dnxd_bsd.c163 static INT nx_bsd_send_internal(INT sockID, const CHAR *msg, INT msgLength, INT flags,
165 static INT nx_bsd_recv_internal(INT sockID, struct nx_bsd_iovec *iov, size_t iovlen, INT flags,
177 … INT flags, struct nx_bsd_sockaddr* destAddr, INT destAddrLen);
183 … INT flags, struct nx_bsd_sockaddr* destAddr, INT destAddrLen);
3189 static INT nx_bsd_send_internal(INT sockID, const CHAR *msg, INT msgLength, INT flags, in nx_bsd_send_internal() argument
3273 (flags & MSG_DONTWAIT)) in nx_bsd_send_internal()
3545 (flags & MSG_DONTWAIT)) in nx_bsd_send_internal()
3642 INT nx_bsd_send(INT sockID, const CHAR *msg, INT msgLength, INT flags) in nx_bsd_send() argument
3714 …return(_nx_bsd_hardware_internal_sendto(bsd_socket_ptr, (CHAR *)msg, msgLength, flags, (struct nx_… in nx_bsd_send()
3731 return nx_bsd_send_internal(sockID, msg, msgLength, flags, in nx_bsd_send()
[all …]
/NetX-Duo-v6.2.1/addons/sntp/
Dnxd_sntp_client.c684 *(packet_ptr -> nx_packet_append_ptr) = (UCHAR)(time_message_ptr -> flags); in _nx_sntp_client_create_time_request_packet()
2320 unicast_request -> flags = NX_SNTP_CLIENT_NTP_VERSION << 3; in _nx_sntp_client_send_unicast_request()
2323 unicast_request -> flags |= PROTOCOL_MODE_CLIENT; in _nx_sntp_client_send_unicast_request()
2821 time_message_ptr -> flags = (*ntp_word_0 & 0xFF000000UL) >> 24; in _nx_sntp_client_extract_time_message_from_packet()
2973 if (client_ptr -> nx_sntp_current_server_time_message.flags) in _nx_sntp_client_reset_current_time_message()
3242 if (client_ptr -> nx_sntp_previous_server_time_message.flags) in _nx_sntp_client_apply_sanity_checks()
3266 mode = server_time_msg_ptr ->flags & 0x07; in _nx_sntp_client_apply_sanity_checks()
3284 server_ntp_version = (server_time_msg_ptr -> flags & 0x38) >> 3; in _nx_sntp_client_apply_sanity_checks()
3303 leap_second_indicator = (server_time_msg_ptr -> flags & 0xC0) >> 6; in _nx_sntp_client_apply_sanity_checks()
Dnxd_sntp_client.h526 …UINT flags; /* Flag containing host's NTP … member
/NetX-Duo-v6.2.1/addons/ptp/
Dnxd_ptp_client.h721 UINT _nx_ptp_client_sync_info_get(NX_PTP_CLIENT_SYNC *sync_ptr, USHORT *flags, SHORT *utc_offset);
749 UINT _nxe_ptp_client_sync_info_get(NX_PTP_CLIENT_SYNC *sync_ptr, USHORT *flags, SHORT *utc_offset);
Dnxd_ptp_client.c4985 UINT _nxe_ptp_client_sync_info_get(NX_PTP_CLIENT_SYNC *sync_ptr, USHORT *flags, SHORT *utc_offset)
4997 return(_nx_ptp_client_sync_info_get(sync_ptr, flags, utc_offset));
5040 UINT _nx_ptp_client_sync_info_get(NX_PTP_CLIENT_SYNC *sync_ptr, USHORT *flags, SHORT *utc_offset)
5044 if (flags)
5046 *flags = sync_ptr -> nx_ptp_client_sync_flags;
/NetX-Duo-v6.2.1/addons/mqtt/
Dnxd_mqtt_client.c4848 UCHAR flags; in _nxd_mqtt_client_publish() local
4871 flags = (UCHAR)((MQTT_CONTROL_PACKET_TYPE_PUBLISH << 4) | (QoS << 1)); in _nxd_mqtt_client_publish()
4875 flags = flags | MQTT_PUBLISH_RETAIN; in _nxd_mqtt_client_publish()
4898 ret = _nxd_mqtt_client_set_fixed_header(client_ptr, packet_ptr, flags, length, wait_option); in _nxd_mqtt_client_publish()
/NetX-Duo-v6.2.1/addons/mdns/
Dnxd_mdns.c9122 USHORT flags; in _nx_mdns_packet_create() local
9157 flags = NX_MDNS_QUERY_FLAG; in _nx_mdns_packet_create()
9161 flags = (NX_MDNS_RESPONSE_FLAG | NX_MDNS_AA_FLAG); in _nx_mdns_packet_create()
9165 NX_CHANGE_USHORT_ENDIAN(flags); in _nx_mdns_packet_create()
9168 *(USHORT *)((*packet_ptr) -> nx_packet_prepend_ptr + NX_MDNS_FLAGS_OFFSET) = flags; in _nx_mdns_packet_create()
/NetX-Duo-v6.2.1/docs/
Drevision_history.txt4738 … Fixed a bug to use the trap security flags instead of the agent security flags.
5222 … 2) never to set encryption or reportable bit in security header flags field,
5337 … receiving data. Fixed return code. Supported flags MSG_PEEK and MSG_DONTWAIT.
5338 … recvfrom - Supported flags MSG_PEEK and MSG_DONTWAIT.
5341 … send - Supported raw PPPOE. Supported flags MSG_DONTWAIT.
5342 … sendto - Supported raw PPPOE. Supported flags MSG_DONTWAIT.
5366 … nx_bsd_send_internal - Remove unnecessary code. Supported flags MSG_DONTWAIT.
5377 supported flags MSG_PEEK.
5567 … nxd_sntp_client.c Fixed a bug in setting flags of request packet.
5636 … Added internal flags to the DHCP CLient struct to simplify internal logic of the DHCP
/NetX-Duo-v6.2.1/addons/dns/
Dnxd_dns.c46 static UINT _nx_dns_header_create(UCHAR *buffer_ptr, USHORT id, USHORT flags);
7974 static UINT _nx_dns_header_create(UCHAR *buffer_ptr, USHORT id, USHORT flags) in _nx_dns_header_create() argument
7981 _nx_dns_short_to_network_convert(buffer_ptr + NX_DNS_FLAGS_OFFSET, flags); in _nx_dns_header_create()