Home
last modified time | relevance | path

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

/base/hiviewdfx/blackbox/
Dblackbox_core.c50 static void GetDirName(char *dirBuf, unsigned int dirBufSize, const char *path) in GetDirName() argument
52 if (dirBuf == NULL || dirBufSize == 0 || path == NULL) { in GetDirName()
53 BBOX_PRINT_ERR("dirBuf: %p, dirBufSize: %u, path: %p!\n", dirBuf, dirBufSize, path); in GetDirName()
62 (void)memset_s(dirBuf, dirBufSize, 0, dirBufSize); in GetDirName()
63 if (strncpy_s(dirBuf, dirBufSize - 1, path, end - path + strlen("/")) != EOK) { in GetDirName()