Symbol: scope
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1008
scope = LDAP_SCOPE_SUBTREE;
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1011
res = ldap_search_ext_s(ld, basedn, scope,
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1146
int scope = LDAP_SCOPE_ONE;
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1234
scope = LDAP_SCOPE_SUBTREE;
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1237
res = ldap_search_ext_s(ld, basedn, scope,
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
868
int scope = LDAP_SCOPE_ONE;
lib/libc/net/getaddrinfo.c
1400
const char *cp, *scope;
lib/libc/net/getaddrinfo.c
1436
scope = cp + 1;
lib/libc/net/getaddrinfo.c
1446
if (ip6_str2scopeid(scope, sin6, &scopeid) == -1) {
lib/libc/net/getaddrinfo.c
1649
ip6_str2scopeid(const char *scope, struct sockaddr_in6 *sin6, uint32_t *scopeid)
lib/libc/net/getaddrinfo.c
1655
_DIAGASSERT(scope != NULL);
lib/libc/net/getaddrinfo.c
1662
if (*scope == '\0')
lib/libc/net/getaddrinfo.c
1671
*scopeid = if_nametoindex(scope);
lib/libc/net/getaddrinfo.c
1688
lscopeid = strtoul(scope, &ep, 10);
lib/libc/net/inet6_scopeid.c
56
uint16_t scope;
lib/libc/net/inet6_scopeid.c
57
memcpy(&scope, &sin6->sin6_addr.s6_addr[2], sizeof(scope));
lib/libc/net/inet6_scopeid.c
58
sin6->sin6_scope_id = ntohs(scope);
lib/libc/net/inet6_scopeid.c
74
uint16_t scope = htons(sin6->sin6_scope_id);
lib/libc/net/inet6_scopeid.c
75
memcpy(&sin6->sin6_addr.s6_addr[2], &scope, sizeof(scope));
lib/libpthread/pthread_attr.c
243
pthread_attr_getscope(const pthread_attr_t *attr, int *scope)
lib/libpthread/pthread_attr.c
250
*scope = PTHREAD_SCOPE_SYSTEM;
lib/libpthread/pthread_attr.c
252
*scope = PTHREAD_SCOPE_PROCESS;
lib/libpthread/pthread_attr.c
259
pthread_attr_setscope(pthread_attr_t *attr, int scope)
lib/libpthread/pthread_attr.c
265
switch (scope) {
sys/compat/linux/arch/m68k/linux_machdep.c
825
int scope, cache;
sys/compat/linux/arch/m68k/linux_machdep.c
830
scope = SCARG(uap, scope);
sys/compat/linux/arch/m68k/linux_machdep.c
833
if (scope < LINUX_FLUSH_SCOPE_LINE || scope > LINUX_FLUSH_SCOPE_ALL
sys/compat/linux/arch/m68k/linux_machdep.c
852
if (scope == LINUX_FLUSH_SCOPE_ALL) {
sys/compat/linux/arch/m68k/linux_syscallargs.h
444
syscallarg(int) scope;
sys/dev/microcode/aic7xxx/aicasm.c
467
dump_scope(scope_t *scope)
sys/dev/microcode/aic7xxx/aicasm.c
474
emit_patch(scope, 0);
sys/dev/microcode/aic7xxx/aicasm.c
479
cur_scope = TAILQ_FIRST(&scope->inner_scope);
sys/dev/microcode/aic7xxx/aicasm.c
491
emit_patch(scope, 1);
sys/dev/microcode/aic7xxx/aicasm.c
495
emit_patch(scope_t *scope, int patch)
sys/dev/microcode/aic7xxx/aicasm.c
500
pinfo = &scope->patches[patch];
sys/dev/microcode/aic7xxx/aicasm.c
514
new_patch->patch_func = scope->func_num;
sys/dev/microcode/aic7xxx/aicasm.c
515
new_patch->begin = scope->begin_addr;
sys/dev/microcode/aic7xxx/aicasm.c
518
new_patch->begin = scope->end_addr;
sys/dev/microcode/aic7xxx/aicasm.c
785
process_scope(scope_t *scope)
sys/dev/microcode/aic7xxx/aicasm.c
796
cur_scope = TAILQ_LAST(&scope->inner_scope, scope_tailq);
sys/dev/microcode/aic7xxx/aicasm.c
829
scope->inner_scope_patches += skip_patch_count;
sys/dev/microcode/aic7xxx/aicasm.c
84
static void dump_scope(scope_t *scope);
sys/dev/microcode/aic7xxx/aicasm.c
85
static void emit_patch(scope_t *scope, int patch);
sys/dev/microcode/aic7xxx/aicasm.h
94
struct scope *scope_alloc(void);
sys/dev/microcode/aic7xxx/aicasm.h
95
void process_scope(struct scope *);
sys/dev/microcode/aic7xxx/aicasm_symbol.h
171
SLIST_ENTRY(scope) scope_stack_links;
sys/dev/microcode/aic7xxx/aicasm_symbol.h
172
TAILQ_ENTRY(scope) scope_links;
sys/dev/microcode/aic7xxx/aicasm_symbol.h
173
TAILQ_HEAD(, scope) inner_scope;
sys/dev/microcode/aic7xxx/aicasm_symbol.h
183
SLIST_HEAD(scope_list, scope);
sys/dev/microcode/aic7xxx/aicasm_symbol.h
184
TAILQ_HEAD(scope_tailq, scope);
sys/kern/kern_auth.c
1012
kauth_authorize_action(kauth_scope_t scope, kauth_cred_t cred,
sys/kern/kern_auth.c
1017
r = kauth_authorize_action_internal(scope, cred, action, arg0, arg1,
sys/kern/kern_auth.c
67
kauth_scope_t scope; /* scope backpointer */
sys/kern/kern_auth.c
748
kauth_scope_t scope;
sys/kern/kern_auth.c
752
scope = NULL;
sys/kern/kern_auth.c
753
SIMPLEQ_FOREACH(scope, &scope_list, next_scope) {
sys/kern/kern_auth.c
754
if (strcmp(scope->id, id) == 0)
sys/kern/kern_auth.c
758
return (scope);
sys/kern/kern_auth.c
772
kauth_scope_t scope;
sys/kern/kern_auth.c
780
scope = kmem_alloc(sizeof(*scope), KM_SLEEP);
sys/kern/kern_auth.c
793
kmem_free(scope, sizeof(*scope));
sys/kern/kern_auth.c
801
scope->id = id;
sys/kern/kern_auth.c
802
scope->cookie = cookie;
sys/kern/kern_auth.c
803
scope->nlisteners = 1;
sys/kern/kern_auth.c
805
SIMPLEQ_INIT(&scope->listenq);
sys/kern/kern_auth.c
810
listener->scope = scope;
sys/kern/kern_auth.c
812
SIMPLEQ_INSERT_HEAD(&scope->listenq, listener, listener_next);
sys/kern/kern_auth.c
816
SIMPLEQ_INSERT_TAIL(&scope_list, scope, next_scope);
sys/kern/kern_auth.c
820
return (scope);
sys/kern/kern_auth.c
883
kauth_deregister_scope(kauth_scope_t scope)
sys/kern/kern_auth.c
885
if (scope != NULL) {
sys/kern/kern_auth.c
887
SIMPLEQ_REMOVE(&scope_list, scope, kauth_scope, next_scope);
sys/kern/kern_auth.c
888
kmem_free(scope, sizeof(*scope));
sys/kern/kern_auth.c
903
kauth_scope_t scope;
sys/kern/kern_auth.c
912
scope = kauth_ifindscope(id);
sys/kern/kern_auth.c
913
if (scope == NULL) {
sys/kern/kern_auth.c
926
SIMPLEQ_INSERT_TAIL(&scope->listenq, listener, listener_next);
sys/kern/kern_auth.c
929
scope->nlisteners++;
sys/kern/kern_auth.c
930
listener->scope = scope;
sys/kern/kern_auth.c
948
SIMPLEQ_REMOVE(&listener->scope->listenq, listener,
sys/kern/kern_auth.c
950
listener->scope->nlisteners--;
sys/kern/kern_auth.c
972
kauth_authorize_action_internal(kauth_scope_t scope, kauth_cred_t cred,
sys/kern/kern_auth.c
985
KASSERT(scope != NULL);
sys/kern/kern_auth.c
991
SIMPLEQ_FOREACH(listener, &scope->listenq, listener_next) {
sys/kern/kern_auth.c
992
error = listener->func(cred, action, scope->cookie, arg0,
sys/kern/subr_fault.c
129
switch (args->scope) {
sys/kern/subr_fault.c
170
switch (args->scope) {
sys/kern/subr_fault.c
200
switch (args->scope) {
sys/netinet6/scope6.c
105
int scope;
sys/netinet6/scope6.c
108
scope = addr->s6_addr[1] & 0xc0;
sys/netinet6/scope6.c
110
switch (scope) {
sys/netinet6/scope6.c
121
scope = addr->s6_addr[1] & 0x0f;
sys/netinet6/scope6.c
127
switch (scope) {
sys/netinet6/scope6.c
287
int scope;
sys/netinet6/scope6.c
315
scope = in6_addrscope(in6);
sys/netinet6/scope6.c
317
switch (scope) {
sys/sys/fault.h
49
int scope;
sys/sys/fault.h
57
int scope;
sys/sys/fault.h
61
int scope;
usr.bin/make/arch.c
188
Arch_ParseArchive(char **pp, GNodeList *gns, GNode *scope)
usr.bin/make/arch.c
212
result = Var_Parse(&nested_p, scope,
usr.bin/make/arch.c
228
Var_Expand(&lib, scope, VARE_EVAL_DEFINED);
usr.bin/make/arch.c
251
result = Var_Parse(&nested_p, scope,
usr.bin/make/arch.c
296
Var_Expand(&mem, scope, VARE_EVAL_DEFINED);
usr.bin/make/arch.c
315
} else if (!Arch_ParseArchive(&p, gns, scope)) {
usr.bin/make/make.h
1040
void Var_DeleteAll(GNode *scope);
usr.bin/make/parse.c
1852
VarCheckSyntax(VarAssignOp op, const char *uvalue, GNode *scope)
usr.bin/make/parse.c
1857
scope, VARE_PARSE);
usr.bin/make/parse.c
1866
VarAssign_EvalSubst(GNode *scope, const char *name, const char *uvalue,
usr.bin/make/parse.c
1880
if (!Var_ExistsExpand(scope, name))
usr.bin/make/parse.c
1881
Var_SetExpand(scope, name, "");
usr.bin/make/parse.c
1883
evalue = Var_Subst(uvalue, scope,
usr.bin/make/parse.c
1887
Var_SetExpand(scope, name, evalue);
usr.bin/make/parse.c
1894
VarAssign_EvalShell(const char *name, const char *uvalue, GNode *scope,
usr.bin/make/parse.c
1904
Var_SetExpand(scope, name, output);
usr.bin/make/parse.c
1927
GNode *scope, FStr *out_true_avalue)
usr.bin/make/parse.c
1932
Var_AppendExpand(scope, name, uvalue);
usr.bin/make/parse.c
1934
VarAssign_EvalSubst(scope, name, uvalue, &avalue);
usr.bin/make/parse.c
1936
VarAssign_EvalShell(name, uvalue, scope, &avalue);
usr.bin/make/parse.c
1939
if (op == VAR_DEFAULT && Var_ExistsExpand(scope, name))
usr.bin/make/parse.c
1943
Var_SetExpand(scope, name, uvalue);
usr.bin/make/parse.c
1971
Parse_Var(VarAssign *var, GNode *scope)
usr.bin/make/parse.c
1975
VarCheckSyntax(var->op, var->value, scope);
usr.bin/make/parse.c
1976
if (VarAssign_Eval(var->varname, var->op, var->value, scope, &avalue)) {
usr.bin/make/parse.c
2803
Parse_VarAssign(const char *line, bool finishDependencyGroup, GNode *scope)
usr.bin/make/parse.c
2811
Parse_Var(&var, scope);
usr.bin/make/var.c
1023
Var_SetWithFlags(GNode *scope, const char *name, const char *val,
usr.bin/make/var.c
1032
scope->name, name, val);
usr.bin/make/var.c
1036
if (scope == SCOPE_GLOBAL
usr.bin/make/var.c
1045
scope->name, name, val);
usr.bin/make/var.c
1054
v = VarFind(name, scope, false);
usr.bin/make/var.c
1056
if (scope == SCOPE_CMDLINE && !(flags & VAR_SET_NO_EXPORT)) {
usr.bin/make/var.c
1071
scope->name, name, val);
usr.bin/make/var.c
1084
scope->name, name, val);
usr.bin/make/var.c
1087
v = VarAdd(name, val, scope, flags);
usr.bin/make/var.c
1098
scope->name, name, val);
usr.bin/make/var.c
1105
scope->name, name, val, ValueDescription(val));
usr.bin/make/var.c
1107
ExportVar(name, scope, VEM_PLAIN);
usr.bin/make/var.c
1110
if (scope == SCOPE_CMDLINE) {
usr.bin/make/var.c
1143
Var_Set(GNode *scope, const char *name, const char *val)
usr.bin/make/var.c
1145
Var_SetWithFlags(scope, name, val, VAR_SET_NONE);
usr.bin/make/var.c
1153
Var_SetExpand(GNode *scope, const char *name, const char *val)
usr.bin/make/var.c
1159
Var_Expand(&varname, scope, VARE_EVAL);
usr.bin/make/var.c
1165
scope->name, varname.str, val, name);
usr.bin/make/var.c
1167
Var_SetWithFlags(scope, varname.str, val, VAR_SET_NONE);
usr.bin/make/var.c
1198
Var_Append(GNode *scope, const char *name, const char *val)
usr.bin/make/var.c
1202
v = VarFind(name, scope, scope == SCOPE_GLOBAL);
usr.bin/make/var.c
1205
Var_SetWithFlags(scope, name, val, VAR_SET_NONE);
usr.bin/make/var.c
1212
scope->name, name, val);
usr.bin/make/var.c
1213
} else if (scope == SCOPE_CMDLINE || !v->fromCmd) {
usr.bin/make/var.c
1217
DEBUG3(VAR, "%s: %s = %s\n", scope->name, name, v->val.data);
usr.bin/make/var.c
1222
HashTable_CreateEntry(&scope->vars, name, NULL);
usr.bin/make/var.c
1241
Var_AppendExpand(GNode *scope, const char *name, const char *val)
usr.bin/make/var.c
1247
Var_Expand(&xname, scope, VARE_EVAL);
usr.bin/make/var.c
1252
scope->name, xname.str, val, name);
usr.bin/make/var.c
1254
Var_Append(scope, xname.str, val);
usr.bin/make/var.c
1266
Var_Exists(GNode *scope, const char *name)
usr.bin/make/var.c
1268
Var *v = VarFind(name, scope, true);
usr.bin/make/var.c
1281
Var_ExistsExpand(GNode *scope, const char *name)
usr.bin/make/var.c
1286
Var_Expand(&varname, scope, VARE_EVAL);
usr.bin/make/var.c
1287
exists = Var_Exists(scope, varname.str);
usr.bin/make/var.c
1305
Var_Value(GNode *scope, const char *name)
usr.bin/make/var.c
1307
Var *v = VarFind(name, scope, true);
usr.bin/make/var.c
1473
GNode *scope;
usr.bin/make/var.c
1497
Var_Expand(&rhs, args->scope, VARE_EVAL);
usr.bin/make/var.c
1698
GNode *scope;
usr.bin/make/var.c
1715
Var_SetWithFlags(args->scope, args->var, word.start,
usr.bin/make/var.c
1717
s = Var_Subst(args->body, args->scope, args->emode);
usr.bin/make/var.c
2020
GNode *const_member scope;
usr.bin/make/var.c
2146
FStr nested_val = Var_Parse(&p, ch->expr->scope,
usr.bin/make/var.c
2409
args.scope = expr->scope;
usr.bin/make/var.c
2440
Var_Delete(expr->scope, args.var);
usr.bin/make/var.c
2481
FStr val = Var_Parse(&p, ch->expr->scope,
usr.bin/make/var.c
2798
pattern = Var_Subst(pattern, expr->scope, expr->emode);
usr.bin/make/var.c
3591
GNode *scope;
usr.bin/make/var.c
3629
scope = expr->scope; /* scope where v belongs */
usr.bin/make/var.c
3630
if (expr->defined == DEF_REGULAR && expr->scope != SCOPE_GLOBAL
usr.bin/make/var.c
3631
&& VarFind(expr->name, expr->scope, false) == NULL)
usr.bin/make/var.c
3632
scope = SCOPE_GLOBAL;
usr.bin/make/var.c
3635
Var_Append(scope, expr->name, val.str);
usr.bin/make/var.c
3643
Var_Set(scope, expr->name, output);
usr.bin/make/var.c
3648
Var_Set(scope, expr->name, val.str);
usr.bin/make/var.c
3793
args.scope = expr->scope;
usr.bin/make/var.c
4025
FStr mods = Var_Parse(&p, expr->scope, expr->emode);
usr.bin/make/var.c
4244
UndefinedShortVarValue(char varname, const GNode *scope)
usr.bin/make/var.c
4246
if (scope == SCOPE_CMDLINE || scope == SCOPE_GLOBAL) {
usr.bin/make/var.c
4276
GNode *scope, VarEvalMode emode,
usr.bin/make/var.c
4293
FStr nested_val = Var_Parse(&p, scope, emode);
usr.bin/make/var.c
4332
ParseVarnameShort(char varname, const char **pp, GNode *scope,
usr.bin/make/var.c
4349
v = VarFind(name, scope, true);
usr.bin/make/var.c
4358
val = UndefinedShortVarValue(varname, scope);
usr.bin/make/var.c
4376
FindLocalLegacyVar(Substring varname, GNode *scope,
usr.bin/make/var.c
4382
if (scope == SCOPE_CMDLINE || scope == SCOPE_GLOBAL)
usr.bin/make/var.c
4393
scope, false);
usr.bin/make/var.c
4452
GNode *scope,
usr.bin/make/var.c
4479
ParseVarname(&p, startc, endc, scope, nested_emode, &varname);
usr.bin/make/var.c
4495
v = VarFindSubstring(name, scope, true);
usr.bin/make/var.c
4508
v = FindLocalLegacyVar(name, scope, out_true_extraModifiers);
usr.bin/make/var.c
4516
(scope == SCOPE_CMDLINE || scope == SCOPE_GLOBAL);
usr.bin/make/var.c
4557
#define Expr_Init(name, value, emode, scope, defined) \
usr.bin/make/var.c
4558
(Expr) { name, value, emode, scope, defined }
usr.bin/make/var.c
4562
VarEvalMode emode, GNode *scope, ExprDefined defined)
usr.bin/make/var.c
4569
expr.scope = scope;
usr.bin/make/var.c
4635
Var_Parse(const char **pp, GNode *scope, VarEvalMode emode)
usr.bin/make/var.c
4653
scope, DEF_REGULAR);
usr.bin/make/var.c
4672
if (!ParseVarnameShort(startc, pp, scope, emode, &val.str, &v))
usr.bin/make/var.c
4677
if (!ParseVarnameLong(&p, startc, scope, emode, expr.emode,
usr.bin/make/var.c
4731
expanded = Var_Subst(Expr_Str(&expr), scope, expr.emode);
usr.bin/make/var.c
475
GNode_FindVar(GNode *scope, Substring varname, unsigned hash)
usr.bin/make/var.c
477
return HashTable_FindValueBySubstringHash(&scope->vars, varname, hash);
usr.bin/make/var.c
4784
VarSubstExpr(const char **pp, Buffer *buf, GNode *scope, VarEvalMode emode)
usr.bin/make/var.c
4788
FStr val = Var_Parse(&nested_p, scope, emode);
usr.bin/make/var.c
4842
Var_Subst(const char *str, GNode *scope, VarEvalMode emode)
usr.bin/make/var.c
4853
VarSubstExpr(&p, &res, scope, emode);
usr.bin/make/var.c
4862
Var_SubstInTarget(const char *str, GNode *scope)
usr.bin/make/var.c
4865
EvalStack_Push(VSK_TARGET, scope->name, NULL);
usr.bin/make/var.c
4867
res = Var_Subst(str, scope, VARE_EVAL);
usr.bin/make/var.c
4897
Var_Expand(FStr *str, GNode *scope, VarEvalMode emode)
usr.bin/make/var.c
4903
expanded = Var_Subst(str->str, scope, emode);
usr.bin/make/var.c
4924
Var_Dump(GNode *scope)
usr.bin/make/var.c
4933
HashIter_Init(&hi, &scope->vars);
usr.bin/make/var.c
494
VarFindSubstring(Substring name, GNode *scope, bool elsewhere)
usr.bin/make/var.c
4942
const Var *var = HashTable_FindValue(&scope->vars, varname);
usr.bin/make/var.c
503
var = GNode_FindVar(scope, name, nameHash);
usr.bin/make/var.c
507
if (var == NULL && scope != SCOPE_CMDLINE)
usr.bin/make/var.c
510
if (!opts.checkEnvFirst && var == NULL && scope != SCOPE_GLOBAL) {
usr.bin/make/var.c
512
if (var == NULL && scope != SCOPE_INTERNAL) {
usr.bin/make/var.c
525
if (opts.checkEnvFirst && scope != SCOPE_GLOBAL) {
usr.bin/make/var.c
527
if (var == NULL && scope != SCOPE_INTERNAL)
usr.bin/make/var.c
540
VarFind(const char *name, GNode *scope, bool elsewhere)
usr.bin/make/var.c
542
return VarFindSubstring(Substring_InitStr(name), scope, elsewhere);
usr.bin/make/var.c
569
VarAdd(const char *name, const char *value, GNode *scope, VarSetFlags flags)
usr.bin/make/var.c
571
HashEntry *he = HashTable_CreateEntry(&scope->vars, name, NULL);
usr.bin/make/var.c
576
scope->name, name, value, ValueDescription(value));
usr.bin/make/var.c
585
Var_Delete(GNode *scope, const char *varname)
usr.bin/make/var.c
587
HashEntry *he = HashTable_FindEntry(&scope->vars, varname);
usr.bin/make/var.c
592
scope->name, varname);
usr.bin/make/var.c
605
scope->name, varname);
usr.bin/make/var.c
615
DEBUG2(VAR, "%s: delete %s\n", scope->name, varname);
usr.bin/make/var.c
622
HashTable_DeleteEntry(&scope->vars, he);
usr.bin/make/var.c
629
Var_DeleteAll(GNode *scope)
usr.bin/make/var.c
632
HashIter_Init(&hi, &scope->vars);
usr.bin/make/var.c
705
ExportVarEnv(Var *v, GNode *scope)
usr.bin/make/var.c
725
val = Var_Subst(expr, scope, VARE_EVAL);
usr.bin/make/var.c
726
if (scope != SCOPE_GLOBAL) {
usr.bin/make/var.c
778
ExportVar(const char *name, GNode *scope, VarExportMode mode)
usr.bin/make/var.c
785
v = VarFind(name, scope, false);
usr.bin/make/var.c
786
if (v == NULL && scope != SCOPE_GLOBAL)
usr.bin/make/var.c
792
return ExportVarEnv(v, scope);
usr.bin/make/var.c
804
Var_ReexportVars(GNode *scope)
usr.bin/make/var.c
828
ExportVar(var->name.str, scope, VEM_ENV);
usr.bin/make/var.c
841
ExportVar(varnames.words[i], scope, VEM_ENV);