Searched refs:dst (Results 1 – 3 of 3) sorted by relevance
| /rkdeveloptool/ |
| H A D | RKBoot.cpp | 292 void CRKBoot::WCHAR_To_wchar(WCHAR *src,wchar_t *dst,int len) in WCHAR_To_wchar() argument 295 memset(dst,0,len*sizeof(wchar_t)); in WCHAR_To_wchar() 298 memcpy(dst,src,2); in WCHAR_To_wchar() 300 dst++; in WCHAR_To_wchar() 303 void CRKBoot::WCHAR_To_char(WCHAR *src,char *dst,int len) in WCHAR_To_char() argument 306 memset(dst,0,len*sizeof(char)); in WCHAR_To_char() 309 memcpy(dst,src,1); in WCHAR_To_char() 311 dst++; in WCHAR_To_char()
|
| H A D | RKBoot.h | 87 void WCHAR_To_wchar(WCHAR *src, wchar_t *dst, int len); 88 void WCHAR_To_char(WCHAR *src, char *dst, int len);
|
| H A D | main.cpp | 1358 static inline void getName(char* path, uint16_t* dst) { in getName() argument 1362 if (!path || !dst) in getName() 1375 str2wide(start, dst, len); in getName()
|