Searched defs:frame (Results 1 - 12 of 12) sorted by relevance

/osnet-11/usr/src/lib/libplot/vt0/common/
H A Dframe.c38 frame(int n) function
/osnet-11/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DStackFrame.java34 * A single stack frame in a {@link StackValueRecord}.
48 new String[] {"frame"})
73 private final String frame; field in class:StackFrame
76 * Creates a single stack frame. Supports XML persistence.
78 * @param f human-readable string representation of this stack frame
85 frame = f;
92 if (frame == null) {
93 throw new NullPointerException("frame is null");
99 * frame. Supports XML persistence.
101 * @return the human-readable string representation of this stack frame
[all...]
/osnet-11/usr/src/lib/libc/sparc/threads/
H A Dmachdep.c41 char frame[SA(MINFRAME)]; local
45 * there must be a minimum frame for the register window.
56 (void) memset(frame, 0, sizeof (frame));
57 if (uucopy(frame, (void *)stack, sizeof (frame)) == 0)
72 * Clear the top stack frame.
/osnet-11/usr/src/lib/libc/amd64/threads/
H A Dmachdep.c44 } frame; local
48 * there must be a minimum frame.
59 frame.pc = 0;
60 frame.fp = 0;
61 frame.rpc = (uint64_t)_lwp_start;
62 if (uucopy(&frame, stack, sizeof (frame)) == 0)
84 * Setup the top stack frame.
/osnet-11/usr/src/lib/libproc/amd64/
H A DPisadep.c27 #include <sys/frame.h>
244 } frame; local
257 * signal frame. Refer to the comments in Pstack.c for more info
282 (sz = Pread(P, &frame, sizeof (frame), (uintptr_t)fp)
286 * A return PC of -1 on x86 denotes a signal frame. We
290 if (frame.pc == -1 &&
309 argc = argcount(P, (long)frame.pc, sz);
312 (void) memset(&frame, 0, sizeof (frame));
377 } frame; local
[all...]
/osnet-11/usr/src/lib/libproc/i386/
H A DPisadep.c27 #include <sys/frame.h>
183 } frame; local
195 * signal frame. Refer to the comments in Pstack.c for more info
220 (sz = Pread(P, &frame, sizeof (frame), (uintptr_t)fp)
224 * A return PC of -1 on x86 denotes a signal frame. We
228 if (frame.pc == -1 &&
234 (uintptr_t)(fp + sizeof (struct frame)))
248 argc = argcount(P, (long)frame.pc, sz);
251 (void) memset(&frame,
[all...]
/osnet-11/usr/src/lib/libc/i386/threads/
H A Dmachdep.c57 } frame; local
61 * there must be a minimum frame. Note: 'frame' is not a true
62 * stack frame (see <sys/frame.h>) but a construction made here to
64 * with a 16-byte aligned stack pointer (the address of frame.arg
75 stack -= 5; /* make the address of frame.arg be 16-byte aligned */
76 frame.pc = 0;
77 frame.fp = 0; /* initial address for %ebp (see EBP below) */
78 frame
[all...]
/osnet-11/usr/src/lib/libdns_sd/java/com/apple/dnssd/docs/examples/src/
H A DBrowserApp.java63 JFrame frame; field in class:BrowserApp
72 frame = new JFrame("DNS-SD Service Browser");
73 frame.addWindowListener(new WindowAdapter() {
89 this.setupSubPanes( frame.getContentPane());
90 frame.pack();
91 frame.setVisible(true);
/osnet-11/usr/src/lib/libast/common/misc/
H A Dstk.c27 * The beginning of each frame is initialized with a frame structure
28 * that contains a pointer to the previous frame and a pointer to the
29 * end of the current frame.
46 * The first frame has structure
51 * struct frame
68 struct frame struct
70 char *prev; /* address of previous frame */
71 char *end; /* address of end this frame */
81 char *stkbase; /* beginning of current stack frame */
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/gfxmenu/
H A Dgui_list.c188 grub_gfxmenu_box_t frame = self->scrollbar_frame; local
190 int frame_vertical_pad = (frame->get_top_pad (frame)
191 + frame->get_bottom_pad (frame));
192 int frame_horizontal_pad = (frame->get_left_pad (frame)
193 + frame->get_right_pad (frame));
194 int tracktop = topy + frame
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Dpubkey.c1378 unsigned char *frame = NULL; local
1388 /* Can't encode a VALUELEN value in a NFRAME bytes frame. */
1391 else if ( !(frame = gcry_malloc_secure (nframe)))
1396 frame[n++] = 0;
1397 frame[n++] = 2; /* block type */
1427 memcpy (frame+n, p, i);
1431 frame[n++] = 0;
1432 memcpy (frame+n, value, valuelen);
1437 gcry_mpi_scan (ret_mpi, GCRYMPI_FMT_USG, frame, n, &nframe);
1440 gcry_free(frame);
1468 byte *frame = NULL; local
[all...]
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A Dtg3.c1892 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
1893 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
1922 /* Disable the mini frame rx ring */
1925 /* Disable the jumbo frame rx ring */
2969 POLL - Wait for a frame
3035 TRANSMIT - Transmit a frame
3063 } frame[2]; local
3072 /* Wait until there is a free packet frame */
3092 memcpy(&frame[frame_idx].dst_addr, dst_addr, ETH_ALEN);
3093 memcpy(&frame[frame_id
[all...]

Completed in 68 milliseconds