HomeSort by: relevance | last modified time | path
    Searched defs:scope (Results 1 - 12 of 12) sorted by relevancy

  /src/lib/libc/net/
inet6_scopeid.c 56 uint16_t scope; local in function:inet6_getscopeid
57 memcpy(&scope, &sin6->sin6_addr.s6_addr[2], sizeof(scope));
58 sin6->sin6_scope_id = ntohs(scope);
74 uint16_t scope = htons(sin6->sin6_scope_id); local in function:inet6_putscopeid
75 memcpy(&sin6->sin6_addr.s6_addr[2], &scope, sizeof(scope));
  /src/usr.bin/make/unit-tests/
var-scope-local.mk 1 # $NetBSD: var-scope-local.mk,v 1.11 2024/03/05 23:07:58 rillig Exp $
79 # Conditions from .if directives are evaluated in the scope of the command
81 # scope and from the environment are resolved, in this precedence order (but
164 # expect: : Making var-scope-local.c out of nothing.
165 var-scope-local.c:
170 # expect: : Making var-scope-local.o from var-scope-local.c.
171 # expect: : Making basename "var-scope-local.o" in "." from "var-scope-local.c" in ".".
180 all: var-scope-local.
    [all...]
directive-for.mk 60 # namespaces and do not influence each other. The "scope" of the .for loop
291 # When there is a variable definition 'scope=cmdline' from the command line
293 # over a variable of the same name, the expression '${scope}' expands to the
295 # expanded, the expression '${scope}' is textually replaced with ${:Uloop}',
298 # contain the word 'scope' anymore.
299 .MAKEFLAGS: scope=cmdline macro
300 .for scope in loop
301 . if ${scope} != "loop"
  /src/usr.bin/xlint/lint1/
README.md 164 ## Block scope
170 ## Expression scope
  /src/sys/sys/
fault.h 49 int scope; member in struct:fault_ioc_enable
57 int scope; member in struct:fault_ioc_disable
61 int scope; member in struct:fault_ioc_getinfo
  /src/sys/netinet6/
scope6.c 83 /* by default, we don't care about scope boundary for these scopes. */
99 * Get a scope of the address. Interface-local, link-local, site-local
105 int scope; local in function:in6_addrscope
108 scope = addr->s6_addr[1] & 0xc0;
110 switch (scope) {
121 scope = addr->s6_addr[1] & 0x0f;
124 * due to other scope such as reserved,
125 * return scope doesn't work.
127 switch (scope) {
177 * Validate the specified scope zone ID in the sin6_scope_id field. If the I
287 int scope; local in function:in6_setscope
    [all...]
  /src/sys/compat/linux/arch/m68k/
linux_machdep.c 805 /* scope */
820 syscallarg(int) scope;
825 int scope, cache; local in function:linux_sys_cacheflush
830 scope = SCARG(uap, scope);
833 if (scope < LINUX_FLUSH_SCOPE_LINE || scope > LINUX_FLUSH_SCOPE_ALL
852 if (scope == LINUX_FLUSH_SCOPE_ALL) {
  /src/sys/dev/microcode/aic7xxx/
aicasm_symbol.h 170 typedef struct scope { struct
171 SLIST_ENTRY(scope) scope_stack_links;
172 TAILQ_ENTRY(scope) scope_links;
173 TAILQ_HEAD(, scope) inner_scope;
183 SLIST_HEAD(scope_list, scope);
184 TAILQ_HEAD(scope_tailq, scope);
  /src/sys/kern/
kern_auth.c 64 kauth_scope_t scope; /* scope backpointer */ member in struct:kauth_listener
70 * Scope.
73 const char *id; /* scope name */
77 SIMPLEQ_ENTRY(kauth_scope) next_scope; /* scope list */
739 * Returns a scope matching the provided id.
740 * Requires the scope list lock to be held by the caller.
745 kauth_scope_t scope; local in function:kauth_ifindscope
749 scope = NULL;
750 SIMPLEQ_FOREACH(scope, &scope_list, next_scope)
769 kauth_scope_t scope; local in function:kauth_register_scope
900 kauth_scope_t scope; local in function:kauth_listen_scope
    [all...]
  /src/sys/external/bsd/ena-com/
ena_admin_defs.h 408 /* stats scope defined in enum ena_admin_get_stats_scope */
409 uint8_t scope; member in struct:ena_admin_aq_get_stats_cmd
413 /* queue id. used when scope is specific_queue */
  /src/sys/external/bsd/ena-com/ena_defs/
ena_admin_defs.h 409 /* stats scope defined in enum ena_admin_get_stats_scope */
410 uint8_t scope; member in struct:ena_admin_aq_get_stats_cmd
414 /* queue id. used when scope is specific_queue */
  /src/usr.bin/make/
var.c 114 * Var_Dump Print out all variables defined in the given scope.
138 * There are 3 kinds of variables: scope variables, environment variables,
141 * Scope variables are stored in GNode.vars. The only way to undefine
142 * a scope variable is using the .undef directive. In particular, it must
145 * unintended way to undefine a scope variable, see varmod-loop-delete.mk.)
156 * For scope variables, it aliases the corresponding HashEntry name.
176 * Appending to its value depends on the scope, see var-op-append.mk.
315 * A scope collects variable names and their values.
317 * The main scope is SCOPE_GLOBAL, which contains the variables that are set
326 * There is no scope for environment variables, these are generated on-the-fl
1470 GNode *scope; member in struct:ModifyWord_SysVSubstArgs
1695 GNode *scope; member in struct:ModifyWord_LoopArgs
2017 GNode *const_member scope; member in struct:Expr
3553 GNode *scope; local in function:ApplyModifier_Assign
    [all...]

Completed in 22 milliseconds