Lines Matching refs:p
30 typedef void (*DepthFreeSo)(int depth, char *p);
88 void DepthFree(int depth, char *p) in DepthFree() argument
93 delete []p; in DepthFree()
96 return (DepthFree(depth - 1, p)); in DepthFree()
101 char *p = nullptr; in ThreadFuncCpp() local
112 p = DepthMalloc(g_stickDepth, MALLOC_SIZE); in ThreadFuncCpp()
116 if (p) { in ThreadFuncCpp()
117 DepthFree(g_stickDepth, p); in ThreadFuncCpp()
126 char *p = nullptr; in ThreadFuncCppHook() local
155 p = mallocFunc(g_stickDepth, MALLOC_SIZE); in ThreadFuncCppHook()
159 if (p) { in ThreadFuncCppHook()
160 freeFunc(g_stickDepth, p); in ThreadFuncCppHook()