Searched defs:frames (Results 1 - 4 of 4) sorted by relevance

/osnet-11/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DKernelStackRecord.java90 * DTrace library into an unformatted array of stack frames.
94 * @return array of human-readable stack frames
104 StackFrame[] frames;
106 frames = EMPTY_FRAMES;
110 frames = new StackFrame[n];
112 frames[i] = new StackFrame(f[i]);
115 return frames;
140 * Creates a {@code KernelStackRecord} with the given stack frames
143 * @param frames array of human-readable stack frames, copie
159 KernelStackRecord(StackFrame[] frames, byte[] rawBytes) argument
201 setStackFrames(StackFrame[] frames) argument
[all...]
H A DUserStackRecord.java92 * Creates a {@code UserStackRecord} with the given stack frames,
95 * @param frames array of human-readable stack frames, copied so
96 * that later modifying the given frames array will not affect this
99 * frames (see {@link StackValueRecord#getStackFrames()})
107 * {@code null} or if any element of the {@code frames} array is
113 UserStackRecord(int pid, StackFrame[] frames, byte[] rawBytes) argument
115 stackRecord = new KernelStackRecord(frames, rawBytes);
135 setStackFrames(StackFrame[] frames) argument
137 stackRecord.setStackFrames(frames);
[all...]
/osnet-11/usr/src/lib/libast/common/misc/
H A Dstk.c26 * A stack consists of a link list of variable size frames
45 * A stack is a header and a linked list of frames
343 register int frames = 0; local
364 if(frames)
378 frames++;
382 if(frames)
/osnet-11/usr/src/lib/libdtrace_jni/common/
H A Ddtj_consume.c1313 jobjectArray frames = NULL; local
1329 frames = (*jenv)->CallStaticObjectMethod(jenv, g_stack_jc,
1336 dtj_attach_frames(jc, jobj, frames);
1337 (*jenv)->DeleteLocalRef(jenv, frames);
1599 jobjectArray frames)
1605 frames);
1608 frames);
1598 dtj_attach_frames(dtj_java_consumer_t *jc, jobject stack, jobjectArray frames) argument

Completed in 43 milliseconds