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

/ast/src/lib/libtk/generic/
H A DtkGeometry.c20 * For each slave managed by Tk_MaintainGeometry, there is one of these
25 Tk_Window slave; /* The slave window being positioned. */ member in struct:MaintainSlave
26 Tk_Window master; /* The master that determines slave's
28 * slave's parent. */
29 int x, y; /* Desired position of slave relative to
31 int width, height; /* Desired dimensions of slave. */
84 * of a given slave window.
234 * geometry for the slave into the coordinate system of the parent
235 * and respositions the slave i
[all...]
H A DtkPack.c259 Tk_Window slave;
264 slave = Tk_NameToWindow(interp, argv[i], tkwin);
265 if (slave == NULL) {
268 slavePtr = GetPacker(slave);
270 Tk_ManageGeometry(slave, (Tk_GeomMgr *) NULL,
282 Tk_Window slave;
291 slave = Tk_NameToWindow(interp, argv[2], tkwin);
292 if (slave == NULL) {
295 slavePtr = GetPacker(slave);
466 * claims control over a slave tha
258 Tk_Window slave; local
281 Tk_Window slave; local
1420 Tk_Window other, slave, parent, ancestor; local
[all...]
H A DtkGrid.c77 * largest slave in the slot. */
95 struct Gridder *binNextPtr; /* The next slave window in this bin.
123 int columnEnd; /* The last column occupied by any slave. */
127 int rowEnd; /* The last row occupied by any slave. */
161 int numCols, numRows; /* Number of columns or rows this slave spans.
189 struct Gridder *binNextPtr; /* Link to next span>1 slave in this bin. */
191 * of the slave. This includes the padding. */
419 Tk_Window slave;
424 slave = Tk_NameToWindow(interp, argv[i], tkwin);
425 if (slave
418 Tk_Window slave; local
452 Tk_Window slave; local
2095 Tk_Window other, slave, parent, ancestor; local
[all...]
/ast/src/cmd/builtin/
H A Dpty.c174 char *slave=0; local
181 slave = ptsname(*master);
192 slave = ptsname(fdm);
194 slave = slavename(name);
201 return(slave);
207 mkpty(int* master, int* slave) argument
242 if (openpty(master, slave, NULL, ttyp, winp) < 0)
254 if (grantpt(*master) || unlockpt(*master) || !(sname = ptsname(*master)) || (*slave = open(sname, O_RDWR|O_cloexec)) < 0)
260 if (!(sname = ptymopen(master)) || (*slave = open(sname, O_RDWR|O_cloexec)) < 0)
264 if (tcgetattr(*slave,
287 runcmd(char** argv, int slave, int session) argument
954 int slave; local
[all...]

Completed in 13 milliseconds