Home
last modified time | relevance | path

Searched refs:pszStart (Results 1 – 1 of 1) sorted by relevance

/external/fastrpc/src/
Dstd_path.c102 char* pszStart = pszPath; in std_cleanpath() local
104 char* pcEnd = pszStart+std_strlen(pszStart); in std_cleanpath()
107 if ('/' == pszStart[0]) { in std_cleanpath()
108 pszStart++; in std_cleanpath()
111 pc = pszStart; in std_cleanpath()
122 pcDelFrom = std_memrchrbegin(pszStart, '/', pc - pszStart); in std_cleanpath()
135 while (pszStart == std_strstr(pszStart, "../")) { in std_cleanpath()
136 std_memmove(pszStart, pszStart+2, pcEnd-pszStart); in std_cleanpath()
140 while (pszStart == std_strstr(pszStart, "./")) { in std_cleanpath()
141 std_memmove(pszStart, pszStart+1, pcEnd-pszStart); in std_cleanpath()
[all …]