Symbol: here
bin/sh/parser.c
1057
heredoc->here = np;
bin/sh/parser.c
1097
struct heredoc *here;
bin/sh/parser.c
1215
here = saveheredoclist;
bin/sh/parser.c
1216
if (here != NULL) {
bin/sh/parser.c
1217
while (here->next != NULL)
bin/sh/parser.c
1218
here = here->next;
bin/sh/parser.c
1219
here->next = heredoclist;
bin/sh/parser.c
756
struct heredoc *here = heredoc;
bin/sh/parser.c
762
if (here->striptabs) {
bin/sh/parser.c
769
here->eofmark = wordtext;
bin/sh/parser.c
770
here->next = NULL;
bin/sh/parser.c
772
heredoclist = here;
bin/sh/parser.c
775
p->next = here;
bin/sh/parser.c
792
struct heredoc *here;
bin/sh/parser.c
796
here = heredoclist;
bin/sh/parser.c
797
heredoclist = here->next;
bin/sh/parser.c
802
readtoken1(pgetc(), here->here->type == NHERE? SQSYNTAX : DQSYNTAX,
bin/sh/parser.c
803
here->eofmark, here->striptabs);
bin/sh/parser.c
805
here->here->nhere.doc = n;
bin/sh/parser.c
82
union node *here; /* redirection node */
crypto/krb5/src/lib/gssapi/krb5/accept_sec_context.c
888
&ctx->here))) {
crypto/krb5/src/lib/gssapi/krb5/delete_sec_context.c
63
if (ctx->here)
crypto/krb5/src/lib/gssapi/krb5/delete_sec_context.c
64
kg_release_name(context, &ctx->here);
crypto/krb5/src/lib/gssapi/krb5/gssapiP_krb5.h
215
krb5_gss_name_t here;
crypto/krb5/src/lib/gssapi/krb5/init_sec_context.c
566
if ((code = kg_duplicate_name(context, cred->name, &ctx->here)))
crypto/krb5/src/lib/gssapi/krb5/init_sec_context.c
602
cred, k_cred, ctx->here->ad_context,
crypto/krb5/src/lib/gssapi/krb5/init_sec_context.c
677
if (ctx_free->here)
crypto/krb5/src/lib/gssapi/krb5/init_sec_context.c
678
kg_release_name(context, &ctx_free->here);
crypto/krb5/src/lib/gssapi/krb5/inq_context.c
121
ctx->initiate ? ctx->here : ctx->there,
crypto/krb5/src/lib/gssapi/krb5/inq_context.c
132
ctx->initiate ? ctx->there : ctx->here,
crypto/krb5/src/lib/gssapi/krb5/ser_sctx.c
260
if (!kret && ctx->here)
crypto/krb5/src/lib/gssapi/krb5/ser_sctx.c
261
kret = k5_size_principal(ctx->here->princ, &required);
crypto/krb5/src/lib/gssapi/krb5/ser_sctx.c
297
initiator_name = ctx->initiate ? ctx->here : ctx->there;
crypto/krb5/src/lib/gssapi/krb5/ser_sctx.c
379
if (!kret && ctx->here)
crypto/krb5/src/lib/gssapi/krb5/ser_sctx.c
380
kret = k5_externalize_principal(ctx->here->princ,
crypto/krb5/src/lib/gssapi/krb5/ser_sctx.c
445
initiator_name = ctx->initiate ? ctx->here : ctx->there;
crypto/krb5/src/lib/gssapi/krb5/ser_sctx.c
571
KG_INIT_NAME_NO_COPY, &ctx->here);
crypto/krb5/src/lib/gssapi/krb5/ser_sctx.c
654
initiator_name = ctx->initiate ? ctx->here : ctx->there;
crypto/krb5/src/lib/gssapi/krb5/ser_sctx.c
685
if (ctx->here)
crypto/krb5/src/lib/gssapi/krb5/ser_sctx.c
686
kg_release_name(kcontext, &ctx->here);
lib/libc/regex/engine.c
1004
onestate here; /* note, macros know this name */
lib/libc/regex/engine.c
1008
for (pc = start, INIT(here, pc); pc != stop; pc++, INC(here)) {
lib/libc/regex/engine.c
1075
INIT(here, pc);
lib/libc/regex/engine.c
1095
if (ISSTATEIN(aft, here)) {
lib/libc/regex/regexec.c
110
#define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n))
lib/libc/regex/regexec.c
111
#define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n))
lib/libc/regex/regexec.c
112
#define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0)
lib/libc/regex/regexec.c
164
#define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
lib/libc/regex/regexec.c
165
#define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
lib/libc/regex/regexec.c
166
#define ISSETBACK(v, n) ((v)[here - (n)])
lib/libc/stdio/xprintf_float.c
270
goto here;
lib/libc/stdio/xprintf_float.c
325
here:
stand/ficl/dict.c
120
pDict->here = alignPtr(pDict->here);
stand/ficl/dict.c
131
char *cp = (char *)pDict->here;
stand/ficl/dict.c
151
pDict->here = PTRtoCELL cp;
stand/ficl/dict.c
167
pDict->here += nCells;
stand/ficl/dict.c
175
pDict->here -= nCells;
stand/ficl/dict.c
177
pDict->here -= dictCellsUsed(pDict);
stand/ficl/dict.c
180
pDict->here += nCells;
stand/ficl/dict.c
192
*pDict->here++ = c;
stand/ficl/dict.c
203
char *cp = (char *)pDict->here;
stand/ficl/dict.c
205
pDict->here = PTRtoCELL cp;
stand/ficl/dict.c
249
pFW = (FICL_WORD *)pDict->here;
stand/ficl/dict.c
259
pDict->here = pFW->param;
stand/ficl/dict.c
275
*pDict->here++ = LVALUEtoCELL(u);
stand/ficl/dict.c
296
return pDict->here - pDict->dict;
stand/ficl/dict.c
347
char *oldCP = (char *)pDict->here;
stand/ficl/dict.c
355
return (char *)pDict->here;
stand/ficl/dict.c
368
pDict->here = PTRtoCELL cp;
stand/ficl/dict.c
414
pHash = (FICL_HASH *)dp->here;
stand/ficl/dict.c
445
pDict->here = pDict->dict;
stand/ficl/dict.c
448
pHash = (FICL_HASH *)pDict->here;
stand/ficl/dict.c
690
return pDict->here;
stand/ficl/dict.c
858
dp->here = dp->dict;
stand/ficl/dict.c
88
pDict->here = (CELL *)pFW->name;
stand/ficl/ficl.h
730
CELL *here;
stand/ficl/tools.c
700
hashForget(pHash, pDict->here);
stand/ficl/tools.c
727
pDict->here = PTRtoCELL where;
stand/ficl/tools.c
805
nWords, (long) (dp->here - dp->dict), dp->size);
stand/ficl/tools.c
832
nWords, (long) (dp->here - dp->dict), dp->size);
stand/ficl/words.c
1315
offset = dp->here - patchAddr;
stand/ficl/words.c
136
offset = patchAddr - dp->here;
stand/ficl/words.c
1407
offset = dp->here - patchAddr;
stand/ficl/words.c
1471
FICL_INT offset = dp->here - fallthroughFixup;
stand/ficl/words.c
1510
PUSHPTR(dp->here);
stand/ficl/words.c
1518
offset = dp->here - patchAddr;
stand/ficl/words.c
1552
PUSHPTR(dp->here);
stand/ficl/words.c
1559
offset = dp->here - patchAddr;
stand/ficl/words.c
159
offset = dp->here - patchAddr;
stand/ficl/words.c
189
*patchAddr = LVALUEtoCELL(dp->here);
stand/ficl/words.c
2405
PUSHPTR(dp->here);
stand/ficl/words.c
2609
FICL_STRING *sp = (FICL_STRING *) dp->here;
stand/ficl/words.c
2618
dp->here = PTRtoCELL vmGetString(pVM, (FICL_STRING *)dp->here, '\"');
stand/ficl/words.c
2661
dp->here = PTRtoCELL vmGetString(pVM, (FICL_STRING *)dp->here, '\"');
stand/ficl/words.c
2718
cpDest = (char *) dp->here;
stand/ficl/words.c
2727
dp->here = PTRtoCELL alignPtr(cpDest);
stand/ficl/words.c
3473
FICL_STRING *sp = (FICL_STRING *) dp->here;
stand/ficl/words.c
3481
dp->here = PTRtoCELL vmGetString(pVM, (FICL_STRING *)dp->here, '\"');
stand/ficl/words.c
4330
pVM->pSys->pMarkLocals = pDict->here;
stand/ficl/words.c
4415
pVM->pSys->pMarkLocals = pDict->here;
stand/ficl/words.c
4949
dictAppendWord(dp, "here", here, FW_DEFAULT);
stand/ficl/words.c
91
PUSHPTR(dp->here);
sys/fs/ext2fs/ext2_extattr.c
1039
struct ext2fs_extattr_entry *here;
sys/fs/ext2fs/ext2_extattr.c
1044
here = EXT2_ENTRY(header+1);
sys/fs/ext2fs/ext2_extattr.c
1045
while (!EXT2_IS_LAST_ENTRY(here)) {
sys/fs/ext2fs/ext2_extattr.c
1046
if (here->e_hash == 0) {
sys/fs/ext2fs/ext2_extattr.c
1054
le32toh(here->e_hash);
sys/fs/ext2fs/ext2_extattr.c
1056
here = EXT2_EXTATTR_NEXT(here);
sys/netgraph/netgraph.h
1012
#define NG_FWD_MSG_HOOK(error, here, item, hook, retaddr) \
sys/netgraph/netgraph.h
1014
if (((error) = ng_address_hook((here), (item), \
sys/netgraph/netgraph.h
1026
#define NG_RESPOND_MSG(error, here, item, resp) \
sys/netgraph/netgraph.h
1032
if ((error = ng_address_ID((here), (item), \
sys/netgraph/netgraph.h
1140
int ng_address_ID(node_p here, item_p item, ng_ID_t ID, ng_ID_t retaddr);
sys/netgraph/netgraph.h
1141
int ng_address_hook(node_p here, item_p item, hook_p hook, ng_ID_t retaddr);
sys/netgraph/netgraph.h
1142
int ng_address_path(node_p here, item_p item, const char *address, ng_ID_t raddr);
sys/netgraph/netgraph.h
1153
item_p ng_package_msg_self(node_p here, hook_p hook, struct ng_mesg *msg);
sys/netgraph/netgraph.h
1154
void ng_replace_retaddr(node_p here, item_p item, ng_ID_t retaddr);
sys/netgraph/netgraph.h
1156
int ng_rmnode_self(node_p here); /* if a node wants to suicide */
sys/netgraph/netgraph.h
959
#define NG_SEND_MSG_HOOK(error, here, msg, hook, retaddr) \
sys/netgraph/netgraph.h
967
if (((error) = ng_address_hook((here), (_item), \
sys/netgraph/netgraph.h
975
#define NG_SEND_MSG_PATH(error, here, msg, path, retaddr) \
sys/netgraph/netgraph.h
983
if (((error) = ng_address_path((here), (_item), \
sys/netgraph/netgraph.h
991
#define NG_SEND_MSG_ID(error, here, msg, ID, retaddr) \
sys/netgraph/netgraph.h
999
if (((error) = ng_address_ID((here), (_item), \
sys/netgraph/ng_base.c
1728
ng_path2noderef(node_p here, const char *address, node_p *destp,
sys/netgraph/ng_base.c
1758
node = ng_name2noderef(here, nodename);
sys/netgraph/ng_base.c
1764
if (here == NULL) {
sys/netgraph/ng_base.c
1768
node = here;
sys/netgraph/ng_base.c
224
static int ng_generic_msg(node_p here, item_p item, hook_p lasthook);
sys/netgraph/ng_base.c
243
int ng_path2noderef(node_p here, const char *path,
sys/netgraph/ng_base.c
2512
ng_generic_msg(node_p here, item_p item, hook_p lasthook)
sys/netgraph/ng_base.c
2526
ng_rmnode(here, NULL, NULL, 0);
sys/netgraph/ng_base.c
2540
error = ng_mkpeer(here, mkp->ourhook, mkp->peerhook, mkp->type);
sys/netgraph/ng_base.c
2558
error = ng_path2noderef(here, con->path, &node2, NULL);
sys/netgraph/ng_base.c
2561
error = ng_con_nodes(item, here, con->ourhook,
sys/netgraph/ng_base.c
2576
error = ng_name_node(here, nam->name);
sys/netgraph/ng_base.c
2590
if ((hook = ng_findhook(here, rmh->ourhook)) != NULL)
sys/netgraph/ng_base.c
2606
if (NG_NODE_HAS_NAME(here))
sys/netgraph/ng_base.c
2607
strcpy(ni->name, NG_NODE_NAME(here));
sys/netgraph/ng_base.c
2608
strcpy(ni->type, here->nd_type->name);
sys/netgraph/ng_base.c
2609
ni->id = ng_node2ID(here);
sys/netgraph/ng_base.c
2610
ni->hooks = here->nd_numhooks;
sys/netgraph/ng_base.c
2615
const int nhooks = here->nd_numhooks;
sys/netgraph/ng_base.c
2631
if (NG_NODE_HAS_NAME(here))
sys/netgraph/ng_base.c
2632
strcpy(ni->name, NG_NODE_NAME(here));
sys/netgraph/ng_base.c
2633
strcpy(ni->type, here->nd_type->name);
sys/netgraph/ng_base.c
2634
ni->id = ng_node2ID(here);
sys/netgraph/ng_base.c
2638
LIST_FOREACH(hook, &here->nd_hooks, hk_hooks) {
sys/netgraph/ng_base.c
2804
for (c = here->nd_type->cmdlist; c != NULL && c->name != NULL;
sys/netgraph/ng_base.c
2884
for (c = here->nd_type->cmdlist;
sys/netgraph/ng_base.c
2932
if (here->nd_type->rcvmsg != NULL) {
sys/netgraph/ng_base.c
2934
return((*here->nd_type->rcvmsg)(here, item, lasthook));
sys/netgraph/ng_base.c
2950
NG_RESPOND_MSG(error, here, item, resp);
sys/netgraph/ng_base.c
3577
#define SET_RETADDR(item, here, retaddr) \
sys/netgraph/ng_base.c
3590
= ng_node2ID(here); \
sys/netgraph/ng_base.c
3597
ng_address_hook(node_p here, item_p item, hook_p hook, ng_ID_t retaddr)
sys/netgraph/ng_base.c
3625
SET_RETADDR(item, here, retaddr);
sys/netgraph/ng_base.c
3633
ng_address_path(node_p here, item_p item, const char *address, ng_ID_t retaddr)
sys/netgraph/ng_base.c
3644
error = ng_path2noderef(here, address, &dest, &hook);
sys/netgraph/ng_base.c
3653
SET_RETADDR(item, here, retaddr);
sys/netgraph/ng_base.c
3658
ng_address_ID(node_p here, item_p item, ng_ID_t ID, ng_ID_t retaddr)
sys/netgraph/ng_base.c
3675
SET_RETADDR(item, here, retaddr);
sys/netgraph/ng_base.c
3685
ng_package_msg_self(node_p here, hook_p hook, struct ng_mesg *msg)
sys/netgraph/ng_base.c
3701
NG_NODE_REF(here);
sys/netgraph/ng_base.c
3702
NGI_SET_NODE(item, here);
sys/netgraph/ng_base.c
3708
NGI_RETADDR(item) = ng_node2ID(here);
sys/netgraph/ng_base.c
3892
ng_replace_retaddr(node_p here, item_p item, ng_ID_t retaddr)
sys/netgraph/ng_base.c
3901
NGI_RETADDR(item) = ng_node2ID(here);
sys/netgraph/ng_base.c
913
ng_name2noderef(node_p here, const char *name)
sys/netgraph/ng_base.c
921
NG_NODE_REF(here);
sys/netgraph/ng_base.c
922
return(here);
tools/test/stress2/tools/fstool.c
226
if (getcwd(here, sizeof(here)) == NULL)
tools/test/stress2/tools/fstool.c
46
static char here[MAXPATHLEN + 1];
tools/test/stress2/tools/fstool.c
90
chdir(here);