| /FreeRTOS-Plus/Demo/Common/FreeRTOS_Plus_CLI_Demos/ |
| A D | UDP-Related-CLI-commands.c | 160 if( pcParameter == NULL ) in prvPingCommand() 282 … FreeRTOS_GetEndPointConfiguration( &ulAddress, NULL, NULL, NULL, pxNetworkEndPoints ); in prvDisplayIPConfig() 284 FreeRTOS_GetAddressConfiguration( &ulAddress, NULL, NULL, NULL ); in prvDisplayIPConfig() 293 … FreeRTOS_GetEndPointConfiguration( NULL, &ulAddress, NULL, NULL, pxNetworkEndPoints ); in prvDisplayIPConfig() 295 FreeRTOS_GetAddressConfiguration( NULL, &ulAddress, NULL, NULL ); in prvDisplayIPConfig() 304 … FreeRTOS_GetEndPointConfiguration( NULL, NULL, &ulAddress, NULL, pxNetworkEndPoints ); in prvDisplayIPConfig() 306 FreeRTOS_GetAddressConfiguration( NULL, NULL, &ulAddress, NULL ); in prvDisplayIPConfig() 315 … FreeRTOS_GetEndPointConfiguration( NULL, NULL, NULL, &ulAddress, pxNetworkEndPoints ); in prvDisplayIPConfig() 317 FreeRTOS_GetAddressConfiguration( NULL, NULL, NULL, &ulAddress ); in prvDisplayIPConfig()
|
| /FreeRTOS-Plus/Source/Application-Protocols/network_transport/ |
| A D | transport_plaintext.c | 59 PlaintextTransportParams_t * pPlaintextTransportParams = NULL; in Plaintext_FreeRTOS_Connect() 63 … if( ( pNetworkContext == NULL ) || ( pNetworkContext->pParams == NULL ) || ( pHostName == NULL ) ) in Plaintext_FreeRTOS_Connect() 76 pPlaintextTransportParams->tcpSocket = NULL; in Plaintext_FreeRTOS_Connect() 100 PlaintextTransportParams_t * pPlaintextTransportParams = NULL; in Plaintext_FreeRTOS_Disconnect() 103 if( ( pNetworkContext == NULL ) || ( pNetworkContext->pParams == NULL ) ) in Plaintext_FreeRTOS_Disconnect() 122 PlaintextTransportParams_t * pPlaintextTransportParams = NULL; in Plaintext_FreeRTOS_recv() 125 if( ( pNetworkContext == NULL ) || ( pNetworkContext->pParams == NULL ) ) in Plaintext_FreeRTOS_recv() 130 else if( pBuffer == NULL ) in Plaintext_FreeRTOS_recv() 156 PlaintextTransportParams_t * pPlaintextTransportParams = NULL; in Plaintext_FreeRTOS_send() 159 if( ( pNetworkContext == NULL ) || ( pNetworkContext->pParams == NULL ) ) in Plaintext_FreeRTOS_send() [all …]
|
| A D | transport_mbedtls.c | 251 if( ( str != NULL ) && ( file != NULL ) ) in mbedtls_string_printf() 273 NULL ); in sslContextInit() 299 configASSERT( pRootCa != NULL ); in setRootCa() 442 configASSERT( pHostName != NULL ); in setOptionalConfigurations() 596 NULL ); in tlsHandshake() 704 ( pHostName == NULL ) || in TLS_FreeRTOS_Connect() 802 if( ( pNetworkContext != NULL ) && ( pNetworkContext->pParams != NULL ) ) in TLS_FreeRTOS_Disconnect() 850 if( ( pNetworkContext == NULL ) || ( pNetworkContext->pParams == NULL ) ) in TLS_FreeRTOS_recv() 855 else if( pBuffer == NULL ) in TLS_FreeRTOS_recv() 915 if( ( pNetworkContext == NULL ) || ( pNetworkContext->pParams == NULL ) ) in TLS_FreeRTOS_send() [all …]
|
| A D | transport_wolfSSL.c | 207 configASSERT( pNetCtx != NULL ); in loadCredentials() 208 configASSERT( pNetCred != NULL ); in loadCredentials() 288 configASSERT( pNetCtx != NULL ); in tlsSetup() 386 ( pHostName == NULL ) || in TLS_FreeRTOS_Connect() 460 WOLFSSL_CTX * pCtx = NULL; in TLS_FreeRTOS_Disconnect() 489 WOLFSSL * pSsl = NULL; in TLS_FreeRTOS_recv() 491 if( ( pNetworkContext == NULL ) || ( pNetworkContext->sslContext.ssl == NULL ) ) in TLS_FreeRTOS_recv() 496 else if( pBuffer == NULL ) in TLS_FreeRTOS_recv() 539 WOLFSSL * pSsl = NULL; in TLS_FreeRTOS_send() 541 if( ( pNetworkContext == NULL ) || ( pNetworkContext->sslContext.ssl == NULL ) ) in TLS_FreeRTOS_send() [all …]
|
| A D | mbedtls_pk_pkcs11.c | 217 .verify_rs_func = NULL, 410 void * pvCtx = NULL; in p11_ecdsa_ctx_alloc() 414 if( pvCtx != NULL ) in p11_ecdsa_ctx_alloc() 431 if( pvCtx != NULL ) in p11_ecdsa_ctx_free() 714 if( pxEcDsaCtx != NULL ) in p11_ecdsa_sign() 810 if( ( pxPubKey == NULL ) || ( pxPrvKey == NULL ) ) in p11_ecdsa_check_pair() 855 NULL, NULL ); in p11_ecdsa_check_pair() 958 else if( pk != NULL ) in p11_rsa_sign() 1022 void * pvCtx = NULL; in p11_rsa_ctx_alloc() 1026 if( pvCtx != NULL ) in p11_rsa_ctx_alloc() [all …]
|
| A D | transport_mbedtls_pkcs11.c | 236 if( ( str != NULL ) && ( file != NULL ) ) in mbedtls_string_printf() 257 NULL ); in sslContextInit() 594 xTemplate.pValue = NULL; in readCertificateIntoContext() 650 CK_SLOT_ID * pxSlotIds = NULL; in initializeClientKeys() 667 if( NULL == pxSlotIds ) in initializeClientKeys() 736 ( pHostName == NULL ) || in TLS_FreeRTOS_Connect() 813 if( ( pNetworkContext != NULL ) && ( pNetworkContext->pParams != NULL ) ) in TLS_FreeRTOS_Disconnect() 854 if( ( pNetworkContext == NULL ) || ( pNetworkContext->pParams == NULL ) ) in TLS_FreeRTOS_recv() 859 else if( pBuffer == NULL ) in TLS_FreeRTOS_recv() 920 if( ( pNetworkContext == NULL ) || ( pNetworkContext->pParams == NULL ) ) in TLS_FreeRTOS_send() [all …]
|
| /FreeRTOS-Plus/Demo/corePKCS11_Windows_Simulator/examples/ |
| A D | management_and_rng.c | 71 CK_FUNCTION_LIST_PTR pxFunctionList = NULL; in vPKCS11ManagementAndRNGDemo() 90 CK_SLOT_ID * pxSlotId = NULL; in vPKCS11ManagementAndRNGDemo() 109 configASSERT( pxFunctionList != NULL ); in vPKCS11ManagementAndRNGDemo() 110 configASSERT( pxFunctionList->C_Initialize != NULL ); in vPKCS11ManagementAndRNGDemo() 111 configASSERT( pxFunctionList->C_GetSlotList != NULL ); in vPKCS11ManagementAndRNGDemo() 112 configASSERT( pxFunctionList->C_OpenSession != NULL ); in vPKCS11ManagementAndRNGDemo() 113 configASSERT( pxFunctionList->C_Login != NULL ); in vPKCS11ManagementAndRNGDemo() 116 configASSERT( pxFunctionList->C_Finalize != NULL ); in vPKCS11ManagementAndRNGDemo() 135 NULL, in vPKCS11ManagementAndRNGDemo() 143 configASSERT( pxSlotId != NULL ); in vPKCS11ManagementAndRNGDemo() [all …]
|
| A D | demo_helpers.c | 51 CK_FUNCTION_LIST_PTR pxFunctionList = NULL; in vStart() 55 CK_SLOT_ID * pxSlotId = NULL; in vStart() 59 configASSERT( pxFunctionList != NULL ); in vStart() 63 configASSERT( pxFunctionList->C_Login != NULL ); in vStart() 72 NULL, in vStart() 77 configASSERT( pxSlotId != NULL ); in vStart() 107 C_Finalize( NULL ); in vEnd() 211 xTemplate.pValue = NULL; in vExportPublicKey() 229 if( NULL == *ppucDerPublicKey ) in vExportPublicKey() 257 *ppucDerPublicKey = NULL; in vExportPublicKey() [all …]
|
| /FreeRTOS-Plus/Demo/FreeRTOS_Plus_TCP_Echo_Posix/ |
| A D | code_coverage_additions.c | 160 if( xEventGroup != NULL ) in prvTraceUtils() 184 if( xQueue != NULL ) in prvTraceUtils() 282 if( xHandle != NULL ) in prvPeekTimeout() 315 if( xISRQueue != NULL ) in prvQueueQueryFromISR() 538 vTaskSetApplicationTaskTag( NULL, NULL ); in prvTaskTags() 540 if( xTaskGetApplicationTaskTag( NULL ) != NULL ) in prvTaskTags() 545 if( xTaskGetApplicationTaskTagFromISR( NULL ) != NULL ) in prvTaskTags() 563 if( xTaskCallApplicationTaskHook( NULL, ( void * ) NULL ) != pdFAIL ) in prvTaskTags() 575 vTaskSetApplicationTaskTag( NULL, NULL ); in prvTaskTags() 577 if( xTaskGetApplicationTaskTag( NULL ) != NULL ) in prvTaskTags() [all …]
|
| /FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI/ |
| A D | FreeRTOS_CLI.c | 122 configASSERT( pxNewListItem != NULL ); in FreeRTOS_CLIRegisterCommand() 124 if( pxNewListItem != NULL ) in FreeRTOS_CLIRegisterCommand() 165 if( pxCommand == NULL ) in FreeRTOS_CLIProcessCommand() 204 pxCommand = NULL; in FreeRTOS_CLIProcessCommand() 206 else if( pxCommand != NULL ) in FreeRTOS_CLIProcessCommand() 216 pxCommand = NULL; in FreeRTOS_CLIProcessCommand() 241 const char * pcReturn = NULL; in FreeRTOS_CLIGetParameter() 279 pcReturn = NULL; in FreeRTOS_CLIGetParameter() 301 configASSERT( pxCommandToRegister != NULL ); in prvRegisterCommand() 334 if( pxCommand == NULL ) in prvHelpCommand() [all …]
|
| /FreeRTOS-Plus/Source/Reliance-Edge/tests/util/ |
| A D | atoi.c | 114 if( pszReturn != NULL ) in RedHtoUL() 122 pszReturn = NULL; in RedHtoUL() 159 REDASSERT( pszNum != NULL ); in RedHtoULL() 195 if( pszReturn != NULL ) in RedHtoULL() 231 REDASSERT( pszNum != NULL ); in RedNtoUL() 252 pszReturn = NULL; in RedNtoUL() 290 pszReturn = NULL; in RedNtoUL() 342 pszReturn = NULL; in RedNtoULL() 380 pszReturn = NULL; in RedNtoULL() 417 if( pszSuffix != NULL ) in RedSizeToUL() [all …]
|
| /FreeRTOS-Plus/Demo/FreeRTOS_Plus_TCP_Minimal_Windows_Simulator/DemoTasks/ |
| A D | SimpleUDPClientAndServer.c | 83 …TaskCreate( prvSimpleClientTask, "SimpCpyClnt", usStackSize, ( void * ) ulPort, uxPriority, NULL ); in vStartSimpleUDPClientServerTasks() 84 …kCreate( prvSimpleServerTask, "SimpCpySrv", usStackSize, ( void * ) ulPort, uxPriority + 1, NULL ); in vStartSimpleUDPClientServerTasks() 87 …eZeroCopyUDPClientTask, "SimpZCpyClnt", usStackSize, ( void * ) ( ulPort + 1 ), uxPriority, NULL ); in vStartSimpleUDPClientServerTasks() 88 …eZeroCopyServerTask, "SimpZCpySrv", usStackSize, ( void * ) ( ulPort + 1 ), uxPriority + 1, NULL ); in vStartSimpleUDPClientServerTasks() 110 FreeRTOS_GetEndPointConfiguration( &ulIPAddress, NULL, NULL, NULL, pxNetworkEndPoints ); in prvSimpleClientTask() 112 FreeRTOS_GetAddressConfiguration( &ulIPAddress, NULL, NULL, NULL ); in prvSimpleClientTask() 234 FreeRTOS_GetEndPointConfiguration( &ulIPAddress, NULL, NULL, NULL, pxNetworkEndPoints ); in prvSimpleZeroCopyUDPClientTask() 242 FreeRTOS_GetAddressConfiguration( &ulIPAddress, NULL, NULL, NULL ); in prvSimpleZeroCopyUDPClientTask() 281 …oadBuffer = ( uint8_t * ) FreeRTOS_GetUDPPayloadBuffer( xStringLength, portMAX_DELAY ) ) == NULL ); in prvSimpleZeroCopyUDPClientTask() 352 FreeRTOS_GetEndPointConfiguration( &ulIPAddress, NULL, NULL, NULL, pxNetworkEndPoints ); in prvSimpleZeroCopyServerTask() [all …]
|
| /FreeRTOS-Plus/Demo/FreeRTOS_Plus_TCP_UDP_Mode_CLI_Windows_Simulator/DemoTasks/ |
| A D | SimpleClientAndServer.c | 73 …TaskCreate( prvSimpleClientTask, "SimpCpyClnt", usStackSize, ( void * ) ulPort, uxPriority, NULL ); in vStartSimpleUDPClientServerTasks() 74 …kCreate( prvSimpleServerTask, "SimpCpySrv", usStackSize, ( void * ) ulPort, uxPriority + 1, NULL ); in vStartSimpleUDPClientServerTasks() 77 …eZeroCopyUDPClientTask, "SimpZCpyClnt", usStackSize, ( void * ) ( ulPort + 1 ), uxPriority, NULL ); in vStartSimpleUDPClientServerTasks() 78 …eZeroCopyServerTask, "SimpZCpySrv", usStackSize, ( void * ) ( ulPort + 1 ), uxPriority + 1, NULL ); in vStartSimpleUDPClientServerTasks() 100 FreeRTOS_GetEndPointConfiguration( &ulIPAddress, NULL, NULL, NULL, pxNetworkEndPoints ); in prvSimpleClientTask() 108 FreeRTOS_GetAddressConfiguration( &ulIPAddress, NULL, NULL, NULL ); in prvSimpleClientTask() 228 FreeRTOS_GetEndPointConfiguration( &ulIPAddress, NULL, NULL, NULL, pxNetworkEndPoints ); in prvSimpleZeroCopyUDPClientTask() 236 FreeRTOS_GetAddressConfiguration( &ulIPAddress, NULL, NULL, NULL ); in prvSimpleZeroCopyUDPClientTask() 275 …oadBuffer = ( uint8_t * ) FreeRTOS_GetUDPPayloadBuffer( xStringLength, portMAX_DELAY ) ) == NULL ); in prvSimpleZeroCopyUDPClientTask() 346 FreeRTOS_GetEndPointConfiguration( &ulIPAddress, NULL, NULL, NULL, pxNetworkEndPoints ); in prvSimpleZeroCopyServerTask() [all …]
|
| /FreeRTOS-Plus/VisualStudio_StaticProjects/MbedTLS/ |
| A D | mbedtls_freertos_port.c | 62 void * pBuffer = NULL; in mbedtls_platform_calloc() 72 if( pBuffer != NULL ) in mbedtls_platform_calloc() 91 if( ptr != NULL ) in mbedtls_platform_free() 108 configASSERT( pMutex != NULL ); in mbedtls_platform_mutex_init() 136 pMutex->mutexHandle = NULL; in mbedtls_platform_mutex_free() 152 configASSERT( pMutex != NULL ); in mbedtls_platform_mutex_lock() 179 configASSERT( pMutex != NULL ); in mbedtls_platform_mutex_unlock() 250 &hProv, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT ) ) in mbedtls_hardware_poll() 272 configASSERT( olen != NULL ); in mbedtls_hardware_poll() 299 configASSERT( olen != NULL ); in mbedtls_hardware_poll() [all …]
|
| /FreeRTOS-Plus/Test/FreeRTOS-Plus-TCP/Integration/Full-TCP-Suite/WinPCap/ |
| A D | arch.c | 59 pcap_t * pxOpenedInterfaceHandle = NULL; 73 unsigned char * uip_buf = NULL; 145 if( pxAllNetworkInterfaces != NULL ) in xNetifInit() 162 pxAllNetworkInterfaces = NULL; in prvPrintAvailableNetworkInterfaces() 165 if( pxAllNetworkInterfaces != NULL ) in prvPrintAvailableNetworkInterfaces() 173 if( xInterface->description != NULL ) in prvPrintAvailableNetworkInterfaces() 191 pxAllNetworkInterfaces = NULL; in prvPrintAvailableNetworkInterfaces() 201 if( pxAllNetworkInterfaces != NULL ) in prvPrintAvailableNetworkInterfaces() 205 pxAllNetworkInterfaces = NULL; in prvPrintAvailableNetworkInterfaces() 242 if( pxOpenedInterfaceHandle == NULL ) in prvOpenSelectedNetworkInterface() [all …]
|
| /FreeRTOS-Plus/Test/FreeRTOS-Cellular-Interface/Integration/WinPCap/ |
| A D | arch.c | 59 pcap_t * pxOpenedInterfaceHandle = NULL; 73 unsigned char * uip_buf = NULL; 145 if( pxAllNetworkInterfaces != NULL ) in xNetifInit() 162 pxAllNetworkInterfaces = NULL; in prvPrintAvailableNetworkInterfaces() 165 if( pxAllNetworkInterfaces != NULL ) in prvPrintAvailableNetworkInterfaces() 173 if( xInterface->description != NULL ) in prvPrintAvailableNetworkInterfaces() 191 pxAllNetworkInterfaces = NULL; in prvPrintAvailableNetworkInterfaces() 201 if( pxAllNetworkInterfaces != NULL ) in prvPrintAvailableNetworkInterfaces() 205 pxAllNetworkInterfaces = NULL; in prvPrintAvailableNetworkInterfaces() 242 if( pxOpenedInterfaceHandle == NULL ) in prvOpenSelectedNetworkInterface() [all …]
|
| /FreeRTOS-Plus/Test/FreeRTOS-Plus-TCP/Integration/Full-TCP-Networkless/WinPCap/ |
| A D | arch.c | 59 pcap_t * pxOpenedInterfaceHandle = NULL; 73 unsigned char * uip_buf = NULL; 145 if( pxAllNetworkInterfaces != NULL ) in xNetifInit() 162 pxAllNetworkInterfaces = NULL; in prvPrintAvailableNetworkInterfaces() 165 if( pxAllNetworkInterfaces != NULL ) in prvPrintAvailableNetworkInterfaces() 173 if( xInterface->description != NULL ) in prvPrintAvailableNetworkInterfaces() 191 pxAllNetworkInterfaces = NULL; in prvPrintAvailableNetworkInterfaces() 201 if( pxAllNetworkInterfaces != NULL ) in prvPrintAvailableNetworkInterfaces() 205 pxAllNetworkInterfaces = NULL; in prvPrintAvailableNetworkInterfaces() 242 if( pxOpenedInterfaceHandle == NULL ) in prvOpenSelectedNetworkInterface() [all …]
|
| /FreeRTOS-Plus/Demo/FreeRTOS_Plus_TCP_IPv6_Demo/common/WinPCap/ |
| A D | arch.c | 59 pcap_t * pxOpenedInterfaceHandle = NULL; 73 unsigned char * uip_buf = NULL; 145 if( pxAllNetworkInterfaces != NULL ) in xNetifInit() 162 pxAllNetworkInterfaces = NULL; in prvPrintAvailableNetworkInterfaces() 165 if( pxAllNetworkInterfaces != NULL ) in prvPrintAvailableNetworkInterfaces() 173 if( xInterface->description != NULL ) in prvPrintAvailableNetworkInterfaces() 191 pxAllNetworkInterfaces = NULL; in prvPrintAvailableNetworkInterfaces() 201 if( pxAllNetworkInterfaces != NULL ) in prvPrintAvailableNetworkInterfaces() 205 pxAllNetworkInterfaces = NULL; in prvPrintAvailableNetworkInterfaces() 242 if( pxOpenedInterfaceHandle == NULL ) in prvOpenSelectedNetworkInterface() [all …]
|
| /FreeRTOS-Plus/VisualStudio_StaticProjects/FreeRTOS+TCP/ |
| A D | NetworkInterface_WinPCap.c | 150 static void * pvSendEvent = NULL; 199 if( pxAllNetworkInterfaces != NULL ) in xWinPcap_NetworkInterfaceInitialise() 217 if( xSendBuffer == NULL ) in prvCreateThreadSafeBuffers() 227 if( xRecvBuffer == NULL ) in prvCreateThreadSafeBuffers() 254 if( pucData != NULL ) in prvStreamBufferAdd() 517 if( pucName != NULL ) in prvOpenInterface() 624 if( pvSendEvent == NULL ) in prvConfigureCaptureBehaviour() 627 pvSendEvent = CreateEvent( NULL, FALSE, TRUE, NULL ); in prvConfigureCaptureBehaviour() 636 NULL ); in prvConfigureCaptureBehaviour() 648 NULL ); in prvConfigureCaptureBehaviour() [all …]
|
| /FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/Common/ |
| A D | http_demo_utils.c | 93 assert( connectFunction != NULL ); in connectToServerWithBackoffRetries() 145 const char * pcHostStart = NULL; in getUrlPath() 146 const char * pcPathStart = NULL; in getUrlPath() 149 if( ( pcUrl == NULL ) || ( pcPath == NULL ) || ( pxPathLen == NULL ) ) in getUrlPath() 173 if( pcPathStart != NULL ) in getUrlPath() 222 const char * pcHostStart = NULL; in getUrlAddress() 223 const char * pcHostEnd = NULL; in getUrlAddress() 226 if( ( pcUrl == NULL ) || ( pcAddress == NULL ) || ( pxAddressLen == NULL ) ) in getUrlAddress() 244 if( pcHostStart == NULL ) in getUrlAddress() 277 *pcAddress = NULL; in getUrlAddress()
|
| /FreeRTOS-Plus/Demo/AWS/Ota_Windows_Simulator/Common/HTTP_Utils/ |
| A D | http_demo_utils.c | 93 assert( connectFunction != NULL ); in connectToServerWithBackoffRetries() 145 const char * pcHostStart = NULL; in getUrlPath() 146 const char * pcPathStart = NULL; in getUrlPath() 149 if( ( pcUrl == NULL ) || ( pcPath == NULL ) || ( pxPathLen == NULL ) ) in getUrlPath() 173 if( pcPathStart != NULL ) in getUrlPath() 222 const char * pcHostStart = NULL; in getUrlAddress() 223 const char * pcHostEnd = NULL; in getUrlAddress() 226 if( ( pcUrl == NULL ) || ( pcAddress == NULL ) || ( pxAddressLen == NULL ) ) in getUrlAddress() 244 if( pcHostStart == NULL ) in getUrlAddress() 277 *pcAddress = NULL; in getUrlAddress()
|
| /FreeRTOS-Plus/Test/FreeRTOS-Cellular-Interface/Integration/ |
| A D | comm_if_windows.c | 559 NULL, in _prvCommIntfOpen() 562 NULL ); in _prvCommIntfOpen() 572 NULL, in _prvCommIntfOpen() 636 CreateThread( NULL, 0, _CellularCommReceiveCBThreadFunc, hComm, 0, NULL ); in _prvCommIntfOpen() 697 HANDLE hComm = NULL; in _prvCommIntfClose() 782 HANDLE hComm = NULL; in _prvCommIntfSend() 812 osWrite.hEvent = CreateEvent( NULL, TRUE, FALSE, NULL ); in _prvCommIntfSend() 885 if( osWrite.hEvent != NULL ) in _prvCommIntfSend() 908 HANDLE hComm = NULL; in _prvCommIntfReceive() 938 osRead.hEvent = CreateEvent( NULL, TRUE, FALSE, NULL ); in _prvCommIntfReceive() [all …]
|
| A D | cellular_platform.c | 72 vTaskDelete( NULL ); in prvThreadRoutineWrapper() 82 configASSERT( pMutex != NULL ); in prIotMutexTimedLock() 107 threadInfo_t * pThreadInfo = NULL; in Platform_CreateDetachedThread() 109 configASSERT( threadRoutine != NULL ); in Platform_CreateDetachedThread() 115 if( pThreadInfo == NULL ) in Platform_CreateDetachedThread() 132 NULL ) != pdPASS ) in Platform_CreateDetachedThread() 153 SemaphoreHandle_t xSemaphore = NULL; in PlatformMutex_Create() 156 configASSERT( pNewMutex != NULL ); in PlatformMutex_Create() 180 if( xSemaphore == NULL ) in PlatformMutex_Create() 196 configASSERT( pMutex != NULL ); in PlatformMutex_Destroy() [all …]
|
| /FreeRTOS-Plus/Source/Application-Protocols/network_transport/tcp_sockets_wrapper/ports/cellular/ |
| A D | tcp_sockets_wrapper.c | 376 if( pCellularSocketContext != NULL ) in prvCellularSocketOpenCallback() 409 if( pCellularSocketContext != NULL ) in prvCellularSocketDataReadyCallback() 430 if( pCellularSocketContext != NULL ) in prvCellularSocketClosedCallback() 450 if( pCellularSocketContext == NULL ) in prvSetupSocketRecvTimeout() 478 if( pCellularSocketContext == NULL ) in prvSetupSocketSendTimeout() 517 if( cellularSocketHandle == NULL ) in prvCellularSocketRegisterCallback() 722 …( void ) Cellular_SocketRegisterClosedCallback( CellularHandle, cellularSocketHandle, NULL, NULL ); in TCP_Sockets_Connect() 730 …if( ( pCellularSocketContext != NULL ) && ( pCellularSocketContext->socketEventGroupHandle != NULL… in TCP_Sockets_Connect() 792 …( void ) Cellular_SocketRegisterClosedCallback( CellularHandle, cellularSocketHandle, NULL, NULL ); in TCP_Sockets_Disconnect() 818 if( pCellularSocketContext == NULL ) in TCP_Sockets_Recv() [all …]
|
| /FreeRTOS-Plus/Demo/Common/FreeRTOS_Plus_UDP_Demos/CLICommands/ |
| A D | CLI-commands.c | 419 if( pcParameter != NULL ) in prvParameterEchoCommand() 479 if( pcParameter == NULL ) in prvPingCommand() 601 … FreeRTOS_GetEndPointConfiguration( &ulAddress, NULL, NULL, NULL, pxNetworkEndPoints ); in prvDisplayIPConfig() 603 FreeRTOS_GetAddressConfiguration( &ulAddress, NULL, NULL, NULL ); in prvDisplayIPConfig() 612 … FreeRTOS_GetEndPointConfiguration( NULL, &ulAddress, NULL, NULL, pxNetworkEndPoints ); in prvDisplayIPConfig() 614 FreeRTOS_GetAddressConfiguration( NULL, &ulAddress, NULL, NULL ); in prvDisplayIPConfig() 623 … FreeRTOS_GetEndPointConfiguration( NULL, NULL, &ulAddress, NULL, pxNetworkEndPoints ); in prvDisplayIPConfig() 625 FreeRTOS_GetAddressConfiguration( NULL, NULL, &ulAddress, NULL ); in prvDisplayIPConfig() 634 … FreeRTOS_GetEndPointConfiguration( NULL, NULL, NULL, &ulAddress, pxNetworkEndPoints ); in prvDisplayIPConfig() 636 FreeRTOS_GetAddressConfiguration( NULL, NULL, NULL, &ulAddress ); in prvDisplayIPConfig()
|