Home
last modified time | relevance | path

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

/dports/devel/kBuild/kBuild-0.1.9998/src/lib/
H A Dnt_fullpath_cached.c78 nt_fullpath_cached(const char *pszPath, char *pszFull, size_t cchFull) in nt_fullpath_cached() argument
101 if (cchFull > pEntry->cchResult) in nt_fullpath_cached()
106 memcpy(pszFull, pEntry->pszResult, cchFull); in nt_fullpath_cached()
107 pszFull[cchFull - 1] = '\0'; in nt_fullpath_cached()
113 nt_fullpath(pszPath, pszFull, cchFull); in nt_fullpath_cached()
H A Dnt_fullpath.h33 extern void nt_fullpath(const char *pszPath, char *pszFull, size_t cchFull);
34 extern void nt_fullpath_cached(const char *pszPath, char *pszFull, size_t cchFull);
H A Dnt_fullpath.c312 nt_get_filename_info(const char *pszPath, char *pszFull, size_t cchFull) in nt_get_filename_info() argument
485 … psz, (int)(cchFull - (psz - pszFull) - 2), NULL, NULL); in nt_get_filename_info()
533 nt_fullpath(const char *pszPath, char *pszFull, size_t cchFull) in nt_fullpath() argument
544 if (nt_get_filename_info(pszPath, pszFull, cchFull) == 0) in nt_fullpath()
563 _fullpath(pszFull, pszPath, cchFull); in nt_fullpath()
/dports/devel/kBuild/kBuild-0.1.9998/src/lib/nt/
H A DkFsCache.c3265 UINT cchFull = GetFullPathNameA(pszPath, sizeof(szFull), szFull, NULL); in kFsCacheLookupSlowA() local
3266 if ( cchFull >= 3 in kFsCacheLookupSlowA()
3267 && cchFull < sizeof(szFull)) in kFsCacheLookupSlowA()
3270 return kFsCacheLookupAbsoluteA(pCache, szFull, cchFull, fFlags, penmError, ppLastAncestor); in kFsCacheLookupSlowA()
3274 kHlpAssertMsgFailed(("'%s' -> cchFull=%u\n", pszPath, cchFull)); in kFsCacheLookupSlowA()