Symbol: scope
lib/libc/asr/getnameinfo.c
51
char scope[IF_NAMESIZE + 1], *ifname;
lib/libc/asr/getnameinfo.c
74
scope[0] = SCOPE_DELIMITER;
lib/libc/asr/getnameinfo.c
75
scope[1] = '\0';
lib/libc/asr/getnameinfo.c
83
ifname = if_indextoname(ifidx, scope + 1);
lib/libc/asr/getnameinfo.c
86
(void)snprintf(scope + 1, sizeof(scope) - 1, "%u", ifidx);
lib/libc/asr/getnameinfo.c
89
(void)strlcat(buf, scope, buflen);
lib/libc/asr/getnameinfo.c
91
s += strlen(scope);
lib/libc/asr/getnameinfo_async.c
254
char scope[IF_NAMESIZE + 1], *ifname;
lib/libc/asr/getnameinfo_async.c
270
scope[0] = SCOPE_DELIMITER;
lib/libc/asr/getnameinfo_async.c
271
scope[1] = '\0';
lib/libc/asr/getnameinfo_async.c
279
ifname = if_indextoname(ifidx, scope + 1);
lib/libc/asr/getnameinfo_async.c
282
snprintf(scope + 1, sizeof(scope) - 1, "%u", ifidx);
lib/libc/asr/getnameinfo_async.c
284
if (strlcat(buf, scope, buflen) >= buflen) {
libexec/login_ldap/aldap.c
251
aldap_search(struct aldap *ldap, char *basedn, enum scope scope, char *filter,
libexec/login_ldap/aldap.c
269
ber = ober_printf_elements(ber, "sEEddb", basedn, (long long)scope,
libexec/login_ldap/aldap.c
794
lu->scope = LDAP_SCOPE_BASE;
libexec/login_ldap/aldap.c
796
lu->scope = LDAP_SCOPE_ONELEVEL;
libexec/login_ldap/aldap.c
798
lu->scope = LDAP_SCOPE_SUBTREE;
libexec/login_ldap/aldap.c
830
if (aldap_search(ldap, lu->dn, lu->scope, lu->filter, lu->attributes,
libexec/login_ldap/aldap.h
102
int scope;
libexec/login_ldap/aldap.h
227
int aldap_search(struct aldap *, char *, enum scope, char *, char **, int, int, int, struct aldap_page_control *);
libexec/login_ldap/login_ldap.c
223
ctx.userdn = search(&ctx, ctx.basedn, ctx.filter, ctx.scope);
libexec/login_ldap/login_ldap.h
54
int scope;
libexec/login_ldap/login_ldap.h
76
char * search(struct auth_ctx *, char *, char *, enum scope);
libexec/login_ldap/search.c
45
search(struct auth_ctx *ctx, char *base, char *flt, enum scope scp)
libexec/login_ldap/util.c
206
ctx->gscope = ctx->scope = getscope(NULL);
libexec/login_ldap/util.c
264
if ((ctx->scope = getscope(value)) == -1)
libexec/login_ldap/util.c
291
if ((ctx->scope = getscope(value)) == -1)
libexec/login_ldap/util.c
440
getscope(char *scope)
libexec/login_ldap/util.c
442
if (scope == NULL || scope[0] == '\0')
libexec/login_ldap/util.c
445
if (strcmp(scope, "base") == 0)
libexec/login_ldap/util.c
447
else if (strcmp(scope, "one") == 0)
libexec/login_ldap/util.c
449
else if (strcmp(scope, "sub") == 0)
regress/lib/libutil/ber/ber_test.c
593
long long scope = 0, deref = 0;
regress/lib/libutil/ber/ber_test.c
612
basedn, scope, deref, sizelimit, timelimit, typesonly, filter);
sbin/unwind/libunbound/sldns/wire2str.c
2247
uint8_t source, scope;
sbin/unwind/libunbound/sldns/wire2str.c
2255
scope = data[3];
sbin/unwind/libunbound/sldns/wire2str.c
2302
w += sldns_str_print(s, sl, "/%d scope /%d", (int)source, (int)scope);
sys/dev/acpi/acpidebug.c
245
memset(scope, 0, sizeof scope);
sys/dev/acpi/acpidebug.c
249
if (strlcat(scope, db_tok_string, sizeof scope) >=
sys/dev/acpi/acpidebug.c
250
sizeof scope) {
sys/dev/acpi/acpidebug.c
256
if (strlcat(scope, ".", sizeof scope) >=
sys/dev/acpi/acpidebug.c
257
sizeof scope) {
sys/dev/acpi/acpidebug.c
264
if (!strlen(scope)) {
sys/dev/acpi/acpidebug.c
285
node = aml_searchname(acpi_softc->sc_root, scope);
sys/dev/acpi/acpidebug.c
310
node = aml_searchname(acpi_softc->sc_root, scope);
sys/dev/acpi/acpidebug.c
39
extern void aml_disasm(struct aml_scope *scope, int lvl,
sys/dev/acpi/acpidebug.c
52
char scope[80];
sys/dev/acpi/amltypes.h
252
struct aml_scope *scope;
sys/dev/acpi/dsdt.c
1289
uint8_t *aml_parseend(struct aml_scope *scope);
sys/dev/acpi/dsdt.c
1295
aml_parseopcode(struct aml_scope *scope)
sys/dev/acpi/dsdt.c
1299
if (scope->pos >= scope->end)
sys/dev/acpi/dsdt.c
1301
opcode = scope->pos[0];
sys/dev/acpi/dsdt.c
1323
scope->pos += 1;
sys/dev/acpi/dsdt.c
1327
if (scope->pos + 1 >= scope->end)
sys/dev/acpi/dsdt.c
1329
twocode = (scope->pos[0] << 8) + scope->pos[1];
sys/dev/acpi/dsdt.c
1334
scope->pos += 1;
sys/dev/acpi/dsdt.c
1338
scope->pos += 2;
sys/dev/acpi/dsdt.c
1416
aml_parselength(struct aml_scope *scope)
sys/dev/acpi/dsdt.c
1421
lcode = *(scope->pos++);
sys/dev/acpi/dsdt.c
1427
len += *(scope->pos++) << 4L;
sys/dev/acpi/dsdt.c
1429
len += *(scope->pos++) << 12L;
sys/dev/acpi/dsdt.c
1431
len += *(scope->pos++) << 20L;
sys/dev/acpi/dsdt.c
1437
aml_parseend(struct aml_scope *scope)
sys/dev/acpi/dsdt.c
1439
uint8_t *pos = scope->pos;
sys/dev/acpi/dsdt.c
1442
len = aml_parselength(scope);
sys/dev/acpi/dsdt.c
1443
if (pos+len > scope->end) {
sys/dev/acpi/dsdt.c
1447
aml_pc(scope->end));
sys/dev/acpi/dsdt.c
1448
return scope->end;
sys/dev/acpi/dsdt.c
1519
aml_callosi(struct aml_scope *scope, struct aml_value *val)
sys/dev/acpi/dsdt.c
1524
fa = aml_getstack(scope, AMLOP_ARG0);
sys/dev/acpi/dsdt.c
1838
aml_findscope(struct aml_scope *scope, int type, int endscope)
sys/dev/acpi/dsdt.c
1840
while (scope) {
sys/dev/acpi/dsdt.c
1843
scope->pos = scope->end;
sys/dev/acpi/dsdt.c
1844
if (scope->type == AMLOP_WHILE)
sys/dev/acpi/dsdt.c
1845
scope->pos = NULL;
sys/dev/acpi/dsdt.c
1848
scope->pos = scope->end;
sys/dev/acpi/dsdt.c
1851
scope->pos = scope->end;
sys/dev/acpi/dsdt.c
1852
if (scope->type == type)
sys/dev/acpi/dsdt.c
1853
scope->parent->pos = scope->end;
sys/dev/acpi/dsdt.c
1856
if (scope->type == type)
sys/dev/acpi/dsdt.c
1858
scope = scope->parent;
sys/dev/acpi/dsdt.c
1860
return scope;
sys/dev/acpi/dsdt.c
1864
aml_getstack(struct aml_scope *scope, int opcode)
sys/dev/acpi/dsdt.c
1869
scope = aml_findscope(scope, AMLOP_METHOD, 0);
sys/dev/acpi/dsdt.c
1870
if (scope == NULL)
sys/dev/acpi/dsdt.c
1873
if (scope->locals == NULL)
sys/dev/acpi/dsdt.c
1874
scope->locals = aml_allocvalue(AML_OBJTYPE_PACKAGE, 8, NULL);
sys/dev/acpi/dsdt.c
1875
sp = scope->locals->v_package[opcode - AMLOP_LOCAL0];
sys/dev/acpi/dsdt.c
1878
if (scope->args == NULL)
sys/dev/acpi/dsdt.c
1879
scope->args = aml_allocvalue(AML_OBJTYPE_PACKAGE, 7, NULL);
sys/dev/acpi/dsdt.c
1880
sp = scope->args->v_package[opcode - AMLOP_ARG0];
sys/dev/acpi/dsdt.c
1890
aml_showstack(struct aml_scope *scope)
sys/dev/acpi/dsdt.c
1895
dnprintf(10, "===== Stack %s:%s\n", aml_nodename(scope->node),
sys/dev/acpi/dsdt.c
1896
aml_mnem(scope->type, 0));
sys/dev/acpi/dsdt.c
1897
for (idx=0; scope->args && idx<7; idx++) {
sys/dev/acpi/dsdt.c
1898
sp = aml_getstack(scope, AMLOP_ARG0+idx);
sys/dev/acpi/dsdt.c
1904
for (idx=0; scope->locals && idx<8; idx++) {
sys/dev/acpi/dsdt.c
1905
sp = aml_getstack(scope, AMLOP_LOCAL0+idx);
sys/dev/acpi/dsdt.c
1919
struct aml_scope *scope;
sys/dev/acpi/dsdt.c
1931
scope = acpi_os_malloc(sizeof(struct aml_scope));
sys/dev/acpi/dsdt.c
1932
if (scope == NULL)
sys/dev/acpi/dsdt.c
1935
scope->node = node;
sys/dev/acpi/dsdt.c
1936
scope->start = start;
sys/dev/acpi/dsdt.c
1937
scope->end = end;
sys/dev/acpi/dsdt.c
1938
scope->pos = scope->start;
sys/dev/acpi/dsdt.c
1939
scope->parent = parent;
sys/dev/acpi/dsdt.c
1940
scope->type = type;
sys/dev/acpi/dsdt.c
1941
scope->sc = acpi_softc;
sys/dev/acpi/dsdt.c
1944
scope->depth = parent->depth+1;
sys/dev/acpi/dsdt.c
1946
aml_lastscope = scope;
sys/dev/acpi/dsdt.c
1948
return scope;
sys/dev/acpi/dsdt.c
1953
aml_popscope(struct aml_scope *scope)
sys/dev/acpi/dsdt.c
1957
if (scope == NULL)
sys/dev/acpi/dsdt.c
1960
nscope = scope->parent;
sys/dev/acpi/dsdt.c
1962
if (scope->type == AMLOP_METHOD)
sys/dev/acpi/dsdt.c
1963
aml_delchildren(scope->node);
sys/dev/acpi/dsdt.c
1964
if (scope->locals) {
sys/dev/acpi/dsdt.c
1965
aml_freevalue(scope->locals);
sys/dev/acpi/dsdt.c
1966
acpi_os_free(scope->locals);
sys/dev/acpi/dsdt.c
1967
scope->locals = NULL;
sys/dev/acpi/dsdt.c
1969
if (scope->args) {
sys/dev/acpi/dsdt.c
1970
aml_freevalue(scope->args);
sys/dev/acpi/dsdt.c
1971
acpi_os_free(scope->args);
sys/dev/acpi/dsdt.c
1972
scope->args = NULL;
sys/dev/acpi/dsdt.c
1974
acpi_os_free(scope);
sys/dev/acpi/dsdt.c
3049
acpi_mutex_acquire(struct aml_scope *scope, struct aml_value *mtx,
sys/dev/acpi/dsdt.c
3052
if (mtx->v_mtx.owner == NULL || scope == mtx->v_mtx.owner) {
sys/dev/acpi/dsdt.c
3054
mtx->v_mtx.owner = scope;
sys/dev/acpi/dsdt.c
3059
dnprintf(5,"%s acquires mutex %s\n", scope->node->name,
sys/dev/acpi/dsdt.c
3070
acpi_mutex_release(struct aml_scope *scope, struct aml_value *mtx)
sys/dev/acpi/dsdt.c
3076
dnprintf(5, "%s releases mutex %s\n", scope->node->name,
sys/dev/acpi/dsdt.c
3083
acpi_event_wait(struct aml_scope *scope, struct aml_value *evt, int timeout)
sys/dev/acpi/dsdt.c
3108
acpi_event_signal(struct aml_scope *scope, struct aml_value *evt)
sys/dev/acpi/dsdt.c
3116
acpi_event_reset(struct aml_scope *scope, struct aml_value *evt)
sys/dev/acpi/dsdt.c
3123
aml_store(struct aml_scope *scope, struct aml_value *lhs , int64_t ival,
sys/dev/acpi/dsdt.c
3191
node = __aml_searchname(scope->node,
sys/dev/acpi/dsdt.c
3236
aml_disasm(struct aml_scope *scope, int lvl,
sys/dev/acpi/dsdt.c
3253
pc = aml_pc(scope->pos);
sys/dev/acpi/dsdt.c
3254
opcode = aml_parseopcode(scope);
sys/dev/acpi/dsdt.c
3267
scope->pos = aml_parsename(scope->node, scope->pos, &rv, 0);
sys/dev/acpi/dsdt.c
3434
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3438
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3442
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3446
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3450
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3454
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3458
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3462
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3466
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3470
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3474
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3503
aml_parsesimple(scope, c, &tmp);
sys/dev/acpi/dsdt.c
3507
dbprintf(arg, "\'%s\'", scope->pos);
sys/dev/acpi/dsdt.c
3508
scope->pos += strlen(scope->pos)+1;
sys/dev/acpi/dsdt.c
3512
rv = aml_parsesimple(scope, c, NULL);
sys/dev/acpi/dsdt.c
3521
printf("%s", aml_getname(scope->pos));
sys/dev/acpi/dsdt.c
3522
scope->pos = aml_parsename(scope->node, scope->pos,
sys/dev/acpi/dsdt.c
3529
aml_disasm(scope, lvl | 0x8000, dbprintf, arg);
sys/dev/acpi/dsdt.c
3533
scope->pos = end;
sys/dev/acpi/dsdt.c
3538
ms.node = scope->node;
sys/dev/acpi/dsdt.c
3539
ms.start = scope->pos;
sys/dev/acpi/dsdt.c
3561
dbprintf(arg,"%.4x ", aml_pc(scope->pos));
sys/dev/acpi/dsdt.c
3565
scope->pos = end;
sys/dev/acpi/dsdt.c
3570
ms.node = scope->node;
sys/dev/acpi/dsdt.c
3571
ms.start = scope->pos;
sys/dev/acpi/dsdt.c
3582
dbprintf(arg,"%.4x ", aml_pc(scope->pos));
sys/dev/acpi/dsdt.c
3586
scope->pos = end;
sys/dev/acpi/dsdt.c
3601
aml_eval(struct aml_scope *scope, struct aml_value *my_ret, int ret_type,
sys/dev/acpi/dsdt.c
3610
my_ret = aml_seterror(scope, "Undefined name: %s",
sys/dev/acpi/dsdt.c
3618
ms = aml_pushscope(scope, tmp, tmp->node, AMLOP_METHOD);
sys/dev/acpi/dsdt.c
3629
sp->v_objref.ref = aml_parse(scope, 't', "ARGX");
sys/dev/acpi/dsdt.c
3779
aml_parsesimple(struct aml_scope *scope, char ch, struct aml_value *rv)
sys/dev/acpi/dsdt.c
3792
aml_get8(scope->pos), NULL);
sys/dev/acpi/dsdt.c
3793
scope->pos += 1;
sys/dev/acpi/dsdt.c
3797
aml_get16(scope->pos), NULL);
sys/dev/acpi/dsdt.c
3798
scope->pos += 2;
sys/dev/acpi/dsdt.c
3802
aml_get32(scope->pos), NULL);
sys/dev/acpi/dsdt.c
3803
scope->pos += 4;
sys/dev/acpi/dsdt.c
3807
aml_get64(scope->pos), NULL);
sys/dev/acpi/dsdt.c
3808
scope->pos += 8;
sys/dev/acpi/dsdt.c
3811
_aml_setvalue(rv, AML_OBJTYPE_STRING, -1, scope->pos);
sys/dev/acpi/dsdt.c
3812
scope->pos += rv->length+1;
sys/dev/acpi/dsdt.c
3852
aml_seterror(struct aml_scope *scope, const char *fmt, ...)
sys/dev/acpi/dsdt.c
3857
printf("### AML PARSE ERROR (0x%x): ", aml_pc(scope->pos));
sys/dev/acpi/dsdt.c
3862
while (scope) {
sys/dev/acpi/dsdt.c
3863
scope->pos = scope->end;
sys/dev/acpi/dsdt.c
3864
scope = scope->parent;
sys/dev/acpi/dsdt.c
3901
aml_load(struct acpi_softc *sc, struct aml_scope *scope,
sys/dev/acpi/dsdt.c
3929
return aml_pushscope(scope, &tmp, scope->node,
sys/dev/acpi/dsdt.c
3938
aml_parse(struct aml_scope *scope, int ret_type, const char *stype)
sys/dev/acpi/dsdt.c
3950
if (scope == NULL || scope->pos >= scope->end) {
sys/dev/acpi/dsdt.c
3960
iscope = scope;
sys/dev/acpi/dsdt.c
3963
start = scope->pos;
sys/dev/acpi/dsdt.c
3964
pc = aml_pc(scope->pos);
sys/dev/acpi/dsdt.c
3965
aml_debugger(scope);
sys/dev/acpi/dsdt.c
3967
opcode = aml_parseopcode(scope);
sys/dev/acpi/dsdt.c
3973
dnprintf(18,"%.4x %s\n", pc, aml_mnem(opcode, scope->pos));
sys/dev/acpi/dsdt.c
3982
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3986
ch = (*end == AMLOP_ELSE && end < scope->end) ?
sys/dev/acpi/dsdt.c
3996
if (*ch == 'r' && *scope->pos == AMLOP_ZERO) {
sys/dev/acpi/dsdt.c
3999
scope->pos++;
sys/dev/acpi/dsdt.c
4002
rv = aml_parse(scope, *ch, htab->mnem);
sys/dev/acpi/dsdt.c
4014
rv->v_buffer = scope->pos;
sys/dev/acpi/dsdt.c
4015
rv->length = end - scope->pos;
sys/dev/acpi/dsdt.c
4016
scope->pos = end;
sys/dev/acpi/dsdt.c
4023
scope->pos = aml_parsename(scope->node, scope->pos,
sys/dev/acpi/dsdt.c
4027
scope->pos = aml_parsename(scope->node, scope->pos,
sys/dev/acpi/dsdt.c
4037
rv = aml_parsesimple(scope, *ch, NULL);
sys/dev/acpi/dsdt.c
4041
rv = aml_getstack(scope, opcode);
sys/dev/acpi/dsdt.c
4080
if (scope->type == AMLOP_PACKAGE && my_ret->node) {
sys/dev/acpi/dsdt.c
4092
my_ret = aml_eval(scope, my_ret, ret_type, 0, NULL);
sys/dev/acpi/dsdt.c
4125
mscope = aml_pushscope(scope, opargs[1], scope->node,
sys/dev/acpi/dsdt.c
4155
aml_store(scope, opargs[2], ival, NULL);
sys/dev/acpi/dsdt.c
4160
my_ret = aml_seterror(scope, "Divide by Zero!");
sys/dev/acpi/dsdt.c
4167
aml_store(scope, opargs[2], rem, NULL);
sys/dev/acpi/dsdt.c
4168
aml_store(scope, opargs[3], ival, NULL);
sys/dev/acpi/dsdt.c
4177
aml_store(scope, opargs[1], ival, NULL);
sys/dev/acpi/dsdt.c
4182
my_ret = aml_eval(scope, opargs[0], AML_ARG_INTEGER, 0, NULL);
sys/dev/acpi/dsdt.c
4184
aml_store(scope, opargs[0], ival, NULL);
sys/dev/acpi/dsdt.c
4215
aml_store(scope, opargs[1], 0, rv);
sys/dev/acpi/dsdt.c
4267
aml_store(scope, opargs[2], ival, my_ret);
sys/dev/acpi/dsdt.c
4288
aml_store(scope, opargs[1], 0, opargs[0]);
sys/dev/acpi/dsdt.c
4295
aml_store(scope, opargs[1], 0, my_ret);
sys/dev/acpi/dsdt.c
4300
aml_store(scope, opargs[1], 0, my_ret);
sys/dev/acpi/dsdt.c
4305
aml_store(scope, opargs[1], 0, my_ret);
sys/dev/acpi/dsdt.c
4310
aml_store(scope, opargs[1], 0, my_ret);
sys/dev/acpi/dsdt.c
4316
aml_store(scope, opargs[2], 0, my_ret);
sys/dev/acpi/dsdt.c
4321
aml_store(scope, opargs[2], 0, my_ret);
sys/dev/acpi/dsdt.c
4326
aml_store(scope, opargs[2], 0, my_ret);
sys/dev/acpi/dsdt.c
4332
aml_store(scope, opargs[3], 0, my_ret);
sys/dev/acpi/dsdt.c
4355
ival = acpi_mutex_acquire(scope, rv,
sys/dev/acpi/dsdt.c
4361
acpi_mutex_release(scope, rv);
sys/dev/acpi/dsdt.c
4366
ival = acpi_event_wait(scope, rv,
sys/dev/acpi/dsdt.c
4372
acpi_event_reset(scope, rv);
sys/dev/acpi/dsdt.c
4377
acpi_event_signal(scope, rv);
sys/dev/acpi/dsdt.c
4426
mscope = aml_pushscope(scope, opargs[1], rv->node, opcode);
sys/dev/acpi/dsdt.c
4431
mscope = aml_pushscope(scope, opargs[1], rv->node, opcode);
sys/dev/acpi/dsdt.c
4436
mscope = aml_pushscope(scope, opargs[1], rv->node, opcode);
sys/dev/acpi/dsdt.c
4443
mscope = aml_pushscope(scope, opargs[3], rv->node, opcode);
sys/dev/acpi/dsdt.c
4451
mscope = aml_pushscope(scope, opargs[4], rv->node, opcode);
sys/dev/acpi/dsdt.c
4501
mscope = aml_pushscope(scope, opargs[2], scope->node, opcode);
sys/dev/acpi/dsdt.c
4508
mscope = aml_pushscope(scope, opargs[3], scope->node, opcode);
sys/dev/acpi/dsdt.c
4515
mscope = aml_pushscope(scope, opargs[4], scope->node, opcode);
sys/dev/acpi/dsdt.c
4558
mscope = aml_load(acpi_softc, scope, opargs[0], opargs[1]);
sys/dev/acpi/dsdt.c
4570
mscope = aml_pushscope(scope, opargs[1], scope->node,
sys/dev/acpi/dsdt.c
4574
mscope = aml_pushscope(scope, opargs[3], scope->node,
sys/dev/acpi/dsdt.c
4581
scope->pos = start;
sys/dev/acpi/dsdt.c
4582
mscope = aml_pushscope(scope, opargs[1], scope->node,
sys/dev/acpi/dsdt.c
4588
aml_findscope(scope, AMLOP_WHILE, AMLOP_BREAK);
sys/dev/acpi/dsdt.c
4592
aml_findscope(scope, AMLOP_WHILE, AMLOP_CONTINUE);
sys/dev/acpi/dsdt.c
4595
mscope = aml_findscope(scope, AMLOP_METHOD, AMLOP_RETURN);
sys/dev/acpi/dsdt.c
4610
scope = mscope;
sys/dev/acpi/dsdt.c
4639
while (scope->pos >= scope->end && scope != iscope) {
sys/dev/acpi/dsdt.c
4641
scope = aml_popscope(scope);
sys/dev/acpi/dsdt.c
4643
if (scope->pos && scope->pos < scope->end)
sys/dev/acpi/dsdt.c
4648
dnprintf(50, ">>return [%s] %s %c %p\n", aml_nodename(scope->node),
sys/dev/acpi/dsdt.c
4659
struct aml_scope *scope;
sys/dev/acpi/dsdt.c
4676
scope = aml_pushscope(NULL, &res, &aml_root, AMLOP_SCOPE);
sys/dev/acpi/dsdt.c
4678
aml_parse(scope, 'T', "TopLevel");
sys/dev/acpi/dsdt.c
4680
aml_popscope(scope);
sys/dev/acpi/dsdt.c
770
aml_lockfield(struct aml_scope *scope, struct aml_value *field)
sys/dev/acpi/dsdt.c
779
aml_unlockfield(struct aml_scope *scope, struct aml_value *field)
sys/dev/acpi/dsdt.h
323
void aml_disasm(struct aml_scope *scope, int lvl,
sys/dev/microcode/aic7xxx/aicasm.c
459
dump_scope(scope_t *scope)
sys/dev/microcode/aic7xxx/aicasm.c
466
emit_patch(scope, 0);
sys/dev/microcode/aic7xxx/aicasm.c
471
cur_scope = TAILQ_FIRST(&scope->inner_scope);
sys/dev/microcode/aic7xxx/aicasm.c
483
emit_patch(scope, 1);
sys/dev/microcode/aic7xxx/aicasm.c
487
emit_patch(scope_t *scope, int patch)
sys/dev/microcode/aic7xxx/aicasm.c
492
pinfo = &scope->patches[patch];
sys/dev/microcode/aic7xxx/aicasm.c
506
new_patch->patch_func = scope->func_num;
sys/dev/microcode/aic7xxx/aicasm.c
507
new_patch->begin = scope->begin_addr;
sys/dev/microcode/aic7xxx/aicasm.c
510
new_patch->begin = scope->end_addr;
sys/dev/microcode/aic7xxx/aicasm.c
76
static void dump_scope(scope_t *scope);
sys/dev/microcode/aic7xxx/aicasm.c
77
static void emit_patch(scope_t *scope, int patch);
sys/dev/microcode/aic7xxx/aicasm.c
779
process_scope(scope_t *scope)
sys/dev/microcode/aic7xxx/aicasm.c
790
cur_scope = TAILQ_LAST(&scope->inner_scope, scope_tailq);
sys/dev/microcode/aic7xxx/aicasm.c
823
scope->inner_scope_patches += skip_patch_count;
sys/dev/microcode/aic7xxx/aicasm.h
95
struct scope *scope_alloc(void);
sys/dev/microcode/aic7xxx/aicasm.h
96
void process_scope(struct scope *);
sys/dev/microcode/aic7xxx/aicasm_symbol.h
172
SLIST_ENTRY(scope) scope_stack_links;
sys/dev/microcode/aic7xxx/aicasm_symbol.h
173
TAILQ_ENTRY(scope) scope_links;
sys/dev/microcode/aic7xxx/aicasm_symbol.h
174
TAILQ_HEAD(, scope) inner_scope;
sys/dev/microcode/aic7xxx/aicasm_symbol.h
184
SLIST_HEAD(scope_list, scope);
sys/dev/microcode/aic7xxx/aicasm_symbol.h
185
TAILQ_HEAD(scope_tailq, scope);
sys/dev/pci/drm/i915/i915_pmu.c
1187
pmu->base.scope = PERF_PMU_SCOPE_SYS_WIDE;
sys/dev/pci/if_bnxtreg.h
65706
uint8_t scope;
sys/netinet6/in6.c
1239
int scope;
sys/netinet6/in6.c
1242
scope = addr->s6_addr8[1] & 0xc0;
sys/netinet6/in6.c
1244
switch (scope) {
sys/netinet6/in6.c
1259
scope = addr->s6_addr8[1] & 0x0f;
sys/netinet6/in6.c
1265
switch (scope) {
sys/netinet6/in6.c
1294
int scope = in6_addrscope(addr);
sys/netinet6/in6.c
1296
switch(scope) {
usr.bin/dig/lib/dns/rdata/generic/opt_41.c
103
uint8_t scope;
usr.bin/dig/lib/dns/rdata/generic/opt_41.c
112
scope = uint8_fromregion(&sregion);
usr.bin/dig/lib/dns/rdata/generic/opt_41.c
126
if (addrlen != 0U || scope != 0U)
usr.bin/dig/lib/dns/rdata/generic/opt_41.c
130
if (addrlen > 32U || scope > 32U)
usr.bin/dig/lib/dns/rdata/generic/opt_41.c
134
if (addrlen > 128U || scope > 128U)
usr.bin/kdump/ktrstruct.c
103
char addr[INET6_ADDRSTRLEN], scope[12] = { 0 };
usr.bin/kdump/ktrstruct.c
109
snprintf(scope, sizeof(scope), "%%%u",
usr.bin/kdump/ktrstruct.c
111
printf("[%s%s]:%u", addr, scope, htons(sa_in6->sin6_port));
usr.bin/ldap/aldap.c
251
aldap_search(struct aldap *ldap, char *basedn, enum scope scope, char *filter,
usr.bin/ldap/aldap.c
269
ber = ober_printf_elements(ber, "sEEddb", basedn, (long long)scope,
usr.bin/ldap/aldap.c
794
lu->scope = LDAP_SCOPE_BASE;
usr.bin/ldap/aldap.c
796
lu->scope = LDAP_SCOPE_ONELEVEL;
usr.bin/ldap/aldap.c
798
lu->scope = LDAP_SCOPE_SUBTREE;
usr.bin/ldap/aldap.c
830
if (aldap_search(ldap, lu->dn, lu->scope, lu->filter, lu->attributes,
usr.bin/ldap/aldap.h
100
int scope;
usr.bin/ldap/aldap.h
225
int aldap_search(struct aldap *, char *, enum scope, char *, char **, int, int, int, struct aldap_page_control *);
usr.bin/ldap/ldapclient.c
688
lu->scope = -1;
usr.bin/ldap/ldapclient.c
730
if (lu->scope != -1) {
usr.bin/ldap/ldapclient.c
731
if (ls->ls_scope != -1 && (ls->ls_scope != lu->scope)) {
usr.bin/ldap/ldapclient.c
735
ls->ls_scope = lu->scope;
usr.bin/mandoc/mdoc_macro.c
767
int la, scope, cnt, firstarg, mayopen, nc, nl;
usr.bin/mandoc/mdoc_macro.c
800
for (cnt = scope = 0;; ) {
usr.bin/mandoc/mdoc_macro.c
840
if (scope)
usr.bin/mandoc/mdoc_macro.c
873
!cnt && !scope && nc && mayopen) {
usr.bin/mandoc/mdoc_macro.c
875
scope = 1;
usr.bin/mandoc/mdoc_macro.c
884
if (scope && tok != MDOC_Lk) {
usr.bin/mandoc/mdoc_macro.c
886
scope = 0;
usr.bin/mandoc/mdoc_macro.c
890
} else if (mayopen && !scope) {
usr.bin/mandoc/mdoc_macro.c
892
scope = 1;
usr.bin/mandoc/mdoc_macro.c
916
if (scope && tok == MDOC_Fl) {
usr.bin/mandoc/mdoc_macro.c
918
scope = 0;
usr.bin/mandoc/mdoc_macro.c
922
if (scope && tok != MDOC_Lk) {
usr.bin/mandoc/mdoc_macro.c
924
scope = 0;
usr.bin/mandoc/mdoc_macro.c
945
if (scope)
usr.bin/sndiod/dev.c
1786
switch (c->scope) {
usr.bin/sndiod/dev.c
1870
switch (c->scope) {
usr.bin/sndiod/dev.c
1934
switch (c->scope) {
usr.bin/sndiod/dev.c
1987
ctl_new(int scope, void *arg0, void *arg1,
usr.bin/sndiod/dev.c
2023
c->scope = scope;
usr.bin/sndiod/dev.c
2025
switch (scope) {
usr.bin/sndiod/dev.c
2088
ctl_match(struct ctl *c, int scope, void *arg0, void *arg1)
usr.bin/sndiod/dev.c
2090
if (c->type == CTL_NONE || c->scope != scope)
usr.bin/sndiod/dev.c
2094
switch (scope) {
usr.bin/sndiod/dev.c
2114
ctl_find(int scope, void *arg0, void *arg1)
usr.bin/sndiod/dev.c
2119
if (ctl_match(c, scope, arg0, arg1))
usr.bin/sndiod/dev.c
2126
ctl_onval(int scope, void *arg0, void *arg1, int val)
usr.bin/sndiod/dev.c
2130
c = ctl_find(scope, arg0, arg1);
usr.bin/sndiod/dev.c
2139
ctl_del(int scope, void *arg0, void *arg1)
usr.bin/sndiod/dev.c
2153
if (ctl_match(c, scope, arg0, arg1)) {
usr.bin/sndiod/dev.c
2180
if (c->scope == CTL_HW &&
usr.bin/sndiod/dev.c
2202
if (c->scope == CTL_HW &&
usr.bin/sndiod/dev.c
2228
if (c->scope != CTL_OPT_DEV ||
usr.bin/sndiod/dev.c
733
if (c->scope != CTL_HW || c->u.hw.dev != d)
usr.bin/sndiod/dev.h
130
unsigned int scope;
usr.bin/sndiod/dev_sioctl.c
138
if (c->scope == CTL_HW && c->u.hw.dev == d && c->dirty)
usr.bin/sndiod/dev_sioctl.c
171
if (c->scope != CTL_HW || c->u.hw.dev != d || !c->dirty)
usr.bin/sndiod/dev_sioctl.c
88
if (c->scope != CTL_HW || c->u.hw.dev != d ||
usr.bin/tmux/cmd-parse.y
169
if (ps->scope == NULL || ps->scope->flag)
usr.bin/tmux/cmd-parse.y
180
if (ps->scope == NULL || ps->scope->flag)
usr.bin/tmux/cmd-parse.y
229
struct cmd_parse_scope *scope;
usr.bin/tmux/cmd-parse.y
231
if (ps->scope != NULL) {
usr.bin/tmux/cmd-parse.y
232
flag = ps->scope->flag;
usr.bin/tmux/cmd-parse.y
233
TAILQ_FOREACH(scope, &ps->stack, entry)
usr.bin/tmux/cmd-parse.y
234
flag = flag && scope->flag;
usr.bin/tmux/cmd-parse.y
251
struct cmd_parse_scope *scope;
usr.bin/tmux/cmd-parse.y
253
if (ps->scope != NULL) {
usr.bin/tmux/cmd-parse.y
254
flag = ps->scope->flag;
usr.bin/tmux/cmd-parse.y
255
TAILQ_FOREACH(scope, &ps->stack, entry)
usr.bin/tmux/cmd-parse.y
256
flag = flag && scope->flag;
usr.bin/tmux/cmd-parse.y
271
struct cmd_parse_scope *scope;
usr.bin/tmux/cmd-parse.y
273
scope = xmalloc(sizeof *scope);
usr.bin/tmux/cmd-parse.y
274
$$ = scope->flag = format_true($2);
usr.bin/tmux/cmd-parse.y
277
if (ps->scope != NULL)
usr.bin/tmux/cmd-parse.y
278
TAILQ_INSERT_HEAD(&ps->stack, ps->scope, entry);
usr.bin/tmux/cmd-parse.y
279
ps->scope = scope;
usr.bin/tmux/cmd-parse.y
285
struct cmd_parse_scope *scope;
usr.bin/tmux/cmd-parse.y
287
scope = xmalloc(sizeof *scope);
usr.bin/tmux/cmd-parse.y
288
scope->flag = !ps->scope->flag;
usr.bin/tmux/cmd-parse.y
290
free(ps->scope);
usr.bin/tmux/cmd-parse.y
291
ps->scope = scope;
usr.bin/tmux/cmd-parse.y
297
struct cmd_parse_scope *scope;
usr.bin/tmux/cmd-parse.y
299
scope = xmalloc(sizeof *scope);
usr.bin/tmux/cmd-parse.y
300
$$ = scope->flag = format_true($2);
usr.bin/tmux/cmd-parse.y
303
free(ps->scope);
usr.bin/tmux/cmd-parse.y
304
ps->scope = scope;
usr.bin/tmux/cmd-parse.y
311
free(ps->scope);
usr.bin/tmux/cmd-parse.y
312
ps->scope = TAILQ_FIRST(&ps->stack);
usr.bin/tmux/cmd-parse.y
313
if (ps->scope != NULL)
usr.bin/tmux/cmd-parse.y
314
TAILQ_REMOVE(&ps->stack, ps->scope, entry);
usr.bin/tmux/cmd-parse.y
402
(ps->scope == NULL || ps->scope->flag))
usr.bin/tmux/cmd-parse.y
422
(ps->scope == NULL || ps->scope->flag)) {
usr.bin/tmux/cmd-parse.y
688
struct cmd_parse_scope *scope, *scope1;
usr.bin/tmux/cmd-parse.y
695
TAILQ_FOREACH_SAFE(scope, &ps->stack, entry, scope1) {
usr.bin/tmux/cmd-parse.y
696
TAILQ_REMOVE(&ps->stack, scope, entry);
usr.bin/tmux/cmd-parse.y
697
free(scope);
usr.bin/tmux/cmd-parse.y
87
struct cmd_parse_scope *scope;
usr.bin/tmux/cmd-set-option.c
146
int id, scope, flags = 0;
usr.bin/tmux/cmd-set-option.c
171
scope = options_scope_from_name(args, window, name, target, &oo,
usr.bin/tmux/cmd-set-option.c
173
if (scope == OPTIONS_TABLE_NONE) {
usr.bin/tmux/cmd-set-option.c
239
int scope;
usr.bin/tmux/cmd-set-option.c
282
scope = options_scope_from_name(args, window, name, target, &oo,
usr.bin/tmux/cmd-set-option.c
284
if (scope == OPTIONS_TABLE_NONE) {
usr.bin/tmux/cmd-set-option.c
321
if (args_has(args, 'U') && scope == OPTIONS_TABLE_WINDOW) {
usr.bin/tmux/cmd-show-options.c
104
scope = options_scope_from_flags(args, window, target, &oo,
usr.bin/tmux/cmd-show-options.c
106
if (scope == OPTIONS_TABLE_NONE) {
usr.bin/tmux/cmd-show-options.c
122
return (cmd_show_options_all(self, item, scope, oo));
usr.bin/tmux/cmd-show-options.c
136
scope = options_scope_from_name(args, window, name, target, &oo,
usr.bin/tmux/cmd-show-options.c
138
if (scope == OPTIONS_TABLE_NONE) {
usr.bin/tmux/cmd-show-options.c
341
cmd_show_options_all(struct cmd *self, struct cmdq_item *item, int scope,
usr.bin/tmux/cmd-show-options.c
372
if (~oe->scope & scope)
usr.bin/tmux/cmd-show-options.c
98
int window, ambiguous, parent, print_parent, scope;
usr.bin/tmux/options-table.c
1003
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1011
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1019
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1031
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1041
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1049
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1057
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1064
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1073
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1082
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1090
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1100
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1109
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1118
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1127
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1136
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1146
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1154
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1163
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1171
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1180
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1189
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1199
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1211
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1220
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1229
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1238
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1250
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1260
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1271
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1279
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1287
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1295
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1302
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1310
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1318
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1326
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1334
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1343
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1351
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1360
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1370
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1379
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1388
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1397
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1409
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1418
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1427
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1436
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1445
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1454
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1462
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1469
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1477
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1485
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1493
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1502
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1509
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1516
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1527
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1535
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1543
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1555
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1564
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1582
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1591
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1600
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1608
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1617
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1625
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1633
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1643
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1652
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1660
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1669
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1678
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1687
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1697
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1710
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1718
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1727
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1734
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1744
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1753
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1762
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1775
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1784
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1793
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1800
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1808
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1820
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1829
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1838
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1847
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1854
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1863
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1871
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1880
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1887
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1897
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1905
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
246
.scope = OPTIONS_TABLE_SESSION, \
usr.bin/tmux/options-table.c
256
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE, \
usr.bin/tmux/options-table.c
266
.scope = OPTIONS_TABLE_WINDOW, \
usr.bin/tmux/options-table.c
294
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
301
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
311
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
326
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
335
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
343
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
351
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
359
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
366
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
373
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
380
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
390
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
397
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
405
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
414
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
422
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
429
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
441
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
449
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
458
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
467
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
476
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
485
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
494
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
503
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
514
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
523
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
533
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
542
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
554
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
563
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
571
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
579
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
587
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
595
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
603
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
611
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
619
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
627
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
635
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
643
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
651
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
659
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
667
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
675
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
683
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
691
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
699
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
707
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
715
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
723
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
734
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
743
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
751
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
762
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
771
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
779
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
787
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
794
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
802
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
811
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
820
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
830
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
837
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
849
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
861
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
869
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
879
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
886
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
898
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
909
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
917
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
931
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
940
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
947
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
954
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
962
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
973
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
980
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
987
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
995
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options.c
1023
int scope = OPTIONS_TABLE_NONE;
usr.bin/tmux/options.c
1036
switch (oe->scope) {
usr.bin/tmux/options.c
1039
scope = OPTIONS_TABLE_SERVER;
usr.bin/tmux/options.c
1044
scope = OPTIONS_TABLE_SESSION;
usr.bin/tmux/options.c
1051
scope = OPTIONS_TABLE_SESSION;
usr.bin/tmux/options.c
1062
scope = OPTIONS_TABLE_PANE;
usr.bin/tmux/options.c
1070
scope = OPTIONS_TABLE_WINDOW;
usr.bin/tmux/options.c
1077
scope = OPTIONS_TABLE_WINDOW;
usr.bin/tmux/options.c
1081
return (scope);
usr.bin/tmux/tmux.c
521
if (oe->scope & OPTIONS_TABLE_SERVER)
usr.bin/tmux/tmux.c
523
if (oe->scope & OPTIONS_TABLE_SESSION)
usr.bin/tmux/tmux.c
525
if (oe->scope & OPTIONS_TABLE_WINDOW)
usr.bin/tmux/window-customize.c
1005
global = (scope == WINDOW_CUSTOMIZE_GLOBAL_ENVIRONMENT);
usr.bin/tmux/window-customize.c
1011
text = window_customize_scope_text(scope, fs);
usr.bin/tmux/window-customize.c
1041
item->scope = scope;
usr.bin/tmux/window-customize.c
118
enum window_customize_scope scope;
usr.bin/tmux/window-customize.c
1268
else if ((oe->scope & (OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE)) ==
usr.bin/tmux/window-customize.c
1271
else if (oe->scope & OPTIONS_TABLE_WINDOW)
usr.bin/tmux/window-customize.c
1273
else if (oe->scope & OPTIONS_TABLE_SESSION)
usr.bin/tmux/window-customize.c
1414
switch (item->scope) {
usr.bin/tmux/window-customize.c
1476
if (item->scope == WINDOW_CUSTOMIZE_GLOBAL_ENVIRONMENT)
usr.bin/tmux/window-customize.c
1503
if (item->scope != WINDOW_CUSTOMIZE_SESSION_ENVIRONMENT)
usr.bin/tmux/window-customize.c
172
window_customize_get_tree(enum window_customize_scope scope,
usr.bin/tmux/window-customize.c
175
switch (scope) {
usr.bin/tmux/window-customize.c
1784
enum window_customize_scope scope;
usr.bin/tmux/window-customize.c
1796
scope = WINDOW_CUSTOMIZE_GLOBAL_ENVIRONMENT;
usr.bin/tmux/window-customize.c
1799
scope = item->scope;
usr.bin/tmux/window-customize.c
1803
text = window_customize_scope_text(scope, &fs);
usr.bin/tmux/window-customize.c
1806
else if (scope == WINDOW_CUSTOMIZE_GLOBAL_ENVIRONMENT)
usr.bin/tmux/window-customize.c
1814
new_item->scope = scope;
usr.bin/tmux/window-customize.c
1890
struct window_customize_modedata *data, enum window_customize_scope scope,
usr.bin/tmux/window-customize.c
1904
new_item->scope = scope;
usr.bin/tmux/window-customize.c
1959
struct window_customize_modedata *data, enum window_customize_scope scope,
usr.bin/tmux/window-customize.c
1967
new_item->scope = scope;
usr.bin/tmux/window-customize.c
199
window_customize_get_environment(enum window_customize_scope scope,
usr.bin/tmux/window-customize.c
202
switch (scope) {
usr.bin/tmux/window-customize.c
2128
enum window_customize_scope scope = WINDOW_CUSTOMIZE_NONE;
usr.bin/tmux/window-customize.c
2142
if (oe != NULL && ~oe->scope & OPTIONS_TABLE_PANE)
usr.bin/tmux/window-customize.c
2145
scope = item->scope;
usr.bin/tmux/window-customize.c
2149
switch (item->scope) {
usr.bin/tmux/window-customize.c
2157
scope = item->scope;
usr.bin/tmux/window-customize.c
2160
scope = WINDOW_CUSTOMIZE_GLOBAL_SESSION;
usr.bin/tmux/window-customize.c
2164
scope = WINDOW_CUSTOMIZE_GLOBAL_WINDOW;
usr.bin/tmux/window-customize.c
2168
switch (item->scope) {
usr.bin/tmux/window-customize.c
2173
scope = item->scope;
usr.bin/tmux/window-customize.c
2178
scope = WINDOW_CUSTOMIZE_PANE;
usr.bin/tmux/window-customize.c
2180
scope = WINDOW_CUSTOMIZE_WINDOW;
usr.bin/tmux/window-customize.c
2183
scope = WINDOW_CUSTOMIZE_SESSION;
usr.bin/tmux/window-customize.c
2187
scope = WINDOW_CUSTOMIZE_PANE;
usr.bin/tmux/window-customize.c
2189
scope = WINDOW_CUSTOMIZE_WINDOW;
usr.bin/tmux/window-customize.c
2193
scope = item->scope;
usr.bin/tmux/window-customize.c
2197
if (scope == item->scope)
usr.bin/tmux/window-customize.c
2200
oo = window_customize_get_tree(scope, &fs);
usr.bin/tmux/window-customize.c
2214
text = window_customize_scope_text(scope, &fs);
usr.bin/tmux/window-customize.c
2217
else if (scope != WINDOW_CUSTOMIZE_SERVER)
usr.bin/tmux/window-customize.c
2237
new_item->scope = scope;
usr.bin/tmux/window-customize.c
227
window_customize_get_environment(item->scope, fsp));
usr.bin/tmux/window-customize.c
229
return (item->oo == window_customize_get_tree(item->scope, fsp));
usr.bin/tmux/window-customize.c
2320
new_item->scope = item->scope;
usr.bin/tmux/window-customize.c
2472
new_item->scope = item->scope;
usr.bin/tmux/window-customize.c
2489
new_item->scope = item->scope;
usr.bin/tmux/window-customize.c
254
window_customize_scope_text(enum window_customize_scope scope,
usr.bin/tmux/window-customize.c
2578
new_item->scope = WINDOW_CUSTOMIZE_KEY;
usr.bin/tmux/window-customize.c
260
switch (scope) {
usr.bin/tmux/window-customize.c
370
new_item->scope = item->scope;
usr.bin/tmux/window-customize.c
624
struct mode_tree_item *top, enum window_customize_scope scope,
usr.bin/tmux/window-customize.c
654
item->scope = scope;
usr.bin/tmux/window-customize.c
675
struct mode_tree_item *top, enum window_customize_scope scope,
usr.bin/tmux/window-customize.c
710
if (scope == WINDOW_CUSTOMIZE_SERVER ||
usr.bin/tmux/window-customize.c
711
scope == WINDOW_CUSTOMIZE_GLOBAL_SESSION ||
usr.bin/tmux/window-customize.c
712
scope == WINDOW_CUSTOMIZE_GLOBAL_WINDOW)
usr.bin/tmux/window-customize.c
725
text = window_customize_scope_text(scope, fs);
usr.bin/tmux/window-customize.c
762
item->scope = scope;
usr.bin/tmux/window-customize.c
775
return (1 + window_customize_build_array(data, top, scope, o, ft));
usr.bin/tmux/window-customize.c
821
enum window_customize_scope scope;
usr.bin/tmux/window-customize.c
847
scope = scope2;
usr.bin/tmux/window-customize.c
849
scope = scope1;
usr.bin/tmux/window-customize.c
851
scope = scope0;
usr.bin/tmux/window-customize.c
852
count += window_customize_build_option(data, top, scope, o, ft,
usr.bin/tmux/window-customize.c
871
scope = scope2;
usr.bin/tmux/window-customize.c
873
scope = scope1;
usr.bin/tmux/window-customize.c
875
scope = scope0;
usr.bin/tmux/window-customize.c
876
count += window_customize_build_option(data, top, scope, o, ft,
usr.bin/tmux/window-customize.c
936
item->scope = WINDOW_CUSTOMIZE_KEY;
usr.bin/tmux/window-customize.c
988
const char *title, uint64_t tag, enum window_customize_scope scope,
usr.sbin/bgpd/session.c
943
struct bgpd_addr *alt, unsigned int *scope)
usr.sbin/bgpd/session.c
983
*scope = if_nametoindex(match->ifa_name);
usr.sbin/bgpd/session.c
985
*scope = 0;
usr.sbin/ldapd/auth.c
115
char *attr, int scope)
usr.sbin/ldapd/auth.c
144
attr, scope)) {
usr.sbin/ldapd/auth.c
160
attr, scope)) {
usr.sbin/ldapd/auth.c
36
char *dn, int rights, char *attr, enum scope scope)
usr.sbin/ldapd/auth.c
50
if (scope == LDAP_SCOPE_BASE) {
usr.sbin/ldapd/auth.c
51
switch (aci->scope) {
usr.sbin/ldapd/auth.c
65
} else if (scope == LDAP_SCOPE_ONELEVEL) {
usr.sbin/ldapd/auth.c
66
switch (aci->scope) {
usr.sbin/ldapd/auth.c
78
} else if (scope == LDAP_SCOPE_SUBTREE) {
usr.sbin/ldapd/auth.c
79
switch (aci->scope) {
usr.sbin/ldapd/ldapd.h
190
long long scope;
usr.sbin/ldapd/ldapd.h
454
int rights, char *dn, char *attr, int scope);
usr.sbin/ldapd/ldapd.h
73
enum scope scope; /* base, onelevel or subtree */
usr.sbin/ldapd/ldape.c
129
if (search->scope != LDAP_SCOPE_SUBTREE)
usr.sbin/ldapd/parse.y
103
static struct aci *mk_aci(int type, int rights, enum scope scope,
usr.sbin/ldapd/parse.y
1174
mk_aci(int type, int rights, enum scope scope, char *target, char *attr,
usr.sbin/ldapd/parse.y
1185
aci->scope = scope;
usr.sbin/ldapd/parse.y
1196
aci->scope,
usr.sbin/ldapd/search.c
225
if (search->scope == LDAP_SCOPE_ONELEVEL &&
usr.sbin/ldapd/search.c
400
if (search->scope == LDAP_SCOPE_ONELEVEL &&
usr.sbin/ldapd/search.c
875
&search->scope,
usr.sbin/ldapd/search.c
888
log_debug("base dn = %s, scope = %lld", search->basedn, search->scope);
usr.sbin/ldapd/search.c
897
if (search->scope != LDAP_SCOPE_BASE) {
usr.sbin/ldapd/search.c
914
if (search->scope != LDAP_SCOPE_BASE) {
usr.sbin/ldapd/search.c
939
search->basedn, NULL, search->scope)) {
usr.sbin/ldapd/search.c
959
if (search->scope == LDAP_SCOPE_BASE) {
usr.sbin/ldapd/search.c
995
if (!search->plan->indexed && search->scope == LDAP_SCOPE_ONELEVEL) {
usr.sbin/ospf6ctl/ospf6ctl.c
1312
printf("%s", log_in6addr_scope(&k->nexthop, k->scope));
usr.sbin/ospf6d/kroute.c
1162
nexthop.addr.sin6_scope_id = kroute->scope;
usr.sbin/ospf6d/kroute.c
1353
unsigned int scope;
usr.sbin/ospf6d/kroute.c
1370
scope = 0;
usr.sbin/ospf6d/kroute.c
1449
scope = sa_in6->sin6_scope_id;
usr.sbin/ospf6d/kroute.c
1473
(kr = kroute_matchgw(okr, &nexthop, scope)) ==
usr.sbin/ospf6d/kroute.c
1484
kr->r.scope = scope;
usr.sbin/ospf6d/kroute.c
1517
kr->r.scope = scope;
usr.sbin/ospf6d/kroute.c
1554
scope)) == NULL) {
usr.sbin/ospf6d/kroute.c
199
if (kn->r.scope == kroute[i].scope &&
usr.sbin/ospf6d/kroute.c
229
if (kn->r.scope == kroute[i].scope &&
usr.sbin/ospf6d/kroute.c
254
kn->r.scope = kroute[i].scope;
usr.sbin/ospf6d/kroute.c
720
kroute_matchgw(struct kroute_node *kr, struct in6_addr *nh, unsigned int scope)
usr.sbin/ospf6d/kroute.c
723
if (scope == kr->r.scope &&
usr.sbin/ospf6d/ospf6d.h
403
unsigned int scope; /* scope of nexthop */
usr.sbin/ospf6d/rde.c
877
kr.scope = rn->ifindex;
usr.sbin/rpki-client/rrdp_delta.c
101
if (dxml->scope == DELTA_SCOPE_EMPTY_DELTA)
usr.sbin/rpki-client/rrdp_delta.c
103
if (dxml->scope != DELTA_SCOPE_DELTA)
usr.sbin/rpki-client/rrdp_delta.c
106
dxml->scope = DELTA_SCOPE_END;
usr.sbin/rpki-client/rrdp_delta.c
118
if (dxml->scope != DELTA_SCOPE_EMPTY_DELTA &&
usr.sbin/rpki-client/rrdp_delta.c
119
dxml->scope != DELTA_SCOPE_DELTA)
usr.sbin/rpki-client/rrdp_delta.c
154
dxml->scope = DELTA_SCOPE_PUBLISH;
usr.sbin/rpki-client/rrdp_delta.c
162
if (dxml->scope != DELTA_SCOPE_PUBLISH)
usr.sbin/rpki-client/rrdp_delta.c
170
dxml->scope = DELTA_SCOPE_DELTA;
usr.sbin/rpki-client/rrdp_delta.c
224
if (dxml->scope == DELTA_SCOPE_PUBLISH)
usr.sbin/rpki-client/rrdp_delta.c
48
enum delta_scope scope;
usr.sbin/rpki-client/rrdp_delta.c
58
if (dxml->scope != DELTA_SCOPE_NONE)
usr.sbin/rpki-client/rrdp_delta.c
93
dxml->scope = DELTA_SCOPE_EMPTY_DELTA;
usr.sbin/rpki-client/rrdp_notification.c
164
if (nxml->scope != NOTIFICATION_SCOPE_START)
usr.sbin/rpki-client/rrdp_notification.c
200
nxml->scope = NOTIFICATION_SCOPE_NOTIFICATION;
usr.sbin/rpki-client/rrdp_notification.c
208
if (nxml->scope != NOTIFICATION_SCOPE_NOTIFICATION_POST_SNAPSHOT)
usr.sbin/rpki-client/rrdp_notification.c
211
nxml->scope = NOTIFICATION_SCOPE_END;
usr.sbin/rpki-client/rrdp_notification.c
223
if (nxml->scope != NOTIFICATION_SCOPE_NOTIFICATION)
usr.sbin/rpki-client/rrdp_notification.c
246
nxml->scope = NOTIFICATION_SCOPE_SNAPSHOT;
usr.sbin/rpki-client/rrdp_notification.c
254
if (nxml->scope != NOTIFICATION_SCOPE_SNAPSHOT)
usr.sbin/rpki-client/rrdp_notification.c
257
nxml->scope = NOTIFICATION_SCOPE_NOTIFICATION_POST_SNAPSHOT;
usr.sbin/rpki-client/rrdp_notification.c
269
if (nxml->scope != NOTIFICATION_SCOPE_NOTIFICATION_POST_SNAPSHOT)
usr.sbin/rpki-client/rrdp_notification.c
311
nxml->scope = NOTIFICATION_SCOPE_DELTA;
usr.sbin/rpki-client/rrdp_notification.c
319
if (nxml->scope != NOTIFICATION_SCOPE_DELTA)
usr.sbin/rpki-client/rrdp_notification.c
321
nxml->scope = NOTIFICATION_SCOPE_NOTIFICATION_POST_SNAPSHOT;
usr.sbin/rpki-client/rrdp_notification.c
65
enum notification_scope scope;
usr.sbin/rpki-client/rrdp_snapshot.c
101
if (sxml->scope != SNAPSHOT_SCOPE_SNAPSHOT)
usr.sbin/rpki-client/rrdp_snapshot.c
104
sxml->scope = SNAPSHOT_SCOPE_END;
usr.sbin/rpki-client/rrdp_snapshot.c
114
if (sxml->scope != SNAPSHOT_SCOPE_SNAPSHOT)
usr.sbin/rpki-client/rrdp_snapshot.c
140
sxml->scope = SNAPSHOT_SCOPE_PUBLISH;
usr.sbin/rpki-client/rrdp_snapshot.c
148
if (sxml->scope != SNAPSHOT_SCOPE_PUBLISH)
usr.sbin/rpki-client/rrdp_snapshot.c
156
sxml->scope = SNAPSHOT_SCOPE_SNAPSHOT;
usr.sbin/rpki-client/rrdp_snapshot.c
202
if (sxml->scope == SNAPSHOT_SCOPE_PUBLISH)
usr.sbin/rpki-client/rrdp_snapshot.c
257
logx("scope: %d", sxml->scope);
usr.sbin/rpki-client/rrdp_snapshot.c
46
enum snapshot_scope scope;
usr.sbin/rpki-client/rrdp_snapshot.c
56
if (sxml->scope != SNAPSHOT_SCOPE_NONE)
usr.sbin/rpki-client/rrdp_snapshot.c
93
sxml->scope = SNAPSHOT_SCOPE_SNAPSHOT;
usr.sbin/tcpdump/print-ospf6.c
122
char *scope;
usr.sbin/tcpdump/print-ospf6.c
126
scope = "linklocal-";
usr.sbin/tcpdump/print-ospf6.c
129
scope = "area-";
usr.sbin/tcpdump/print-ospf6.c
132
scope = "AS-";
usr.sbin/tcpdump/print-ospf6.c
135
scope = "";
usr.sbin/tcpdump/print-ospf6.c
141
printf(" %srtr %s", scope, ipaddr_string(ls_router));
usr.sbin/tcpdump/print-ospf6.c
145
printf(" %snet dr %s if %s", scope,
usr.sbin/tcpdump/print-ospf6.c
151
printf(" %sinter-area-prefix %s abr %s", scope,
usr.sbin/tcpdump/print-ospf6.c
157
printf(" %sinter-area-router %s rtr %s", scope,
usr.sbin/tcpdump/print-ospf6.c
163
printf(" %sase %s asbr %s", scope,
usr.sbin/tcpdump/print-ospf6.c
169
printf(" %sgroup %s rtr %s", scope,
usr.sbin/tcpdump/print-ospf6.c
175
printf(" %stype7 %s rtr %s", scope,
usr.sbin/tcpdump/print-ospf6.c
181
printf(" %slink %s rtr %s", scope,
usr.sbin/tcpdump/print-ospf6.c
187
printf(" %sintra-area-prefix %s rtr %s", scope,
usr.sbin/tcpdump/print-ospf6.c
193
printf(" %s", scope);
usr.sbin/unbound/daemon/remote.c
1810
addrkey_t* addr, size_t addr_size, int is_ipv6, addrlen_t scope,
usr.sbin/unbound/daemon/remote.c
1845
(int)scope, (only_match_scope_zero?" scope_zero":""),
usr.sbin/unbound/daemon/remote.c
1910
n->scope, n->only_match_scope_zero, n->ttl, arg);
usr.sbin/unbound/edns-subnet/addrtree.c
362
addrlen_t sourcemask, addrlen_t scope, void *elem, time_t ttl,
usr.sbin/unbound/edns-subnet/addrtree.c
374
if (tree->max_depth < scope) scope = tree->max_depth;
usr.sbin/unbound/edns-subnet/addrtree.c
376
if (scope < sourcemask) sourcemask = scope;
usr.sbin/unbound/edns-subnet/addrtree.c
388
node->scope = scope;
usr.sbin/unbound/edns-subnet/addrtree.c
404
newnode = node_create(tree, elem, scope, ttl);
usr.sbin/unbound/edns-subnet/addrtree.c
425
node->scope = scope;
usr.sbin/unbound/edns-subnet/addrtree.c
451
newnode->scope = scope;
usr.sbin/unbound/edns-subnet/addrtree.c
461
newnode = node_create(tree, elem, scope, ttl);
usr.sbin/unbound/edns-subnet/addrtree.c
493
log_assert(node->scope >= depth);
usr.sbin/unbound/edns-subnet/addrtree.c
494
if (depth == node->scope ||
usr.sbin/unbound/edns-subnet/addrtree.c
495
(node->scope > sourcemask &&
usr.sbin/unbound/edns-subnet/addrtree.c
90
node_create(struct addrtree *tree, void *elem, addrlen_t scope,
usr.sbin/unbound/edns-subnet/addrtree.c
98
node->scope = scope;
usr.sbin/unbound/edns-subnet/addrtree.h
168
addrlen_t sourcemask, addrlen_t scope, void *elem, time_t ttl,
usr.sbin/unbound/edns-subnet/addrtree.h
97
addrlen_t scope;
usr.sbin/unbound/edns-subnet/subnetmod.c
538
uint8_t scope;
usr.sbin/unbound/edns-subnet/subnetmod.c
575
scope = (uint8_t)node->scope;
usr.sbin/unbound/edns-subnet/subnetmod.c
595
sq->ecs_client_out.subnet_scope_mask = scope;
usr.sbin/unbound/sldns/wire2str.c
2247
uint8_t source, scope;
usr.sbin/unbound/sldns/wire2str.c
2255
scope = data[3];
usr.sbin/unbound/sldns/wire2str.c
2302
w += sldns_str_print(s, sl, "/%d scope /%d", (int)source, (int)scope);
usr.sbin/ypldap/aldap.c
287
aldap_search(struct aldap *ldap, char *basedn, enum scope scope, char *filter,
usr.sbin/ypldap/aldap.c
305
ber = ober_printf_elements(ber, "sEEddb", basedn, (long long)scope,
usr.sbin/ypldap/aldap.c
830
lu->scope = LDAP_SCOPE_BASE;
usr.sbin/ypldap/aldap.c
832
lu->scope = LDAP_SCOPE_ONELEVEL;
usr.sbin/ypldap/aldap.c
834
lu->scope = LDAP_SCOPE_SUBTREE;
usr.sbin/ypldap/aldap.c
866
if (aldap_search(ldap, lu->dn, lu->scope, lu->filter, lu->attributes,
usr.sbin/ypldap/aldap.h
103
int scope;
usr.sbin/ypldap/aldap.h
230
int aldap_search(struct aldap *, char *, enum scope, char *, char **, int, int, int, struct aldap_page_control *);