Home | History | Annotate | Download | only in src

Lines Matching full:oscl_wchar

145         void RetrieveFilename(const oscl_wchar* aSource, OSCL_wHeapString<OsclMemAllocator>& aFilename)
153 oscl_wchar* lastslash = (oscl_wchar*)aSource;
157 const oscl_wchar* tmp1 = oscl_strstr(lastslash, _STRLIT_WCHAR("\\"));
158 const oscl_wchar* tmp2 = oscl_strstr(lastslash, _STRLIT_WCHAR("/"));
161 lastslash = (oscl_wchar*)tmp1 + 1;
165 lastslash = (oscl_wchar*)tmp2 + 1;
183 const oscl_wchar* tmp = oscl_strstr(aFilename.get_cstr(), _STRLIT_WCHAR("."));
186 oscl_strncpy((oscl_wchar*)tmp, _STRLIT_WCHAR("_"), 1);
199 oscl_wchar iTempWCharBuf[512];