Lines Matching refs:uxLength
190 size_t uxLength, in can_handle() argument
195 if( strncmp( pcBuffer, pcCommand, uxLength ) == 0 ) in can_handle()
197 phandler( pcBuffer + uxLength ); in can_handle()
418 size_t uxLength = strlen( pcBuffer ); in handle_udp() local
433 char * pcCopy = ( char * ) pvPortMalloc( uxLength + 3 ); in handle_udp()
437 memcpy( pcCopy, pcBuffer, uxLength ); in handle_udp()
438 pcCopy[ uxLength + 0 ] = '\r'; in handle_udp()
439 pcCopy[ uxLength + 1 ] = '\n'; in handle_udp()
440 pcCopy[ uxLength + 2 ] = 0; in handle_udp()
443 uxLength + 2, in handle_udp()
816 size_t uxLength = 0U; in uxGetOptions() local
822 while( ( pcCommand[ uxLength ] != 0 ) && ( !isspace( ( uint8_t ) pcCommand[ uxLength ] ) ) ) in uxGetOptions()
824 switch( pcCommand[ uxLength ] ) in uxGetOptions()
847 uxLength++; in uxGetOptions()
850 if( uxLength > 0U ) in uxGetOptions()
852 *ppcCommand = &( pcCommand[ uxLength ] ); in uxGetOptions()
860 return uxLength; in uxGetOptions()