Searched refs:pcDst (Results 1 – 2 of 2) sorted by relevance
/external/fastrpc/src/ |
D | std.c | 47 int std_getversion(char *pcDst, int nDestSize) in std_getversion() argument 49 return std_strlcpy(pcDst, VERSION_STRING, nDestSize); in std_getversion() 141 int std_strlcpy(char* pcDst, const char* cpszSrc, int nDestSize) in std_strlcpy() argument 149 (void)std_memmove(pcDst, cpszSrc, n); in std_strlcpy() 151 pcDst[n] = 0; in std_strlcpy() 157 int std_strlcat(char* pcDst, const char* cpszSrc, int nDestSize) in std_strlcat() argument 161 while ((nLen < nDestSize) && (0 != pcDst[nLen])) { in std_strlcat() 165 return nLen + std_strlcpy(pcDst+nLen, cpszSrc, nDestSize-nLen); in std_strlcat()
|
/external/fastrpc/inc/ |
D | AEEstd.h | 81 extern int std_getversion(char *pcDst, int nDestSize); 88 extern int std_strlcpy(char *pcDst, const char *pszSrc, int nDestSize); 89 extern int std_strlcat(char *pcDst, const char *pszSrc, int nDestSize); 124 extern int std_wstrlcpy(AECHAR *pcDst, const AECHAR *pszSrc, int nDestSize); 125 extern int std_wstrlcat(AECHAR *pcDst, const AECHAR *pszSrc, int nDestSize);
|