Searched refs:frames (Results 1 - 25 of 27) sorted by relevance

12

/illumos-gate/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...]
H A DProbeData.java258 StackFrame[] frames = KernelStackRecord.parse(framesString);
260 KernelStackRecord.class.cast(stack).setStackFrames(frames);
262 UserStackRecord.class.cast(stack).setStackFrames(frames);
/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudioGain.cc246 size_t frames; local
250 frames = (size_t)inhdr.Time_to_Samples(inbuf->GetLength());
261 for (i = 0; i < frames; i++, inptr += inhdr.channels) {
298 size_t frames; local
302 frames = (size_t)inhdr.Time_to_Samples(inbuf->GetLength());
308 for (i = 0; i < frames; i++, inptr += inhdr.channels) {
312 sum /= (double)frames;
346 size_t frames; local
351 frames = (size_t)inhdr.Time_to_Samples(inbuf->GetLength());
352 sz = (Double) frames;
[all...]
H A DAudioTypePcm.cc217 size_t frames; local
258 frames = (size_t)inhdr.Time_to_Samples(length)
262 #define COPY(N) if (inptr != outptr) memcpy(outptr, inptr, frames * N)
270 while (frames-- > 0) F ## 2 ## T(ip, op); \
275 while (frames-- > 0) F /* */ 2 /* */ T(ip, op);\
/illumos-gate/usr/src/stand/lib/inet/
H A Dibd.c286 * Returns the total number of MEDIA_LVL frames placed on the socket.
294 int frames = 0; /* successful frames */ local
319 if (frames > IBD_MAX_FRAMES) {
370 if (frames != 0)
391 return (frames == 0 ? -1 : frames);
400 return (frames == 0 ? -1 : frames);
407 frames
[all...]
H A Dudp.c93 * 3) Return the number of TRANSPORT frames for success, -1 if a
102 int frames = 0, header_len; local
152 frames++;
156 return (frames);
H A Dethernet.c287 * Returns the total number of MEDIA_LVL frames placed on the socket.
295 int frames = 0; /* successful frames */ local
320 if (frames > ETHER_MAX_FRAMES) {
370 if (frames != 0)
392 return (frames == 0 ? -1 : frames);
401 return (frames == 0 ? -1 : frames);
408 frames
[all...]
/illumos-gate/usr/src/uts/common/xen/os/
H A Dgnttab.c132 return (4); /* Legacy max supported number of frames */
513 gnttab_frame_t *frames; local
515 frames = kmem_alloc(pset->nr_frames * sizeof (gnttab_frame_t),
519 set_xen_guest_handle(pset->frame_list, frames);
532 return (frames);
576 gnttab_frame_t *frames; local
591 frames = gnttab_setup(&set);
602 xen_assign_pfn(frames[i]),
617 kmem_free(frames, set.nr_frames * sizeof (gnttab_frame_t));
634 gnttab_frame_t *frames; local
[all...]
/illumos-gate/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)
/illumos-gate/usr/src/lib/libumem/common/
H A Dumem_impl.h121 #define UMEM_BUFCTL_AUDIT_SIZE_DEPTH(frames) \
122 ((size_t)(&((umem_bufctl_audit_t *)0)->bc_stack[frames]))
129 * For ILP32, this is about 1000 frames.
130 * For LP64, this is about 490 frames.
/illumos-gate/usr/src/tools/scripts/
H A Dwdiff.pl180 otherf = window.parent.frames[0];
182 otherf = window.parent.frames[1];
H A Dwebrev.sh666 # framed_sdiff() is then called which creates $2.frames.html
924 # $WDIR/DIR/$TNAME.frames.html
961 print "$FRAMEHTML<head>$STDHEAD" > $WDIR/$DIR/$TNAME.frames.html
963 "$TPATH/$TNAME</title> </head>" >> $WDIR/$DIR/$TNAME.frames.html
964 cat >> $WDIR/$DIR/$TNAME.frames.html <<-EOF
974 Alas 'frames' webrev requires that your browser supports frames
1049 # anchors. These are used to drive the frames version of the
3213 print " frames\c"
3269 print " man-frames\
[all...]
/illumos-gate/usr/src/uts/common/io/usb/clients/audio/usb_ac/
H A Dusb_ac.c5348 unsigned frames; local
5363 for (i = 0; i < reqframes; i += frames) {
5366 frames = reqframes - i;
5367 if (frames > engp->fragfr)
5368 frames = engp->fragfr;
5370 sz = (frames << engp->frsmshift) << engp->smszshift;
5374 engp->frames += frames;
5397 unsigned frames; local
5413 for (i = 0; i < reqframes; i += frames) {
[all...]
/illumos-gate/usr/src/uts/common/sys/usb/clients/audio/usb_ac/
H A Dusb_ac.h145 unsigned fragfr; /* number of frames per fragment */
146 unsigned frsmshift; /* right shift: frames in sample cnt */
156 uint64_t frames; member in struct:usb_audio_eng
/illumos-gate/usr/src/uts/common/sys/usb/clients/video/usbvc/
H A Dusbvc_var.h94 usbvc_frames_t *frames; member in struct:usbvc_format_group
/illumos-gate/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);
1617 jobjectArray frames)
1623 frames);
1626 frames);
1616 dtj_attach_frames(dtj_java_consumer_t *jc, jobject stack, jobjectArray frames) argument
/illumos-gate/usr/src/uts/common/io/usb/clients/video/usbvc/
H A Dusbvc.c1908 if (fmtgrp->frames) {
1909 kmem_free(fmtgrp->frames,
2483 fmtgrp->frames = NULL;
2489 fmtgrp->frames = (usbvc_frames_t *)
2506 "usbvc_parse_frames: less frames than "
2519 frm = &fmtgrp->frames[i];
2550 "usbvc_parse_frames: %d frames are actually parsed",
3814 ctrl.bFrameIndex = curr_fmtgrp->frames[0].descr->bFrameIndex;
3817 bcopy(&(curr_fmtgrp->frames[0].descr->dwDefaultFrameInterval[0]),
3859 strm_if->cur_format_group->frames[
[all...]
H A Dusbvc_v4l2.c766 descr = fmtgrp->frames[i].descr;
777 frame = &fmtgrp->frames[i];
988 /* bFrameIndex is based on 1, and frames[i] is based on 0, so minus 1 */
992 &strm_if->cur_format_group->frames[i];
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java413 StackFrame[] frames = new StackFrame[] {
418 UserStackRecord r = new UserStackRecord(123456, frames,
/illumos-gate/usr/src/uts/common/io/cxgbe/common/
H A Dcommon.h64 u64 tx_octets; /* total # of octets in good frames */
65 u64 tx_frames; /* all good frames */
66 u64 tx_bcast_frames; /* all broadcast frames */
67 u64 tx_mcast_frames; /* all multicast frames */
68 u64 tx_ucast_frames; /* all unicast frames */
69 u64 tx_error_frames; /* all error frames */
71 u64 tx_frames_64; /* # of Tx frames in a particular range */
79 u64 tx_drop; /* # of dropped Tx frames */
80 u64 tx_pause; /* # of transmitted pause frames */
81 u64 tx_ppp0; /* # of transmitted PPP prio 0 frames */
132 u64 frames; member in struct:lb_port_stats
166 u32 frames; member in struct:tp_usm_stats
[all...]
/illumos-gate/usr/src/uts/sparc/dtrace/
H A Ddtrace_asm.s214 ! CWP minus the number of frames is negative; we must perform the
291 ! CWP minus the number of frames is negative; we must perform the
/illumos-gate/usr/src/cmd/lockstat/
H A Dlockstat.c873 int frames, i; local
876 frames = rec->dtrd_size / sizeof (pc_t);
880 for (i = 1; i < frames; i++)
1772 * If we went a few frames below the caller, ignore them
1843 * If we went a few frames below the caller, ignore them
/illumos-gate/usr/src/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java435 StackFrame[] frames = rec.getStackFrames();
439 for (StackFrame f : frames) {
/illumos-gate/usr/src/uts/common/io/scsi/adapters/mpt_sas/
H A Dmptsas.c470 * data I/O DMA. All message frames must be stored in the first 4G of
2330 * create kmem cache for extra SGL frames if SGL cannot
2340 mptsas_log(mpt, CE_WARN, "creating cache for frames failed");
2896 mptsas_cache_frames_t *frames = NULL; local
2898 frames = kmem_cache_alloc(mpt->m_cache_frames, KM_NOSLEEP);
2899 if (frames == NULL) {
2902 cmd->cmd_extra_frames = frames;
4334 * Hereby we start to deal with multiple frames.
4336 * 1. Determine how many frames are needed for SGL element
4337 * storage; Note that all frames ar
4363 int i, j, k, l, frames, sgemax; local
4700 int i, j, k, l, frames, sgemax; local
[all...]

Completed in 350 milliseconds

12