Symbol: INIT
bin/sh/exec.c
923
INIT {
bin/sh/input.c
119
INIT {
bin/sh/var.c
249
INIT {
games/warp/EXTERN.h
17
#ifdef INIT
games/warp/INTERN.h
17
#ifdef INIT
games/warp/intrp.h
12
EXT char *origdir INIT(NULL); /* cwd when warp invoked */
games/warp/intrp.h
13
EXT char *homedir INIT(NULL); /* login directory */
games/warp/intrp.h
14
EXT char *dotdir INIT(NULL); /* where . files go */
games/warp/intrp.h
15
EXT char *logname INIT(NULL); /* login id */
games/warp/intrp.h
17
EXT char *realname INIT(NULL); /* real name from /etc/passwd */
games/warp/play.h
9
EXT int finish INIT(0);
games/warp/score.h
22
EXT long lastscore INIT(0);
games/warp/score.h
42
EXT char c INIT(' ');
games/warp/term.c
58
KEYMAP *topmap INIT(NULL);
games/warp/term.h
102
EXT int nextin INIT(0);
games/warp/term.h
103
EXT int nextout INIT(0);
games/warp/term.h
106
EXT long iocount INIT(0);
games/warp/term.h
125
EXT int devtty INIT(0);
games/warp/term.h
151
EXT long iocount INIT(0);
games/warp/term.h
164
EXT int devtty INIT(0);
games/warp/term.h
165
EXT bool is_input INIT(false);
games/warp/term.h
166
EXT char pending_ch INIT(0);
games/warp/term.h
195
EXT int _res_flg INIT(0);
games/warp/term.h
198
EXT int _tty_ch INIT(2);
games/warp/term.h
199
EXT bool bizarre INIT(false); /* do we need to restore terminal? */
games/warp/term.h
256
EXT char *BC INIT(NULL); /* backspace character */
games/warp/term.h
257
EXT char *UP INIT(NULL); /* move cursor up one line */
games/warp/term.h
260
EXT char *ND INIT(NULL); /* non-destructive cursor right */
games/warp/term.h
262
EXT char *DO INIT(NULL); /* move cursor down one line */
games/warp/term.h
264
EXT char *CR INIT(NULL); /* get to left margin, somehow */
games/warp/term.h
265
EXT char *VB INIT(NULL); /* visible bell */
games/warp/term.h
266
EXT char *CL INIT(NULL); /* home and clear screen */
games/warp/term.h
267
EXT char *CE INIT(NULL); /* clear to end of line */
games/warp/term.h
268
EXT char *CM INIT(NULL); /* cursor motion -- PWP */
games/warp/term.h
269
EXT char *HO INIT(NULL); /* home cursor -- PWP */
games/warp/term.h
270
EXT char *CD INIT(NULL); /* clear to end of display -- PWP */
games/warp/term.h
271
EXT char *SO INIT(NULL); /* begin standout mode */
games/warp/term.h
272
EXT char *SE INIT(NULL); /* end standout mode */
games/warp/term.h
273
EXT int SG INIT(0); /* blanks left by SO and SE */
games/warp/term.h
274
EXT char *US INIT(NULL); /* start underline mode */
games/warp/term.h
275
EXT char *UE INIT(NULL); /* end underline mode */
games/warp/term.h
276
EXT char *UC INIT(NULL); /* underline a character, if that's how it's done */
games/warp/term.h
277
EXT int UG INIT(0); /* blanks left by US and UE */
games/warp/term.h
278
EXT bool AM INIT(false); /* does terminal have automatic margins? */
games/warp/term.h
279
EXT bool XN INIT(false); /* does it eat 1st newline after automatic wrap? */
games/warp/term.h
281
EXT char PC INIT(0); /* pad character for use by tputs() */
games/warp/term.h
282
EXT short ospeed INIT(0); /* terminal output speed, for use by tputs() */
games/warp/term.h
284
EXT int LINES INIT(0), COLS INIT(0); /* size of screen */
games/warp/term.h
285
EXT int just_a_sec INIT(960); /* 1 sec at current baud rate */
games/warp/term.h
71
EXT int BCsize INIT(1);
games/warp/term.h
72
EXT int DOsize INIT(1000);
games/warp/term.h
73
EXT int UPsize INIT(1000);
games/warp/term.h
74
EXT int NDsize INIT(1000);
games/warp/term.h
78
EXT int real_y INIT(-100);
games/warp/term.h
79
EXT int real_x INIT(-100);
games/warp/term.h
87
EXT char *bsptr INIT(filler+1);
games/warp/term.h
91
EXT char gfillen INIT(25);
games/warp/term.h
98
EXT char INTRCH INIT('\03');
games/warp/us.h
34
EXT int dam INIT(0);
games/warp/us.h
35
EXT int lastdam INIT(-1);
games/warp/us.h
36
EXT int damage INIT(0);
games/warp/us.h
37
EXT int olddamage INIT(-1);
games/warp/util.h
26
EXT int len_last_line_got INIT(0);
games/warp/warp.h
311
EXT char *cwd INIT(NULL); /* current working directory */
games/warp/warp.h
316
EXT int debug INIT(0); /* -D */
games/warp/warp.h
322
EXT bool verbose INIT(true); /* +t */
games/warp/warp.h
328
EXT FILE *tmpfp INIT(NULL); /* scratch fp */
games/warp/warp.h
336
EXT char nullstr[] INIT("");
games/warp/warp.h
337
EXT char readerr[] INIT("warp read error");
games/warp/warp.h
338
EXT char cantopen[] INIT("Can't open %s\r\n");
games/warp/warp.h
346
EXT bool justonemoretime INIT(true);
games/warp/warp.h
347
EXT bool keepgoing INIT(true);
games/warp/warp.h
349
EXT bool friendspec INIT(false);
games/warp/warp.h
350
EXT bool piratespec INIT(false);
games/warp/warp.h
351
EXT bool amoebaspec INIT(false);
games/warp/warp.h
352
EXT bool starspec INIT(false);
games/warp/warp.h
353
EXT bool klingspec INIT(false);
games/warp/warp.h
354
EXT bool apolspec INIT(false);
games/warp/warp.h
355
EXT bool crushspec INIT(false);
games/warp/warp.h
356
EXT bool romspec INIT(false);
games/warp/warp.h
357
EXT bool prespec INIT(false);
games/warp/warp.h
358
EXT bool tholspec INIT(false);
games/warp/warp.h
359
EXT bool gornspec INIT(false);
games/warp/warp.h
360
EXT bool beginner INIT(false);
games/warp/warp.h
361
EXT bool massacre INIT(false);
games/warp/warp.h
362
EXT bool lowspeed INIT(false);
games/warp/warp.h
363
EXT bool debugging INIT(false);
games/warp/warp.h
364
EXT bool didkill INIT(false);
games/warp/warp.h
365
EXT bool experimenting INIT(false);
games/warp/warp.h
366
EXT bool scorespec INIT(false);
games/warp/warp.h
367
EXT bool metakey INIT(false);
games/warp/warp.h
370
EXT int panic INIT(0);
games/warp/warp.h
397
EXT int ismarts INIT(0);
games/warp/warp.h
398
EXT int numos INIT(0);
games/warp/warp.h
399
EXT int numxes INIT(0);
games/warp/warp.h
408
EXT int prescene INIT(-1);
games/warp/weapon.h
9
EXT int tractor INIT(0);
lib/libc/citrus/modules/citrus_hz.c
283
} else if (INIT(psenc->inuse) == init) {
lib/libc/citrus/modules/citrus_hz.c
404
if (INIT(psenc->inuse) != init ||
lib/libc/citrus/modules/citrus_hz.c
407
} else if (candidate == (init = INIT(candidate))) {
lib/libc/regex/engine.c
1052
for (pc = start, INIT(here, pc); pc != stop; pc++, INC(here)) {
lib/libc/regex/engine.c
1119
INIT(here, pc);
lib/libcrypt/md5crypt.c
112
INIT(&ctx1);
lib/libcrypt/md5crypt.c
66
INIT(&ctx);
lib/libcrypt/md5crypt.c
78
INIT(&ctx1);
sbin/ifconfig/carp.c
74
{.k_word = "INIT", .k_type = KW_T_INT, .k_int = INIT,
sbin/newfs_msdos/mkfs_msdos.c
188
{"160", INIT(512, 1, 1, 2, 64, 320, 0xfe, 1, 8, 1)},
sbin/newfs_msdos/mkfs_msdos.c
189
{"180", INIT(512, 1, 1, 2, 64, 360, 0xfc, 2, 9, 1)},
sbin/newfs_msdos/mkfs_msdos.c
190
{"320", INIT(512, 2, 1, 2, 112, 640, 0xff, 1, 8, 2)},
sbin/newfs_msdos/mkfs_msdos.c
191
{"360", INIT(512, 2, 1, 2, 112, 720, 0xfd, 2, 9, 2)},
sbin/newfs_msdos/mkfs_msdos.c
192
{"640", INIT(512, 2, 1, 2, 112, 1280, 0xfb, 2, 8, 2)},
sbin/newfs_msdos/mkfs_msdos.c
193
{"720", INIT(512, 2, 1, 2, 112, 1440, 0xf9, 3, 9, 2)},
sbin/newfs_msdos/mkfs_msdos.c
194
{"1200", INIT(512, 1, 1, 2, 224, 2400, 0xf9, 7, 15, 2)},
sbin/newfs_msdos/mkfs_msdos.c
195
{"1232", INIT(1024,1, 1, 2, 192, 1232, 0xfe, 2, 8, 2)},
sbin/newfs_msdos/mkfs_msdos.c
196
{"1440", INIT(512, 1, 1, 2, 224, 2880, 0xf0, 9, 18, 2)},
sbin/newfs_msdos/mkfs_msdos.c
197
{"2880", INIT(512, 2, 1, 2, 240, 5760, 0xf0, 9, 36, 2)}
sys/fs/puffs/puffs_compat.c
235
INIT(vfsmsg_fhtonode,
sys/fs/puffs/puffs_compat.c
245
INIT(vnmsg_lookup, 0);
sys/fs/puffs/puffs_compat.c
256
INIT(vnmsg_create, 0);
sys/fs/puffs/puffs_compat.c
268
INIT(vnmsg_mknod, 0);
sys/fs/puffs/puffs_compat.c
280
INIT(vnmsg_mkdir, 0);
sys/fs/puffs/puffs_compat.c
292
INIT(vnmsg_symlink, 0);
sys/fs/puffs/puffs_compat.c
306
INIT(vnmsg_setattr, 0);
sys/fs/puffs/puffs_compat.c
316
INIT(vnmsg_getattr, 0);
sys/fs/puffs/puffs_compat.c
352
INIT(vfsmsg_fhtonode);
sys/fs/puffs/puffs_compat.c
364
INIT(vnmsg_lookup);
sys/fs/puffs/puffs_compat.c
377
INIT(vnmsg_create);
sys/fs/puffs/puffs_compat.c
387
INIT(vnmsg_mknod);
sys/fs/puffs/puffs_compat.c
397
INIT(vnmsg_mkdir);
sys/fs/puffs/puffs_compat.c
407
INIT(vnmsg_symlink);
sys/fs/puffs/puffs_compat.c
417
INIT(vnmsg_setattr);
sys/fs/puffs/puffs_compat.c
425
INIT(vnmsg_getattr);
sys/netinet/ip_carp.c
1517
case INIT:
sys/netinet/ip_carp.c
1548
carp_set_state(sc, INIT);
sys/netinet/ip_carp.c
1562
case INIT:
sys/netinet/ip_carp.c
1801
carp_set_state(sc, INIT);
sys/netinet/ip_carp.c
1820
carp_set_state(sc, INIT);
sys/netinet/ip_carp.c
1867
carp_set_state(sc, INIT);
sys/netinet/ip_carp.c
1915
carp_set_state(sc, INIT);
sys/netinet/ip_carp.c
1968
carp_set_state(sc, INIT);
sys/netinet/ip_carp.c
2064
if (sc->sc_state != INIT && !(ifr->ifr_flags & IFF_UP)) {
sys/netinet/ip_carp.c
2075
carp_set_state(sc, INIT);
sys/netinet/ip_carp.c
2077
} else if (sc->sc_state == INIT && (ifr->ifr_flags & IFF_UP)) {
sys/netinet/ip_carp.c
2100
if (sc->sc_state != INIT && carpr.carpr_state != sc->sc_state) {
sys/netinet/ip_carp.c
2130
carp_set_state(sc, INIT);
sys/netinet/ip_carp.c
2277
carp_set_state(sc, INIT);
sys/netinet/ip_carp.c
2286
carp_set_state(sc, INIT);
sys/netinet/ip_carp.c
776
case INIT:
sys/netinet/ip_carp.c
926
carp_set_state(sc, INIT);
usr.bin/menuc/defs.h
63
EXTERN char *out_name INIT("menu_defs");
usr.bin/menuc/defs.h
64
EXTERN char *sys_name INIT("menu_sys.def");
usr.bin/menuc/defs.h
66
EXTERN int do_dynamic INIT(0);
usr.bin/menuc/defs.h
67
EXTERN int do_msgxlat INIT(0);
usr.bin/menuc/defs.h
68
EXTERN int do_expands INIT(0);
usr.bin/menuc/defs.h
69
EXTERN int line_no INIT(1);
usr.bin/menuc/defs.h
70
EXTERN int had_errors INIT(FALSE);
usr.bin/menuc/defs.h
71
EXTERN int max_strlen INIT(1);
usr.bin/menuc/defs.h
73
EXTERN id_rec *root INIT(NULL);
usr.bin/menuc/defs.h
78
EXTERN action error_act INIT({NULL});
usr.bin/msgc/defs.h
63
EXTERN char *out_name INIT("msg_defs");
usr.bin/msgc/defs.h
64
EXTERN char *sys_name INIT("msg_sys.def");
usr.bin/msgc/defs.h
66
EXTERN int line_no INIT(1);
usr.bin/msgc/defs.h
67
EXTERN int had_errors INIT(FALSE);
usr.bin/msgc/defs.h
68
EXTERN int max_strlen INIT(1);
usr.bin/msgc/defs.h
70
EXTERN id_rec *root INIT(NULL);
usr.bin/tip/value.c
106
if (!(p->v_type&(ENVIRON|INIT)))
usr.bin/tip/value.c
112
p->v_type &= ~(ENVIRON|INIT);
usr.bin/tip/vars.c
100
{ "chardelay", NUMBER|IREMOTE|INIT, (READ|WRITE)<<PUBLIC,
usr.bin/tip/vars.c
102
{ "etimeout", NUMBER|IREMOTE|INIT, (READ|WRITE)<<PUBLIC,
usr.bin/tip/vars.c
110
{ "parity", STRING|INIT|IREMOTE, (READ|WRITE)<<PUBLIC,
usr.bin/tip/vars.c
50
{ "baudrate", NUMBER|IREMOTE|INIT, (READ<<PUBLIC)|(WRITE<<ROOT),
usr.bin/tip/vars.c
54
{ "eofread", STRING|IREMOTE|INIT, (READ|WRITE)<<PUBLIC,
usr.bin/tip/vars.c
56
{ "eofwrite", STRING|IREMOTE|INIT, (READ|WRITE)<<PUBLIC,
usr.bin/tip/vars.c
58
{ "eol", STRING|IREMOTE|INIT, (READ|WRITE)<<PUBLIC,
usr.bin/tip/vars.c
62
{ "exceptions", STRING|INIT|IREMOTE, (READ|WRITE)<<PUBLIC,
usr.bin/tip/vars.c
66
{ "framesize", NUMBER|IREMOTE|INIT, (READ|WRITE)<<PUBLIC,
usr.bin/tip/vars.c
68
{ "host", STRING|IREMOTE|INIT, READ<<PUBLIC,
usr.bin/tip/vars.c
70
{ "phones", STRING|INIT|IREMOTE, READ<<PUBLIC,
usr.bin/tip/vars.c
78
{ "record", STRING|INIT|IREMOTE, (READ|WRITE)<<PUBLIC,
usr.bin/tip/vars.c
80
{ "remote", STRING|INIT|IREMOTE, READ<<PUBLIC,
usr.bin/tip/vars.c
88
{ "SHELL", STRING|ENVIRON|INIT, (READ|WRITE)<<PUBLIC,
usr.bin/tip/vars.c
94
{ "disconnect", STRING|IREMOTE|INIT, (READ|WRITE)<<PUBLIC,
usr.bin/tip/vars.c
98
{ "linedelay", NUMBER|IREMOTE|INIT, (READ|WRITE)<<PUBLIC,
usr.bin/vacation/vacation.c
490
INIT("-request"),
usr.bin/vacation/vacation.c
491
INIT("postmaster"),
usr.bin/vacation/vacation.c
492
INIT("uucp"),
usr.bin/vacation/vacation.c
493
INIT("mailer-daemon"),
usr.bin/vacation/vacation.c
494
INIT("mailer"),
usr.bin/vacation/vacation.c
495
INIT("-relay"),
usr.bin/xlint/lint1/ckbool.c
75
op == RETURN || op == INIT || op == FARG)
usr.bin/xlint/lint1/init.c
262
if (!typeok(INIT, NULL, 0, ln, rn))
usr.bin/xlint/lint1/init.c
274
rn = convert(INIT, 0, unconst_cast(ltp), rn);
usr.bin/xlint/lint1/init.c
825
tnode_t *tn = build_binary(ln, INIT, false /* XXX */, rn);
usr.bin/xlint/lint1/tree.c
1843
op == INIT;
usr.bin/xlint/lint1/tree.c
1867
if ((op == ASSIGN || op == RETURN || op == INIT) &&
usr.bin/xlint/lint1/tree.c
2212
op != ASSIGN && op != RETURN && op != INIT)
usr.bin/xlint/lint1/tree.c
2281
case INIT:
usr.bin/xlint/lint1/tree.c
3045
if (op == RETURN || op == INIT || op == FARG)
usr.bin/xlint/lint1/tree.c
3118
case INIT:
usr.bin/xlint/lint1/tree.c
3234
case INIT:
usr.bin/xlint/lint1/tree.c
3272
case INIT:
usr.bin/xlint/lint1/tree.c
3314
case INIT:
usr.bin/xlint/lint1/tree.c
3498
case INIT:
usr.bin/xlint/lint1/tree.c
3564
case INIT:
usr.bin/xlint/lint1/tree.c
3600
case INIT:
usr.bin/xlint/lint1/tree.c
4300
else if (op == INIT)
usr.bin/xlint/lint1/tree.c
4335
else if (op == INIT && tp->t_bitfield)
usr.bin/xlint/lint1/tree.c
4338
else if (op == INIT)
usr.bin/xlint/lint1/tree.c
4359
else if (op == INIT && tp->t_bitfield)