Searched refs:s (Results 1 – 7 of 7) sorted by relevance
/segger-3.7.0/SEGGER/ |
D | SEGGER_SYSVIEW.h | 314 U8* SEGGER_SYSVIEW_EncodeString (U8* pPayload, const char* s, unsigned int MaxLen… 334 void SEGGER_SYSVIEW_PrintfHostEx (const char* s, U32 Options, ...); 335 void SEGGER_SYSVIEW_PrintfTargetEx (const char* s, U32 Options, ...); 336 void SEGGER_SYSVIEW_PrintfHost (const char* s, ...); 337 void SEGGER_SYSVIEW_PrintfTarget (const char* s, ...); 338 void SEGGER_SYSVIEW_WarnfHost (const char* s, ...); 339 void SEGGER_SYSVIEW_WarnfTarget (const char* s, ...); 340 void SEGGER_SYSVIEW_ErrorfHost (const char* s, ...); 341 void SEGGER_SYSVIEW_ErrorfTarget (const char* s, ...); 344 void SEGGER_SYSVIEW_Print (const char* s); [all …]
|
D | SEGGER_SYSVIEW.c | 918 static int _VPrintHost(const char* s, U32 Options, va_list* pParamList) { in _VPrintHost() argument 935 p = s; in _VPrintHost() 973 pPayload = _EncodeStr(pPayloadStart, s, SEGGER_SYSVIEW_MAX_STRING_LEN); in _VPrintHost() 2677 U8* SEGGER_SYSVIEW_EncodeString(U8* pPayload, const char* s, unsigned int MaxLen) { in SEGGER_SYSVIEW_EncodeString() argument 2678 return _EncodeStr(pPayload, s, MaxLen); in SEGGER_SYSVIEW_EncodeString() 2950 void SEGGER_SYSVIEW_PrintfHostEx(const char* s, U32 Options, ...) { in SEGGER_SYSVIEW_PrintfHostEx() argument 2956 r = _VPrintHost(s, Options, &ParamList); in SEGGER_SYSVIEW_PrintfHostEx() 2961 _VPrintTarget(s, Options, &ParamList); in SEGGER_SYSVIEW_PrintfHostEx() 2966 _VPrintHost(s, Options, &ParamList); in SEGGER_SYSVIEW_PrintfHostEx() 2984 void SEGGER_SYSVIEW_PrintfHost(const char* s, ...) { in SEGGER_SYSVIEW_PrintfHost() argument [all …]
|
D | SEGGER_RTT_printf.c | 425 const char * s = va_arg(*pParamList, const char *); in SEGGER_RTT_vprintf() local 427 c = *s; in SEGGER_RTT_vprintf() 428 s++; in SEGGER_RTT_vprintf()
|
D | SEGGER.h | 202 int SEGGER_atoi (const char* s); 205 unsigned SEGGER_strlen (const char* s);
|
D | SEGGER_RTT.c | 1239 unsigned SEGGER_RTT_WriteString(unsigned BufferIndex, const char* s) { in SEGGER_RTT_WriteString() argument 1242 Len = STRLEN(s); in SEGGER_RTT_WriteString() 1243 return SEGGER_RTT_Write(BufferIndex, s, Len); in SEGGER_RTT_WriteString() 1974 int SEGGER_RTT_TerminalOut (unsigned char TerminalId, const char* s) { in SEGGER_RTT_TerminalOut() argument 1993 FragLen = STRLEN(s); in SEGGER_RTT_TerminalOut() 2009 Status = (int)_WriteBlocking(pRing, s, FragLen); in SEGGER_RTT_TerminalOut() 2023 Status = (int)_WriteBlocking(pRing, s, (FragLen < (Avail - 4u)) ? FragLen : (Avail - 4u)); in SEGGER_RTT_TerminalOut() 2032 Status = (int)_WriteBlocking(pRing, s, FragLen); in SEGGER_RTT_TerminalOut()
|
D | SEGGER_RTT.h | 378 unsigned SEGGER_RTT_WriteString (unsigned BufferIndex, const char* s); 414 int SEGGER_RTT_TerminalOut (unsigned char TerminalId, const char* s);
|
/segger-3.7.0/SEGGER/Syscalls/ |
D | SEGGER_RTT_Syscalls_SES.c | 222 int puts(const char *s) { in puts() argument 223 return SEGGER_RTT_WriteString(0, s); in puts()
|