Home
last modified time | relevance | path

Searched refs:frame (Results 1 – 25 of 179) sorted by relevance

12345678

/titanic_51/usr/src/cmd/lp/filter/postscript/dpost/
H A Dpictures.c100 double frame[4]; /* height, width, y, and x offsets from hwo[] */ in picture() local
101 char units; /* scale indicator for frame dimensions */ in picture()
132 * and offset refer to the picture frame in inches, unless they're followed by in picture()
134 * over the placement of the picture in the frame. Rotation of the picture, in in picture()
162 frame[0] = frame[1] = -1; /* default frame height, width */ in picture()
163 frame[2] = frame[3] = 0; /* and y and x offsets */ in picture()
166 if ( sscanf(++p, "%lf%c", &frame[ in picture()
[all...]
/titanic_51/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DpmAccess.java50 pmFrame frame = new pmFrame( field in pmAccess
76 frame.setClearButtonsOnClose(true); in pmAccess()
90 * frame.getRootPane().setDefaultButton(okButton); in pmAccess()
105 frame.setDefaultComponent(pnameText); in pmAccess()
109 Component glass = frame.getGlassPane(); in pmAccess()
264 pmUtility.doLogin(mytop, frame); in createAccess()
295 frame.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); in createAccess()
306 frame.setCursor(Cursor.getDefaultCursor()); in createAccess()
345 pmOKCancelDialog d = new pmOKCancelDialog(frame, in confirmAction()
351 pmMessageDialog m = new pmMessageDialog(frame, in confirmAction()
[all...]
H A DpmLoad.java50 pmFrame frame = new pmFrame( field in pmLoad
213 frame.dispose(); in pmScreendispose()
224 frame.setVisible(false); in actionokButton()
225 frame.repaint(); in actionokButton()
226 frame.dispose(); in actionokButton()
232 frame.repaint(); in actionresetButton()
238 frame.setVisible(false); in actioncancelButton()
239 frame.repaint(); in actioncancelButton()
240 frame.dispose(); in actioncancelButton()
251 frame in Show()
[all...]
H A DhelpTest.java52 JFrame frame = new JFrame("Help Test Tool"); in main() local
53 frame.addWindowListener(new WindowAdapter() { in main()
125 frame.getContentPane().add("Center", p); in main()
128 frame.getContentPane().add("South", bp); in main()
165 frame.pack(); in main()
166 frame.setVisible(true); in main()
167 frame.repaint(); in main()
H A DpmInstallPrinter.java55 pmFrame frame; field in pmInstallPrinter
113 frame = new pmFrame( in pmInstallPrinter()
127 frame = new pmFrame( in pmInstallPrinter()
139 frame = new pmFrame( in pmInstallPrinter()
164 frame, in pmInstallPrinter()
176 frame, in pmInstallPrinter()
207 frame = new pmFrame( in pmInstallPrinter()
243 frame = new pmFrame( in pmInstallPrinter()
275 frame.setClearButtonsOnClose(true); in pmInstallPrinter()
288 // frame in pmInstallPrinter()
[all...]
/titanic_51/usr/src/cmd/mdb/common/mdb/
H A Dmdb_frame.c29 * Utility routines to manage debugger frames and commands. A debugger frame
32 * Each frame has a list of commands (that is, a dcmd, argument list, and
122 mdb_dprintf(MDB_DBG_DSTK, "push frame <%u> mark=%p in=%s out=%s\n", in mdb_frame_push()
140 mdb_dprintf(MDB_DBG_DSTK, "pop frame <%u> status=%s\n", in mdb_frame_pop()
162 mdb_frame_switch(mdb_frame_t *frame) in mdb_frame_switch() argument
166 mdb.m_frame = frame; in mdb_frame_switch()
168 mdb_dprintf(MDB_DBG_DSTK, "switch to frame <%u>\n", mdb.m_frame->f_id); in mdb_frame_switch()
170 mdb_nv_set_value(mdb.m_dot, frame->f_dot); in mdb_frame_switch()
174 mdb_frame_set_pipe(mdb_frame_t *frame) in mdb_frame_set_pipe() argument
176 frame in mdb_frame_set_pipe()
180 mdb_frame_clear_pipe(mdb_frame_t * frame) mdb_frame_clear_pipe() argument
188 mdb_frame_t *frame = mdb_list_prev(mdb.m_frame); mdb_frame_pipe() local
[all...]
/titanic_51/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 StackFrame
76 * Creates a single stack frame. Supports XML persistence.
78 * @param f human-readable string representation of this stack frame
85 frame = f; in StackFrame()
92 if (frame == null) { in validate()
93 throw new NullPointerException("frame is null"); in validate()
99 * frame. Supports XML persistence.
101 * @return the human-readable string representation of this stack frame
[all...]
/titanic_51/usr/src/uts/sparc/os/
H A Darchdep.c36 #include <sys/frame.h>
80 struct frame *fp, *minfp, *stacktop; in getpcstack()
89 stacktop = (struct frame *)(CPU->cpu_intr_stack + SA(MINFRAME)); in getpcstack()
91 stacktop = (struct frame *)curthread->t_stk; in getpcstack()
93 minfp = (struct frame *)((uintptr_t)getfp() + STACK_BIAS); in getpcstack()
106 * frame. in getpcstack()
114 fp = (struct frame *)(nextfp + STACK_BIAS); in getpcstack()
122 stacktop = (struct frame *)curthread->t_stk; in getpcstack()
123 minfp = (struct frame *)curthread->t_stkbase; in getpcstack()
134 fp = (struct frame *)((uintptr_ in getpcstack()
[all...]
/titanic_51/usr/src/lib/libast/common/misc/
H A Dstk.c68 struct frame struct
154 register struct frame *fp; in stkexcept()
164 fp = (struct frame*)cp; in stkexcept()
218 register struct frame *fp; in stkopen()
232 bsize = init+sizeof(struct frame); in stkopen()
239 bsize -= sizeof(struct frame); in stkopen()
240 if(!(fp=newof((char*)0,struct frame, 1,bsize))) in stkopen()
326 register struct frame *fp; in stkon()
327 for(fp=(struct frame*)sp->stkbase; fp; fp=(struct frame*)fp->prev) in stkon()
342 register struct frame *fp; in stkset()
[all …]
/titanic_51/usr/src/cmd/dtrace/test/tst/common/ustack/
H A Dtst.bigstack.c36 grow(int frame) in grow() argument
42 if (frame >= 2048) in grow()
46 grow1(++frame); in grow()
50 grow1(int frame) in grow1() argument
52 grow(++frame); in grow1()
/titanic_51/usr/src/uts/sparc/dtrace/
H A Ddtrace_isa.c33 #include <sys/frame.h>
92 * stack. An artificial frame is one induced by the provider; all
105 struct frame *fp, *nextfp, *minfp, *stacktop; in dtrace_getpcstack()
110 fp = (struct frame *)((caddr_t)dtrace_getfp() + STACK_BIAS); in dtrace_getpcstack()
118 * %o7 is valid in its frame (and we can just drive on). If in dtrace_getpcstack()
120 * bottom frame. To trim this frame, we simply increment in dtrace_getpcstack()
282 stacktop = (struct frame *)(CPU->cpu_intr_stack + SA(MINFRAME)); in dtrace_getpcstack()
284 stacktop = (struct frame *)curthread->t_stk; in dtrace_getpcstack()
288 nextfp = (struct frame *)((caddr_ in dtrace_getpcstack()
[all...]
/titanic_51/usr/src/uts/common/io/usb/hcd/
H A DREADME52 1 ms 1 frame
56 1 ms 1500 bytes or 12000 bits (per frame)
84 Maximum bandwidth available 1500 bytes/frame
85 Maximum Non Periodic bandwidth 197 bytes/frame
86 Maximum Periodic bandwidth 1293 bytes/frame
139 transaction per frame. According to the USB Bandwidth Analysis white
142 which comes to around 13% of USB frame time.
169 frame. The lower five bits of the current frame number us used as an
171 frame list
[all...]
/titanic_51/usr/src/contrib/ast/src/lib/libast/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 */ argument
71 char *end; /* address of end this frame */ argument
81 char *stkbase; /* beginning of current stack frame */ argument
[all...]
/titanic_51/usr/src/uts/intel/dtrace/
H A Ddtrace_isa.c33 #include <sys/frame.h>
46 struct frame *fp = (struct frame *)dtrace_getfp(); in dtrace_getpcstack()
47 struct frame *nextfp, *minfp, *stacktop; in dtrace_getpcstack()
54 stacktop = (struct frame *)(CPU->cpu_intr_stack + SA(MINFRAME)); in dtrace_getpcstack()
56 stacktop = (struct frame *)curthread->t_stk; in dtrace_getpcstack()
65 nextfp = (struct frame *)fp->fr_savfp; in dtrace_getpcstack()
73 stacktop = (struct frame *)curthread->t_stk; in dtrace_getpcstack()
74 minfp = (struct frame *)curthread->t_stkbase; in dtrace_getpcstack()
80 * This is the last frame w in dtrace_getpcstack()
[all...]
/titanic_51/usr/src/lib/libc/port/gen/
H A Dwalkstack.c29 * stack frame. Special handling is provided to indicate
34 * A signal handler frame is essentially a set of data pushed on to the user
42 * counter and frame pointer as a separate frame.
44 * The stack layout for a signal handler frame is as follows:
58 * | struct frame | v | struct frame | v
71 * | struct frame | v
74 * The bottom-most struct frame is actually constructed by the kernel by
75 * copying the previous stack frame, allowin
[all...]
/titanic_51/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Ddemand.c52 static char *frame; variable
84 frame = malloc(framemax); in demand_conf()
85 if (frame == NULL) in demand_conf()
86 novm("demand frame"); in demand_conf()
215 * Calls loop_frame when a complete frame has been accumulated.
232 if (loop_frame((unsigned char *)frame, framelen))
254 frame[framelen++] = c;
261 * loop_frame - given a frame obtained from the loopback,
263 * to transmit this frame later, put it on the pending queue.
271 loop_frame(frame, le argument
[all...]
/titanic_51/usr/src/lib/libproc/i386/
H A DPisadep.c28 #include <sys/frame.h>
184 } frame; in Pstack_iter() local
194 * signal frame. Refer to the comments in Pstack.c for more info in Pstack_iter()
219 (sz = Pread(P, &frame, sizeof (frame), (uintptr_t)fp) in Pstack_iter()
223 * the return pc of the signal frame to 0xffffffff on in Pstack_iter()
226 if (frame.pc != -1L) { in Pstack_iter()
228 argc = argcount(P, (long)frame.pc, sz); in Pstack_iter()
232 (void) memset(&frame, 0, sizeof (frame)); in Pstack_iter()
[all...]
/titanic_51/usr/src/cmd/rm/
H A Drm.c268 * Since we never pop the top frame, cur->up can never be NULL.
269 * If we pop beyond a frame we closed, we try to reopen "..".
308 * The stack frame of this function is minimized so that we can
316 struct dlist frame; in rm() local
373 frame.dev = temp.st_dev; in rm()
374 frame.ino = temp.st_ino; in rm()
375 frame.flags = 0; in rm()
392 if (opendirat(caller->fd, entry, &frame) == -1) { in rm()
446 if (fstat(frame.fd, &temp) != 0 || in rm()
447 frame in rm()
[all...]
/titanic_51/usr/src/lib/libumem/common/
H A Dgetpcstack.c31 #include <sys/frame.h>
42 * dereference the entire frame structure.
44 #define UMEM_FRAMESIZE (sizeof (struct frame))
58 struct frame *fp; in getpcstack()
59 struct frame *nextfp, *minfp; in getpcstack()
91 * Since we only allow increasing frame pointers, and we in getpcstack()
127 fp = (struct frame *)((caddr_t)getfp() + STACK_BIAS); in getpcstack()
132 return (0); /* the frame pointer isn't in our stack */ in getpcstack()
138 nextfp = (struct frame *)((caddr_t)fp->fr_savfp + STACK_BIAS); in getpcstack()
158 * punt, since we don't know where the frame pointe in getpcstack()
[all...]
/titanic_51/usr/src/lib/libc/sparc/gen/
H A Dmakectxt.c40 #include <sys/frame.h>
69 * Reserve enough space for a frame and the arguments beyond the in makecontext()
72 size = sizeof (struct frame); in makecontext()
86 * ucontext_t. Zero the other fields of the frame. in makecontext()
89 tsp = &((struct frame *)sp)->fr_argd[0]; in makecontext()
90 bzero(sp, sizeof (struct frame)); in makecontext()
122 * Reserve enough space for a frame and the arguments beyond the in __makecontext_v2()
125 size = sizeof (struct frame); in __makecontext_v2()
133 * ucontext_t. Zero the other fields of the frame. in __makecontext_v2()
136 tsp = &((struct frame *)s in __makecontext_v2()
[all...]
/titanic_51/usr/src/lib/libc/sparcv9/gen/
H A Dmakectxt.c40 #include <sys/frame.h>
69 * Reserve enough space for a frame and the arguments beyond the in makecontext()
72 size = sizeof (struct frame); in makecontext()
86 * ucontext_t. Zero the other fields of the frame. in makecontext()
89 tsp = &((struct frame *)sp)->fr_argd[0]; in makecontext()
90 bzero(sp, sizeof (struct frame)); in makecontext()
122 * Reserve enough space for a frame and the arguments beyond the in __makecontext_v2()
125 size = sizeof (struct frame); in __makecontext_v2()
133 * ucontext_t. Zero the other fields of the frame. in __makecontext_v2()
136 tsp = &((struct frame *)s in __makecontext_v2()
[all...]
/titanic_51/usr/src/lib/libproc/amd64/
H A DPisadep.c28 #include <sys/frame.h>
246 } frame; in Pstack_iter32() local
257 * signal frame. Refer to the comments in Pstack.c for more info in Pstack_iter32()
282 (sz = Pread(P, &frame, sizeof (frame), (uintptr_t)fp) in Pstack_iter32()
286 * the return pc of the signal frame to 0xffffffff on in Pstack_iter32()
289 if (frame.pc != -1L) { in Pstack_iter32()
291 argc = argcount(P, (uint32_t)frame.pc, sz); in Pstack_iter32()
295 (void) memset(&frame, 0, sizeof (frame)); in Pstack_iter32()
473 } frame; Pstack_iter() local
[all...]
/titanic_51/usr/src/uts/common/io/nxge/npi/
H A Dnpi_mac.c3102 mif_frame_t frame; in npi_mac_mif_mdio_read() local
3105 frame.value = 0; in npi_mac_mif_mdio_read()
3106 frame.bits.w0.st = FRAME45_ST; /* Clause 45 */ in npi_mac_mif_mdio_read()
3107 frame.bits.w0.op = FRAME45_OP_ADDR; /* Select address */ in npi_mac_mif_mdio_read()
3108 frame.bits.w0.phyad = portn; /* Port number */ in npi_mac_mif_mdio_read()
3109 frame.bits.w0.regad = device; /* Device number */ in npi_mac_mif_mdio_read()
3110 frame.bits.w0.ta_msb = 1; in npi_mac_mif_mdio_read()
3111 frame.bits.w0.ta_lsb = 0; in npi_mac_mif_mdio_read()
3112 frame.bits.w0.data = xcvr_reg; /* register address */ in npi_mac_mif_mdio_read()
3115 "mdio read port %d addr val=0x%x\n", portn, frame in npi_mac_mif_mdio_read()
3164 mif_frame_t frame; npi_mac_mif_mii_read() local
3193 mif_frame_t frame; npi_mac_mif_mdio_write() local
3251 mif_frame_t frame; npi_mac_mif_mii_write() local
3443 mif_frame_t frame; npi_mac_mif_mdio_link_intr_enable() local
[all...]
/titanic_51/usr/src/uts/common/xen/os/
H A Dgnttab.c255 gnttab_grant_foreign_access(domid_t domid, gnttab_frame_t frame, int readonly) in gnttab_grant_foreign_access() argument
264 shared[ref].frame = frame; in gnttab_grant_foreign_access()
274 gnttab_frame_t frame, int readonly) in gnttab_grant_foreign_access_ref() argument
278 shared[ref].frame = frame; in gnttab_grant_foreign_access_ref()
360 shared[ref].frame = pfn; in gnttab_grant_foreign_transfer_ref()
369 gnttab_frame_t frame; in gnttab_end_foreign_transfer_ref() local
390 /* Read the frame number /after/ reading completion status. */ in gnttab_end_foreign_transfer_ref()
392 frame in gnttab_end_foreign_transfer_ref()
401 gnttab_frame_t frame; gnttab_end_foreign_transfer() local
[all...]
/titanic_51/usr/src/cmd/mdb/common/modules/genunix/
H A Dfindstack_subr.c60 * "frame" is a VA in MDB's address space.
66 crawl(uintptr_t frame, uintptr_t kbase, uintptr_t ktop, uintptr_t ubase, in crawl() argument
74 fs_dprintf(("<0> frame = %p, kbase = %p, ktop = %p, ubase = %p\n", in crawl()
75 frame, kbase, ktop, ubase)); in crawl()
78 long *fpp = (long *)&((struct rwindow *)frame)->rw_fp; in crawl()
80 fs_dprintf(("<1> fpp = %p, frame = %p\n", fpp, frame)); in crawl()
82 if ((frame & (STACK_ALIGN - 1)) != 0) in crawl()
85 fp = ((struct rwindow *)frame)->rw_fp + STACK_BIAS; in crawl()
88 ((struct rwindow *)frame) in crawl()
[all...]

12345678