crypto/libressl/apps/openssl/s_apps.h
141
void apps_ssl_info_callback(const SSL *s, int where, int ret);
crypto/libressl/apps/openssl/s_cb.c
329
apps_ssl_info_callback(const SSL * s, int where, int ret)
crypto/libressl/apps/openssl/s_cb.c
334
w = where & ~SSL_ST_MASK;
crypto/libressl/apps/openssl/s_cb.c
343
if (where & SSL_CB_LOOP) {
crypto/libressl/apps/openssl/s_cb.c
345
} else if (where & SSL_CB_ALERT) {
crypto/libressl/apps/openssl/s_cb.c
346
str = (where & SSL_CB_READ) ? "read" : "write";
crypto/libressl/apps/openssl/s_cb.c
350
} else if (where & SSL_CB_EXIT) {
crypto/libressl/include/openssl/stack.h
87
int sk_insert(_STACK *sk, void *data, int where);
crypto/libressl/ssl/tls13_handshake.c
689
int state, where;
crypto/libressl/ssl/tls13_handshake.c
699
where = tls13_handshake_info_position(ctx);
crypto/libressl/ssl/tls13_handshake.c
700
ctx->info_cb(ctx, where, 1);
crypto/openssh/channels.c
1096
open_preamble(struct ssh *ssh, const char *where, Channel *c, const char *type)
crypto/openssh/channels.c
1105
fatal_r(r, "%s: channel %i: open", where, c->self);
crypto/openssh/channels.c
3368
channel_parse_id(struct ssh *ssh, const char *where, const char *what)
crypto/openssh/channels.c
3374
error_r(r, "%s: parse id", where);
crypto/openssh/channels.c
3378
error_r(r, "%s: bad channel id %u", where, id);
crypto/openssh/channels.c
3386
channel_from_packet_id(struct ssh *ssh, const char *where, const char *what)
crypto/openssh/channels.c
3388
int id = channel_parse_id(ssh, where, what);
crypto/openssh/channels.c
4492
channel_permit_all(struct ssh *ssh, int where)
crypto/openssh/channels.c
4494
struct permission_set *pset = permission_set_get(ssh, where);
crypto/openssh/channels.c
4504
channel_add_permission(struct ssh *ssh, int who, int where,
crypto/openssh/channels.c
4507
int local = where == FORWARD_LOCAL;
crypto/openssh/channels.c
4508
struct permission_set *pset = permission_set_get(ssh, where);
crypto/openssh/channels.c
4511
fwd_ident(who, where), host, port);
crypto/openssh/channels.c
4516
permission_set_add(ssh, who, where,
crypto/openssh/channels.c
4526
channel_disable_admin(struct ssh *ssh, int where)
crypto/openssh/channels.c
4528
channel_clear_permission(ssh, FORWARD_ADM, where);
crypto/openssh/channels.c
4529
permission_set_add(ssh, FORWARD_ADM, where,
crypto/openssh/channels.c
4537
channel_clear_permission(struct ssh *ssh, int who, int where)
crypto/openssh/channels.c
4542
permission_set_get_array(ssh, who, where, &permp, &npermp);
crypto/openssh/channels.c
618
fwd_ident(int who, int where)
crypto/openssh/channels.c
621
if (where == FORWARD_LOCAL)
crypto/openssh/channels.c
623
else if (where == FORWARD_REMOTE)
crypto/openssh/channels.c
626
if (where == FORWARD_LOCAL)
crypto/openssh/channels.c
628
else if (where == FORWARD_REMOTE)
crypto/openssh/channels.c
631
fatal("Unknown forward permission list %d/%d", who, where);
crypto/openssh/channels.c
636
permission_set_get(struct ssh *ssh, int where)
crypto/openssh/channels.c
640
switch (where) {
crypto/openssh/channels.c
648
fatal_f("invalid forwarding direction %d", where);
crypto/openssh/channels.c
654
permission_set_get_array(struct ssh *ssh, int who, int where,
crypto/openssh/channels.c
657
struct permission_set *pset = permission_set_get(ssh, where);
crypto/openssh/channels.c
675
permission_set_add(struct ssh *ssh, int who, int where,
crypto/openssh/channels.c
683
permission_set_get_array(ssh, who, where, &permp, &npermp);
crypto/openssh/channels.c
686
fatal_f("%s overflow", fwd_ident(who, where));
crypto/openssh/monitor_wrap.c
1089
int where = listen ? FORWARD_REMOTE : FORWARD_LOCAL;
crypto/openssh/monitor_wrap.c
1092
channel_clear_permission(ssh, FORWARD_ADM, where);
crypto/openssh/monitor_wrap.c
1100
channel_disable_admin(ssh, where);
crypto/openssh/monitor_wrap.c
1114
where, host, port);
crypto/openssh/ssh.c
1994
int where = FORWARD_LOCAL;
crypto/openssh/ssh.c
1996
channel_clear_permission(ssh, FORWARD_ADM, where);
crypto/openssh/ssh.c
2004
channel_disable_admin(ssh, where);
crypto/openssh/ssh.c
2018
where, addr, port);
games/adventure/vocab.c
105
drop(int object, int where)
games/adventure/vocab.c
108
fixed[object - 100] = where;
games/adventure/vocab.c
112
place[object] = where;
games/adventure/vocab.c
114
if (where <= 0)
games/adventure/vocab.c
116
links[object] = atloc[where];
games/adventure/vocab.c
117
atloc[where] = object;
games/adventure/vocab.c
64
move(int object, int where)
games/adventure/vocab.c
74
drop(object, where);
games/adventure/vocab.c
78
put(int object, int where, int pval)
games/adventure/vocab.c
80
move(object, where);
games/adventure/vocab.c
85
carry(int object, int where)
games/adventure/vocab.c
95
if (atloc[where] == object) {
games/adventure/vocab.c
96
atloc[where] = links[object];
games/adventure/vocab.c
99
for (temp = atloc[where]; links[temp] != object; temp = links[temp]);
games/monop/monop.c
94
where, /* where players are |* 2 *| */
games/monop/monop.h
195
void where(void);
games/phantasia/io.c
97
more(int where)
games/phantasia/io.c
99
mvaddstr(where, 0, "-- more --");
games/wump/wump.c
811
jump(int where)
games/wump/wump.c
816
a very curious, warm sensation and find yourself in room %d!!\n", where);
include/rpc/rpc_msg.h
95
caddr_t where;
lib/csu/x86_64/crt1.c
57
Elf_Addr *where, target, *ptr;
lib/csu/x86_64/crt1.c
65
where = (Elf_Addr *)rela->r_offset;
lib/csu/x86_64/crt1.c
67
*where = target;
lib/libc/rpc/clnt_bcast.c
559
msg.acpted_rply.ar_results.where =
lib/libc/rpc/clnt_bcast.c
569
msg.acpted_rply.ar_results.where =
lib/libc/rpc/clnt_dg.c
406
reply_msg.acpted_rply.ar_results.where = resultsp;
lib/libc/rpc/clnt_raw.c
182
msg.acpted_rply.ar_results.where = resultsp;
lib/libc/rpc/clnt_vc.c
381
reply_msg.acpted_rply.ar_results.where = NULL;
lib/libc/rpc/rpc_prot.c
115
return ((*(ar->ar_results.proc))(xdrs, ar->ar_results.where));
lib/libc/rpc/svc.c
363
rply.acpted_rply.ar_results.where = xdr_location;
lib/libc/xdr/xdr_rec.c
626
char *where;
lib/libc/xdr/xdr_rec.c
633
where = rstrm->in_base;
lib/libc/xdr/xdr_rec.c
635
where += i;
lib/libc/xdr/xdr_rec.c
637
if ((len = (*(rstrm->readit))(rstrm->tcp_handle, where, len)) == -1)
lib/libc/xdr/xdr_rec.c
639
rstrm->in_finger = where;
lib/libc/xdr/xdr_rec.c
640
where += len;
lib/libc/xdr/xdr_rec.c
641
rstrm->in_boundry = where;
libexec/rtld-elf/rtld.c
783
Elf_Addr *where;
libexec/rtld-elf/rtld.c
795
where = (Elf_Addr *) (obj->relocbase + rel->r_offset);
libexec/rtld-elf/rtld.c
835
target = reloc_jmpslot(where, target, defobj, obj, rel);
libexec/rtld-elf/x86_64/reloc.c
141
Elf_Addr *where, symval;
libexec/rtld-elf/x86_64/reloc.c
218
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/x86_64/reloc.c
219
where32 = (Elf32_Addr *)where;
libexec/rtld-elf/x86_64/reloc.c
225
*where = symval + rela->r_addend;
libexec/rtld-elf/x86_64/reloc.c
234
rela->r_addend - (Elf_Addr)where);
libexec/rtld-elf/x86_64/reloc.c
251
*where = symval;
libexec/rtld-elf/x86_64/reloc.c
270
*where = (Elf_Addr)(def->st_value - defobj->tlsoffset +
libexec/rtld-elf/x86_64/reloc.c
294
*where += (Elf_Addr)defobj->tlsindex;
libexec/rtld-elf/x86_64/reloc.c
297
*where += (Elf_Addr)(def->st_value + rela->r_addend);
libexec/rtld-elf/x86_64/reloc.c
304
*where = (Elf_Addr)(obj->relocbase + rela->r_addend);
libexec/rtld-elf/x86_64/reloc.c
336
Elf_Addr *where;
libexec/rtld-elf/x86_64/reloc.c
341
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/x86_64/reloc.c
342
*where += (Elf_Addr)obj->relocbase;
libexec/rtld-elf/x86_64/reloc.c
369
Elf_Addr *where, target;
libexec/rtld-elf/x86_64/reloc.c
375
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/x86_64/reloc.c
385
reloc_jmpslot(where, target, defobj, obj, (const Elf_Rel *)rela);
libexec/rtld-elf/x86_64/reloc.c
405
Elf_Addr *where, target, *ptr;
libexec/rtld-elf/x86_64/reloc.c
408
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/x86_64/reloc.c
412
*where = target;
libexec/rtld-elf/x86_64/reloc.c
465
Elf_Addr *where, target;
libexec/rtld-elf/x86_64/reloc.c
471
where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
libexec/rtld-elf/x86_64/reloc.c
481
reloc_jmpslot(where, target, defobj, obj, (const Elf_Rel *)rela);
libexec/rtld-elf/x86_64/rtld_machdep.h
43
reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
libexec/rtld-elf/x86_64/rtld_machdep.h
48
dbg("reloc_jmpslot: *%p = %p", (void *)(where),
libexec/rtld-elf/x86_64/rtld_machdep.h
51
(*(Elf_Addr *)(where) = (Elf_Addr)(target));
libexec/telnetd/utility.c
412
putf(char *cp, char *where)
libexec/telnetd/utility.c
424
putlocation = where;
sbin/dhclient/dispatch.c
314
set_timeout(time_t when, void (*where)(void))
sbin/dhclient/dispatch.c
317
timeout.func = where;
sbin/dhclient/dispatch.c
321
set_timeout_interval(time_t secs, void (*where)(void))
sbin/dhclient/dispatch.c
324
timeout.func = where;
stand/boot/common/reloc_elf.c
102
*where = val;
stand/boot/common/reloc_elf.c
111
Elf_Addr addend, addr, *where, val;
stand/boot/common/reloc_elf.c
119
where = (Elf_Addr *)((char *)data + relbase + rel->r_offset -
stand/boot/common/reloc_elf.c
128
where = (Elf_Addr *)((char *)data + relbase + rela->r_offset -
stand/boot/common/reloc_elf.c
138
if ((char *)where < (char *)data || (char *)where >= (char *)data + len)
stand/boot/common/reloc_elf.c
142
addend = *where;
stand/boot/common/reloc_elf.c
152
*where = addr;
stand/boot/common/reloc_elf.c
159
*where = val;
stand/boot/common/reloc_elf.c
53
Elf64_Addr *where, val;
stand/boot/common/reloc_elf.c
62
where = (Elf64_Addr *)((char *)data + relbase + rel->r_offset -
stand/boot/common/reloc_elf.c
71
where = (Elf64_Addr *)((char *)data + relbase + rela->r_offset -
stand/boot/common/reloc_elf.c
81
if ((char *)where < (char *)data || (char *)where >= (char *)data + len)
stand/boot/common/reloc_elf.c
85
addend = *where;
stand/boot/common/reloc_elf.c
97
*where = val;
stand/lib/bzipfs.c
253
bzf_seek(struct open_file *f, off_t offset, int where)
stand/lib/bzipfs.c
259
switch (where) {
stand/lib/bzipfs.c
51
static off_t bzf_seek(struct open_file *f, off_t offset, int where);
stand/lib/cd9660.c
564
cd9660_seek(struct open_file *f, off_t offset, int where)
stand/lib/cd9660.c
568
switch (where) {
stand/lib/cd9660.c
69
static off_t cd9660_seek(struct open_file *f, off_t offset, int where);
stand/lib/ext2fs.c
840
ext2fs_seek(struct open_file *f, off_t offset, int where)
stand/lib/ext2fs.c
844
switch (where) {
stand/lib/ext2fs.c
95
static off_t ext2fs_seek(struct open_file *f, off_t offset, int where);
stand/lib/gzipfs.c
288
zf_seek(struct open_file *f, off_t offset, int where)
stand/lib/gzipfs.c
294
switch (where) {
stand/lib/gzipfs.c
48
static off_t zf_seek(struct open_file *f, off_t offset, int where);
stand/lib/lseek.c
105
if (f->f_ralen != 0 && where != SEEK_END) {
stand/lib/lseek.c
109
switch (where) {
stand/lib/lseek.c
132
if (where == SEEK_CUR)
stand/lib/lseek.c
140
return (f->f_ops->fo_seek)(f, offset, where);
stand/lib/lseek.c
68
lseek(int fd, off_t offset, int where)
stand/lib/lseek.c
82
switch (where) {
stand/lib/nfs.c
133
static off_t nfs_seek(struct open_file *f, off_t offset, int where);
stand/lib/nfs.c
648
nfs_seek(struct open_file *f, off_t offset, int where)
stand/lib/nfs.c
653
switch (where) {
stand/lib/nullfs.c
98
null_seek(struct open_file *f, off_t offset, int where)
stand/lib/splitfs.c
219
splitfs_seek(struct open_file *f, off_t offset, int where)
stand/lib/splitfs.c
229
switch (where) {
stand/lib/splitfs.c
50
static off_t splitfs_seek(struct open_file *f, off_t offset, int where);
stand/lib/tftp.c
425
tftp_seek(struct open_file *f, off_t offset, int where)
stand/lib/tftp.c
430
switch (where) {
stand/lib/tftp.c
67
static off_t tftp_seek(struct open_file *f, off_t offset, int where);
stand/lib/ufs.c
658
ufs_seek(struct open_file *f, off_t offset, int where)
stand/lib/ufs.c
662
switch (where) {
stand/lib/ufs.c
79
static off_t ufs_seek(struct open_file *f, off_t offset, int where);
sys/cpu/x86_64/misc/elf_machdep.c
102
addend = *where;
sys/cpu/x86_64/misc/elf_machdep.c
108
where = (Elf_Addr *) (relocbase + rela->r_offset);
sys/cpu/x86_64/misc/elf_machdep.c
126
if (*where != val)
sys/cpu/x86_64/misc/elf_machdep.c
127
*where = val;
sys/cpu/x86_64/misc/elf_machdep.c
134
where32 = (Elf32_Addr *)where;
sys/cpu/x86_64/misc/elf_machdep.c
135
val32 = (Elf32_Addr)(addr + addend - (Elf_Addr)where);
sys/cpu/x86_64/misc/elf_machdep.c
145
where32 = (Elf32_Addr *)where;
sys/cpu/x86_64/misc/elf_machdep.c
163
if (*where != addr)
sys/cpu/x86_64/misc/elf_machdep.c
164
*where = addr;
sys/cpu/x86_64/misc/elf_machdep.c
170
if (*where != val)
sys/cpu/x86_64/misc/elf_machdep.c
171
*where = val;
sys/cpu/x86_64/misc/elf_machdep.c
79
Elf64_Addr *where, val;
sys/cpu/x86_64/misc/elf_machdep.c
90
where = (Elf_Addr *) (relocbase + rel->r_offset);
sys/cpu/x86_64/misc/elf_machdep.c
99
addend = *(Elf32_Addr *)where;
sys/dev/drm/amd/display/dc/basics/vector.c
186
void *where = dal_vector_at_index(vector, index);
sys/dev/drm/amd/display/dc/basics/vector.c
188
if (!where) {
sys/dev/drm/amd/display/dc/basics/vector.c
193
where,
sys/dev/drm/i915/i915_vma.h
336
unsigned int where)
sys/dev/drm/i915/i915_vma.h
338
return vma->flags & where;
sys/dev/drm/include/linux/pci.h
122
pci_read_config_byte(struct pci_dev *pdev, int where, u8 *val)
sys/dev/drm/include/linux/pci.h
124
*val = (u8)pci_read_config(pdev->dev.bsddev, where, 1);
sys/dev/drm/include/linux/pci.h
129
pci_read_config_word(struct pci_dev *pdev, int where, u16 *val)
sys/dev/drm/include/linux/pci.h
131
*val = (u16)pci_read_config(pdev->dev.bsddev, where, 2);
sys/dev/drm/include/linux/pci.h
136
pci_read_config_dword(struct pci_dev *pdev, int where, u32 *val)
sys/dev/drm/include/linux/pci.h
138
*val = (u32)pci_read_config(pdev->dev.bsddev, where, 4);
sys/dev/drm/include/linux/pci.h
143
pci_write_config_byte(struct pci_dev *pdev, int where, u8 val)
sys/dev/drm/include/linux/pci.h
145
pci_write_config(pdev->dev.bsddev, where, val, 1);
sys/dev/drm/include/linux/pci.h
150
pci_write_config_word(struct pci_dev *pdev, int where, u16 val)
sys/dev/drm/include/linux/pci.h
152
pci_write_config(pdev->dev.bsddev, where, val, 2);
sys/dev/drm/include/linux/pci.h
157
pci_write_config_dword(struct pci_dev *pdev, int where, u32 val)
sys/dev/drm/include/linux/pci.h
159
pci_write_config(pdev->dev.bsddev, where, val, 4);
sys/dev/drm/include/linux/pci.h
316
pci_bus_read_config_byte(struct pci_bus *bus, unsigned int devfn, int where, u8 *val)
sys/dev/drm/include/linux/pci.h
320
*val = (u8)pci_read_config(pdev->dev.bsddev, where, 1);
sys/dev/drm/include/linux/pci.h
325
pci_bus_read_config_word(struct pci_bus *bus, unsigned int devfn, int where, u16 *val)
sys/dev/drm/include/linux/pci.h
329
*val = (u16)pci_read_config(pdev->dev.bsddev, where, 2);
sys/net/wg/selftest/allowedips.c
177
struct horrible_allowedips_node *other, *where;
sys/net/wg/selftest/allowedips.c
180
other = where = NULL;
sys/net/wg/selftest/allowedips.c
194
where = other;
sys/net/wg/selftest/allowedips.c
199
if (other == NULL && where == NULL)
sys/net/wg/selftest/allowedips.c
202
LIST_INSERT_AFTER(where, node, entry);
sys/net/wg/selftest/allowedips.c
204
LIST_INSERT_BEFORE(where, node, entry);
test/stress/stress2/lib/options.c
44
usage(char *where)
test/stress/stress2/lib/options.c
48
if (where != NULL)
test/stress/stress2/lib/options.c
49
printf("Error in \"%s\"\n", where);
usr.bin/finger/finger.h
50
struct where *whead, *wtail; /* list of where user is or has been */
usr.bin/finger/finger.h
56
struct where *next; /* next place user is or has been */
usr.bin/gzip/gzip.c
1842
print_ratio(off_t in, off_t out, FILE *where)
usr.bin/gzip/gzip.c
1875
fprintf(where, "%5s%%", buff);
usr.bin/patch/patch.c
156
LINENUM where = 0, newwhere, fuzz, mymaxfuzz;
usr.bin/patch/patch.c
305
where = locate_hunk(fuzz);
usr.bin/patch/patch.c
306
if (hunk == 1 && where == 0 && !force && !reverse_seen) {
usr.bin/patch/patch.c
315
where = locate_hunk(fuzz);
usr.bin/patch/patch.c
316
if (where == 0) {
usr.bin/patch/patch.c
344
where = 0;
usr.bin/patch/patch.c
352
} while (!skip_rest_of_patch && where == 0 &&
usr.bin/patch/patch.c
371
} else if (where == 0) {
usr.bin/patch/patch.c
378
apply_hunk(where);
usr.bin/patch/patch.c
887
apply_hunk(LINENUM where)
usr.bin/patch/patch.c
899
where--;
usr.bin/patch/patch.c
905
copy_till(where + old - 1, false);
usr.bin/patch/patch.c
921
copy_till(where + old - 1, false);
usr.bin/patch/patch.c
943
copy_till(where + old - 1, false);
usr.bin/patch/patch.c
975
copy_till(where + old - 1, false);
usr.bin/rpcgen/rpc_scan.c
153
if (*where == 0) {
usr.bin/rpcgen/rpc_scan.c
168
*where = 0;
usr.bin/rpcgen/rpc_scan.c
182
where = curline;
usr.bin/rpcgen/rpc_scan.c
183
} else if (isspace(*where)) {
usr.bin/rpcgen/rpc_scan.c
184
while (isspace(*where))
usr.bin/rpcgen/rpc_scan.c
185
where++; /* eat */
usr.bin/rpcgen/rpc_scan.c
187
for (where++; *where; where++) {
usr.bin/rpcgen/rpc_scan.c
188
if (endcomment(where)) {
usr.bin/rpcgen/rpc_scan.c
189
where++;
usr.bin/rpcgen/rpc_scan.c
194
} else if (startcomment(where)) {
usr.bin/rpcgen/rpc_scan.c
195
where += 2;
usr.bin/rpcgen/rpc_scan.c
205
switch (*where) {
usr.bin/rpcgen/rpc_scan.c
208
where++;
usr.bin/rpcgen/rpc_scan.c
212
where++;
usr.bin/rpcgen/rpc_scan.c
216
where++;
usr.bin/rpcgen/rpc_scan.c
220
where++;
usr.bin/rpcgen/rpc_scan.c
224
where++;
usr.bin/rpcgen/rpc_scan.c
228
where++;
usr.bin/rpcgen/rpc_scan.c
232
where++;
usr.bin/rpcgen/rpc_scan.c
236
where++;
usr.bin/rpcgen/rpc_scan.c
240
where++;
usr.bin/rpcgen/rpc_scan.c
244
where++;
usr.bin/rpcgen/rpc_scan.c
248
where++;
usr.bin/rpcgen/rpc_scan.c
252
where++;
usr.bin/rpcgen/rpc_scan.c
256
where++;
usr.bin/rpcgen/rpc_scan.c
261
findstrconst(&where, &tokp->str);
usr.bin/rpcgen/rpc_scan.c
265
findchrconst(&where, &tokp->str);
usr.bin/rpcgen/rpc_scan.c
280
findconst(&where, &tokp->str);
usr.bin/rpcgen/rpc_scan.c
284
if (!(isalpha(*where) || *where == '_')) {
usr.bin/rpcgen/rpc_scan.c
290
if (isprint(*where)) {
usr.bin/rpcgen/rpc_scan.c
291
s_print(p, "%c", *where);
usr.bin/rpcgen/rpc_scan.c
293
s_print(p, "%d", *where);
usr.bin/rpcgen/rpc_scan.c
297
findkind(&where, tokp);
usr.bin/rpcgen/rpc_scan.c
48
#define startcomment(where) (where[0] == '/' && where[1] == '*')
usr.bin/rpcgen/rpc_scan.c
49
#define endcomment(where) (where[-1] == '*' && where[0] == '/')
usr.bin/rpcgen/rpc_util.c
391
for (i = 0; i < where - curline; i++) {
usr.bin/rpcgen/rpc_util.c
49
char *where = curline; /* current point in line */
usr.bin/rpcgen/rpc_util.c
72
where = curline;
usr.bin/rpcgen/rpc_util.h
109
extern char *where;
usr.bin/window/wwlabel.c
45
wwlabel(struct ww *w, struct ww *f, int where, char *l, int mode)
usr.bin/window/wwlabel.c
73
j = w->ww_i.l + where;
usr.sbin/bootparamd/bootparamd/bootparamd.c
113
char *where, *index();
usr.sbin/bootparamd/bootparamd/bootparamd.c
132
if ( (where = index(buffer,':')) ) {
usr.sbin/bootparamd/bootparamd/bootparamd.c
134
strncpy(hostname, buffer, where - buffer);
usr.sbin/bootparamd/bootparamd/bootparamd.c
135
hostname[where - buffer] = '\0';
usr.sbin/bootparamd/bootparamd/bootparamd.c
136
where++;
usr.sbin/bootparamd/bootparamd/bootparamd.c
137
strcpy(path, where);
usr.sbin/bootparamd/bootparamd/bootparamd.c
186
char *where;
usr.sbin/bootparamd/bootparamd/bootparamd.c
252
where = info + fid_len + 1;
usr.sbin/bootparamd/bootparamd/bootparamd.c
253
if ( isprint( *where )) {
usr.sbin/bootparamd/bootparamd/bootparamd.c
254
strcpy(buffer, where); /* found file */
usr.sbin/mptable/mptable.c
253
static void apic_probe( vm_offset_t* paddr, int* where );
usr.sbin/mptable/mptable.c
257
static void MPFloatingPointer( vm_offset_t paddr, int where, mpfps_t* mpfps );
usr.sbin/mptable/mptable.c
306
int where;
usr.sbin/mptable/mptable.c
354
apic_probe( &paddr, &where );
usr.sbin/mptable/mptable.c
355
if ( where <= 0 ) {
usr.sbin/mptable/mptable.c
363
whereStrings[ where - 1 ], paddr );
usr.sbin/mptable/mptable.c
368
MPFloatingPointer( paddr, where, &mpfps );
usr.sbin/mptable/mptable.c
407
apic_probe( vm_offset_t* paddr, int* where )
usr.sbin/mptable/mptable.c
431
*where = 1;
usr.sbin/mptable/mptable.c
451
*where = 2;
usr.sbin/mptable/mptable.c
464
*where = 3;
usr.sbin/mptable/mptable.c
475
*where = 4;
usr.sbin/mptable/mptable.c
485
*where = 5;
usr.sbin/mptable/mptable.c
497
*where = 6;
usr.sbin/mptable/mptable.c
507
*where = 7;
usr.sbin/mptable/mptable.c
513
*where = 0;
usr.sbin/mptable/mptable.c
522
MPFloatingPointer( vm_offset_t paddr, int where, mpfps_t* mpfps )
usr.sbin/mptable/mptable.c
533
switch ( where )
usr.sbin/rpcbind/rpcb_svc_com.c
1254
reply_msg.acpted_rply.ar_results.where = 0;