Home | History | Annotate | Download | only in gperftools

Lines Matching refs:sizes

52 // "result", and the corresponding stack frame sizes in "sizes".
53 // Returns the number of values recorded in "result"/"sizes".
60 // int sizes[10];
61 // int depth = GetStackFrames(result, sizes, 10, 1);
71 // And corresponding stack frame sizes will also be recorded:
72 // sizes[0] 16
73 // sizes[1] 16
74 // (Stack frame sizes of 16 above are just for illustration purposes.)
75 // Stack frame sizes of 0 or less indicate that those frame sizes couldn't
79 // available. Also note that "result" and "sizes" must both be non-NULL.
80 extern PERFTOOLS_DLL_DECL int GetStackFrames(void** result, int* sizes, int max_depth,
87 extern PERFTOOLS_DLL_DECL int GetStackFramesWithContext(void** result, int* sizes, int max_depth,
91 // the stack trace only, and not the stack frame sizes as well.