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

/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DStackTrace.java42 * Represents a stack trace, that is, an ordered collection of stack frames.
47 private StackFrame[] frames; field in class:StackTrace
49 public StackTrace(StackFrame[] frames) { argument
50 this.frames = frames;
59 if (depth >= frames.length) {
63 System.arraycopy(frames, 0, f, 0, depth);
69 for (int i = 0; i < frames.length; i++) {
70 frames[i].resolve(snapshot);
75 return frames;
[all...]
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DClip.java90 * an integral number of sample frames,
137 * Obtains the media length in sample frames.
138 * @return the media length, expressed in sample frames,
153 * Sets the media position in sample frames. The position is zero-based;
157 * To obtain the current position in sample frames, use the
161 * @param frames the desired new media position, expressed in sample frames
163 public void setFramePosition(int frames); argument
182 * Sets the first and last sample frames that will be played in
188 * @param start the loop's starting position, in sample frames (zer
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DThreadReference.java174 * Returns the number of stack frames in the thread's current
198 List<StackFrame> frames() throws IncompatibleThreadStateException; method in interface:ThreadReference
203 * frame; higher indices retrieve caller frames.
226 * @param length the number of frames to retrieve
239 List<StackFrame> frames(int start, int length) method in interface:ThreadReference
311 * Pop stack frames.
313 * All frames up to and including the <CODE>frame</CODE> are
360 * None of the frames through and including the frame for the caller
381 * @throws NativeMethodException if one of the frames that would be
388 * more frames
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DToolkit.java143 * gets the number of frames needed to play the specified number of microseconds
150 * gets the time in microseconds for the given number of frames
152 static long frames2micros(AudioFormat format, long frames) { argument
153 return (long) (((double) frames) / format.getFrameRate() * 1000000.0d);
H A DSoftMixingClip.java358 "Buffer size does not represent an integral number of sample frames!");
386 public void setFramePosition(int frames) { argument
389 frameposition = frames;
H A DDirectAudioDevice.java497 // align buffer to full frames
732 +"non-integral number of frames ("
962 +"non-integral number of frames ("
1192 public void setFramePosition(int frames) { argument
1193 if (Printer.trace) Printer.trace("> DirectClip: setFramePosition: " + frames);
1195 if (frames < 0) {
1196 frames = 0;
1198 else if (frames >= getFrameLength()) {
1199 frames = getFrameLength();
1202 newFramePosition = frames;
[all...]
/openjdk7/jdk/src/share/back/
H A DThreadReferenceImpl.c214 frames(PacketInputStream *in, PacketOutputStream *out) function
673 (void *)frames,
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DThreadReferenceImpl.java49 private ArrayList frames; // StackFrames field in class:ThreadReferenceImpl
179 return frames.size();
182 public List frames() throws IncompatibleThreadStateException { method in class:ThreadReferenceImpl
191 public List frames(int start, int length) method in class:ThreadReferenceImpl
201 * Private version of frames() allows "-1" to specify all
202 * remaining frames.
211 if (frames == null) {
212 frames = new ArrayList(10);
217 frames.add(myFrame);
223 if (frames
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DThreadReferenceImpl.java68 List<StackFrame> frames = null; field in class:ThreadReferenceImpl.LocalCache
93 * frameCount() is called and comes up with 5 frames. But before
97 * could be suspended again and have a different number of frames, eg, 24,
309 return false; // no frames on stack => not at breakpoint
350 public List<StackFrame> frames() throws IncompatibleThreadStateException { method in class:ThreadReferenceImpl
374 snapshot.frames.size())) {
382 public List<StackFrame> frames(int start, int length) method in class:ThreadReferenceImpl
392 * Private version of frames() allows "-1" to specify all
393 * remaining frames.
398 // Lock must be held while creating stack frames s
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Dforte.cpp102 // handle frames with inlining
160 // vframeStream would explode if we try and walk the frames.
273 // it see if we can find such a frame because only frames with codeBlobs
274 // are possible Java frames.
301 // previous anchor, there are no java frames associated with a method
376 jint num_frames; // number of frames in this trace
377 ASGCT_CallFrame *frames; // frames member in struct:__anon364
392 assert(trace->frames != NULL, "trace->frames mus
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DvframeArray.hpp159 bool is_within_bounds(int index) const { return 0 <= index && index < frames(); }
162 int frames() const { return _frames; } function in class:vframeArray
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_impl.h66 SplashImage *frames; /* dynamically allocated array of frame descriptors */ member in struct:Splash
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_trace.c44 * A trace is an optional thread serial number plus N frames.
50 * This is a variable length Key, depending on the number of frames.
51 * The frames are FrameIndex values into the frame table.
68 short n_frames; /* Number of frames that follow. */
70 FrameIndex frames[1]; /* Variable length */ member in struct:TraceKey
115 FrameIndex *frames, jvmtiPhase phase, TraceKey *trace_key_buffer)
124 HPROF_ASSERT(frames!=NULL);
136 (void)memcpy(pkey->frames, frames, (n_frames*(int)sizeof(FrameIndex)));
162 debug_message( "Trace 0x%08x: SN=%u, threadSN=%u, n_frames=%d, frames
114 find_or_create(SerialNumber thread_serial_num, jint n_frames, FrameIndex *frames, jvmtiPhase phase, TraceKey *trace_key_buffer) argument
451 trace_find_or_create(SerialNumber thread_serial_num, jint n_frames, FrameIndex *frames, jvmtiFrameInfo *jframes_buffer) argument
[all...]
/openjdk7/jdk/src/share/demo/jvmti/heapTracker/
H A DheapTracker.c117 /* Number of frames (includes HEAP_TRACKER methods) */
120 jvmtiFrameInfo frames[MAX_FRAMES+2]; member in struct:Trace
239 (jlong)(ptrdiff_t)(void*)(trace->frames[i].method);
241 (jlong)(trace->frames[i].location);
313 trace.frames, &(trace.nframes));
601 frameToString(jvmti, buf, (int)sizeof(buf), tinfo->trace.frames+i);

Completed in 72 milliseconds