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
strlcat(buf, scope, 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
787
lu->scope = LDAP_SCOPE_BASE;
libexec/login_ldap/aldap.c
789
lu->scope = LDAP_SCOPE_ONELEVEL;
libexec/login_ldap/aldap.c
791
lu->scope = LDAP_SCOPE_SUBTREE;
libexec/login_ldap/aldap.c
823
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
2246
uint8_t source, scope;
sbin/unwind/libunbound/sldns/wire2str.c
2254
scope = data[3];
sbin/unwind/libunbound/sldns/wire2str.c
2301
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
253
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
1297
int opcode = (scope->pos[0]);
sys/dev/acpi/dsdt.c
1298
int twocode = (scope->pos[0]<<8) + scope->pos[1];
sys/dev/acpi/dsdt.c
1313
scope->pos += 2;
sys/dev/acpi/dsdt.c
1316
scope->pos += 1;
sys/dev/acpi/dsdt.c
1394
aml_parselength(struct aml_scope *scope)
sys/dev/acpi/dsdt.c
1399
lcode = *(scope->pos++);
sys/dev/acpi/dsdt.c
1405
len += *(scope->pos++) << 4L;
sys/dev/acpi/dsdt.c
1407
len += *(scope->pos++) << 12L;
sys/dev/acpi/dsdt.c
1409
len += *(scope->pos++) << 20L;
sys/dev/acpi/dsdt.c
1415
aml_parseend(struct aml_scope *scope)
sys/dev/acpi/dsdt.c
1417
uint8_t *pos = scope->pos;
sys/dev/acpi/dsdt.c
1420
len = aml_parselength(scope);
sys/dev/acpi/dsdt.c
1421
if (pos+len > scope->end) {
sys/dev/acpi/dsdt.c
1425
aml_pc(scope->end));
sys/dev/acpi/dsdt.c
1426
return scope->end;
sys/dev/acpi/dsdt.c
1497
aml_callosi(struct aml_scope *scope, struct aml_value *val)
sys/dev/acpi/dsdt.c
1502
fa = aml_getstack(scope, AMLOP_ARG0);
sys/dev/acpi/dsdt.c
1816
aml_findscope(struct aml_scope *scope, int type, int endscope)
sys/dev/acpi/dsdt.c
1818
while (scope) {
sys/dev/acpi/dsdt.c
1821
scope->pos = scope->end;
sys/dev/acpi/dsdt.c
1822
if (scope->type == AMLOP_WHILE)
sys/dev/acpi/dsdt.c
1823
scope->pos = NULL;
sys/dev/acpi/dsdt.c
1826
scope->pos = scope->end;
sys/dev/acpi/dsdt.c
1829
scope->pos = scope->end;
sys/dev/acpi/dsdt.c
1830
if (scope->type == type)
sys/dev/acpi/dsdt.c
1831
scope->parent->pos = scope->end;
sys/dev/acpi/dsdt.c
1834
if (scope->type == type)
sys/dev/acpi/dsdt.c
1836
scope = scope->parent;
sys/dev/acpi/dsdt.c
1838
return scope;
sys/dev/acpi/dsdt.c
1842
aml_getstack(struct aml_scope *scope, int opcode)
sys/dev/acpi/dsdt.c
1847
scope = aml_findscope(scope, AMLOP_METHOD, 0);
sys/dev/acpi/dsdt.c
1848
if (scope == NULL)
sys/dev/acpi/dsdt.c
1851
if (scope->locals == NULL)
sys/dev/acpi/dsdt.c
1852
scope->locals = aml_allocvalue(AML_OBJTYPE_PACKAGE, 8, NULL);
sys/dev/acpi/dsdt.c
1853
sp = scope->locals->v_package[opcode - AMLOP_LOCAL0];
sys/dev/acpi/dsdt.c
1856
if (scope->args == NULL)
sys/dev/acpi/dsdt.c
1857
scope->args = aml_allocvalue(AML_OBJTYPE_PACKAGE, 7, NULL);
sys/dev/acpi/dsdt.c
1858
sp = scope->args->v_package[opcode - AMLOP_ARG0];
sys/dev/acpi/dsdt.c
1868
aml_showstack(struct aml_scope *scope)
sys/dev/acpi/dsdt.c
1873
dnprintf(10, "===== Stack %s:%s\n", aml_nodename(scope->node),
sys/dev/acpi/dsdt.c
1874
aml_mnem(scope->type, 0));
sys/dev/acpi/dsdt.c
1875
for (idx=0; scope->args && idx<7; idx++) {
sys/dev/acpi/dsdt.c
1876
sp = aml_getstack(scope, AMLOP_ARG0+idx);
sys/dev/acpi/dsdt.c
1882
for (idx=0; scope->locals && idx<8; idx++) {
sys/dev/acpi/dsdt.c
1883
sp = aml_getstack(scope, AMLOP_LOCAL0+idx);
sys/dev/acpi/dsdt.c
1897
struct aml_scope *scope;
sys/dev/acpi/dsdt.c
1909
scope = acpi_os_malloc(sizeof(struct aml_scope));
sys/dev/acpi/dsdt.c
1910
if (scope == NULL)
sys/dev/acpi/dsdt.c
1913
scope->node = node;
sys/dev/acpi/dsdt.c
1914
scope->start = start;
sys/dev/acpi/dsdt.c
1915
scope->end = end;
sys/dev/acpi/dsdt.c
1916
scope->pos = scope->start;
sys/dev/acpi/dsdt.c
1917
scope->parent = parent;
sys/dev/acpi/dsdt.c
1918
scope->type = type;
sys/dev/acpi/dsdt.c
1919
scope->sc = acpi_softc;
sys/dev/acpi/dsdt.c
1922
scope->depth = parent->depth+1;
sys/dev/acpi/dsdt.c
1924
aml_lastscope = scope;
sys/dev/acpi/dsdt.c
1926
return scope;
sys/dev/acpi/dsdt.c
1931
aml_popscope(struct aml_scope *scope)
sys/dev/acpi/dsdt.c
1935
if (scope == NULL)
sys/dev/acpi/dsdt.c
1938
nscope = scope->parent;
sys/dev/acpi/dsdt.c
1940
if (scope->type == AMLOP_METHOD)
sys/dev/acpi/dsdt.c
1941
aml_delchildren(scope->node);
sys/dev/acpi/dsdt.c
1942
if (scope->locals) {
sys/dev/acpi/dsdt.c
1943
aml_freevalue(scope->locals);
sys/dev/acpi/dsdt.c
1944
acpi_os_free(scope->locals);
sys/dev/acpi/dsdt.c
1945
scope->locals = NULL;
sys/dev/acpi/dsdt.c
1947
if (scope->args) {
sys/dev/acpi/dsdt.c
1948
aml_freevalue(scope->args);
sys/dev/acpi/dsdt.c
1949
acpi_os_free(scope->args);
sys/dev/acpi/dsdt.c
1950
scope->args = NULL;
sys/dev/acpi/dsdt.c
1952
acpi_os_free(scope);
sys/dev/acpi/dsdt.c
3027
acpi_mutex_acquire(struct aml_scope *scope, struct aml_value *mtx,
sys/dev/acpi/dsdt.c
3030
if (mtx->v_mtx.owner == NULL || scope == mtx->v_mtx.owner) {
sys/dev/acpi/dsdt.c
3032
mtx->v_mtx.owner = scope;
sys/dev/acpi/dsdt.c
3037
dnprintf(5,"%s acquires mutex %s\n", scope->node->name,
sys/dev/acpi/dsdt.c
3048
acpi_mutex_release(struct aml_scope *scope, struct aml_value *mtx)
sys/dev/acpi/dsdt.c
3054
dnprintf(5, "%s releases mutex %s\n", scope->node->name,
sys/dev/acpi/dsdt.c
3061
acpi_event_wait(struct aml_scope *scope, struct aml_value *evt, int timeout)
sys/dev/acpi/dsdt.c
3086
acpi_event_signal(struct aml_scope *scope, struct aml_value *evt)
sys/dev/acpi/dsdt.c
3094
acpi_event_reset(struct aml_scope *scope, struct aml_value *evt)
sys/dev/acpi/dsdt.c
3101
aml_store(struct aml_scope *scope, struct aml_value *lhs , int64_t ival,
sys/dev/acpi/dsdt.c
3169
node = __aml_searchname(scope->node,
sys/dev/acpi/dsdt.c
3214
aml_disasm(struct aml_scope *scope, int lvl,
sys/dev/acpi/dsdt.c
3231
pc = aml_pc(scope->pos);
sys/dev/acpi/dsdt.c
3232
opcode = aml_parseopcode(scope);
sys/dev/acpi/dsdt.c
3245
scope->pos = aml_parsename(scope->node, scope->pos, &rv, 0);
sys/dev/acpi/dsdt.c
3412
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3416
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3420
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3424
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3428
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3432
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3436
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3440
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3444
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3448
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3452
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3481
aml_parsesimple(scope, c, &tmp);
sys/dev/acpi/dsdt.c
3485
dbprintf(arg, "\'%s\'", scope->pos);
sys/dev/acpi/dsdt.c
3486
scope->pos += strlen(scope->pos)+1;
sys/dev/acpi/dsdt.c
3490
rv = aml_parsesimple(scope, c, NULL);
sys/dev/acpi/dsdt.c
3499
printf("%s", aml_getname(scope->pos));
sys/dev/acpi/dsdt.c
3500
scope->pos = aml_parsename(scope->node, scope->pos,
sys/dev/acpi/dsdt.c
3507
aml_disasm(scope, lvl | 0x8000, dbprintf, arg);
sys/dev/acpi/dsdt.c
3511
scope->pos = end;
sys/dev/acpi/dsdt.c
3516
ms.node = scope->node;
sys/dev/acpi/dsdt.c
3517
ms.start = scope->pos;
sys/dev/acpi/dsdt.c
3539
dbprintf(arg,"%.4x ", aml_pc(scope->pos));
sys/dev/acpi/dsdt.c
3543
scope->pos = end;
sys/dev/acpi/dsdt.c
3548
ms.node = scope->node;
sys/dev/acpi/dsdt.c
3549
ms.start = scope->pos;
sys/dev/acpi/dsdt.c
3560
dbprintf(arg,"%.4x ", aml_pc(scope->pos));
sys/dev/acpi/dsdt.c
3564
scope->pos = end;
sys/dev/acpi/dsdt.c
3579
aml_eval(struct aml_scope *scope, struct aml_value *my_ret, int ret_type,
sys/dev/acpi/dsdt.c
3588
my_ret = aml_seterror(scope, "Undefined name: %s",
sys/dev/acpi/dsdt.c
3596
ms = aml_pushscope(scope, tmp, tmp->node, AMLOP_METHOD);
sys/dev/acpi/dsdt.c
3607
sp->v_objref.ref = aml_parse(scope, 't', "ARGX");
sys/dev/acpi/dsdt.c
3757
aml_parsesimple(struct aml_scope *scope, char ch, struct aml_value *rv)
sys/dev/acpi/dsdt.c
3770
aml_get8(scope->pos), NULL);
sys/dev/acpi/dsdt.c
3771
scope->pos += 1;
sys/dev/acpi/dsdt.c
3775
aml_get16(scope->pos), NULL);
sys/dev/acpi/dsdt.c
3776
scope->pos += 2;
sys/dev/acpi/dsdt.c
3780
aml_get32(scope->pos), NULL);
sys/dev/acpi/dsdt.c
3781
scope->pos += 4;
sys/dev/acpi/dsdt.c
3785
aml_get64(scope->pos), NULL);
sys/dev/acpi/dsdt.c
3786
scope->pos += 8;
sys/dev/acpi/dsdt.c
3789
_aml_setvalue(rv, AML_OBJTYPE_STRING, -1, scope->pos);
sys/dev/acpi/dsdt.c
3790
scope->pos += rv->length+1;
sys/dev/acpi/dsdt.c
3830
aml_seterror(struct aml_scope *scope, const char *fmt, ...)
sys/dev/acpi/dsdt.c
3835
printf("### AML PARSE ERROR (0x%x): ", aml_pc(scope->pos));
sys/dev/acpi/dsdt.c
3840
while (scope) {
sys/dev/acpi/dsdt.c
3841
scope->pos = scope->end;
sys/dev/acpi/dsdt.c
3842
scope = scope->parent;
sys/dev/acpi/dsdt.c
3879
aml_load(struct acpi_softc *sc, struct aml_scope *scope,
sys/dev/acpi/dsdt.c
3907
return aml_pushscope(scope, &tmp, scope->node,
sys/dev/acpi/dsdt.c
3916
aml_parse(struct aml_scope *scope, int ret_type, const char *stype)
sys/dev/acpi/dsdt.c
3928
if (scope == NULL || scope->pos >= scope->end) {
sys/dev/acpi/dsdt.c
3938
iscope = scope;
sys/dev/acpi/dsdt.c
3941
start = scope->pos;
sys/dev/acpi/dsdt.c
3942
pc = aml_pc(scope->pos);
sys/dev/acpi/dsdt.c
3943
aml_debugger(scope);
sys/dev/acpi/dsdt.c
3945
opcode = aml_parseopcode(scope);
sys/dev/acpi/dsdt.c
3951
dnprintf(18,"%.4x %s\n", pc, aml_mnem(opcode, scope->pos));
sys/dev/acpi/dsdt.c
3960
end = aml_parseend(scope);
sys/dev/acpi/dsdt.c
3964
ch = (*end == AMLOP_ELSE && end < scope->end) ?
sys/dev/acpi/dsdt.c
3974
if (*ch == 'r' && *scope->pos == AMLOP_ZERO) {
sys/dev/acpi/dsdt.c
3977
scope->pos++;
sys/dev/acpi/dsdt.c
3980
rv = aml_parse(scope, *ch, htab->mnem);
sys/dev/acpi/dsdt.c
3992
rv->v_buffer = scope->pos;
sys/dev/acpi/dsdt.c
3993
rv->length = end - scope->pos;
sys/dev/acpi/dsdt.c
3994
scope->pos = end;
sys/dev/acpi/dsdt.c
4001
scope->pos = aml_parsename(scope->node, scope->pos,
sys/dev/acpi/dsdt.c
4005
scope->pos = aml_parsename(scope->node, scope->pos,
sys/dev/acpi/dsdt.c
4015
rv = aml_parsesimple(scope, *ch, NULL);
sys/dev/acpi/dsdt.c
4019
rv = aml_getstack(scope, opcode);
sys/dev/acpi/dsdt.c
4058
if (scope->type == AMLOP_PACKAGE && my_ret->node) {
sys/dev/acpi/dsdt.c
4070
my_ret = aml_eval(scope, my_ret, ret_type, 0, NULL);
sys/dev/acpi/dsdt.c
4103
mscope = aml_pushscope(scope, opargs[1], scope->node,
sys/dev/acpi/dsdt.c
4133
aml_store(scope, opargs[2], ival, NULL);
sys/dev/acpi/dsdt.c
4138
my_ret = aml_seterror(scope, "Divide by Zero!");
sys/dev/acpi/dsdt.c
4145
aml_store(scope, opargs[2], rem, NULL);
sys/dev/acpi/dsdt.c
4146
aml_store(scope, opargs[3], ival, NULL);
sys/dev/acpi/dsdt.c
4155
aml_store(scope, opargs[1], ival, NULL);
sys/dev/acpi/dsdt.c
4160
my_ret = aml_eval(scope, opargs[0], AML_ARG_INTEGER, 0, NULL);
sys/dev/acpi/dsdt.c
4162
aml_store(scope, opargs[0], ival, NULL);
sys/dev/acpi/dsdt.c
4193
aml_store(scope, opargs[1], 0, rv);
sys/dev/acpi/dsdt.c
4245
aml_store(scope, opargs[2], ival, my_ret);
sys/dev/acpi/dsdt.c
4266
aml_store(scope, opargs[1], 0, opargs[0]);
sys/dev/acpi/dsdt.c
4273
aml_store(scope, opargs[1], 0, my_ret);
sys/dev/acpi/dsdt.c
4278
aml_store(scope, opargs[1], 0, my_ret);
sys/dev/acpi/dsdt.c
4283
aml_store(scope, opargs[1], 0, my_ret);
sys/dev/acpi/dsdt.c
4288
aml_store(scope, opargs[1], 0, my_ret);
sys/dev/acpi/dsdt.c
4294
aml_store(scope, opargs[2], 0, my_ret);
sys/dev/acpi/dsdt.c
4299
aml_store(scope, opargs[2], 0, my_ret);
sys/dev/acpi/dsdt.c
4304
aml_store(scope, opargs[2], 0, my_ret);
sys/dev/acpi/dsdt.c
4310
aml_store(scope, opargs[3], 0, my_ret);
sys/dev/acpi/dsdt.c
4333
ival = acpi_mutex_acquire(scope, rv,
sys/dev/acpi/dsdt.c
4339
acpi_mutex_release(scope, rv);
sys/dev/acpi/dsdt.c
4344
ival = acpi_event_wait(scope, rv,
sys/dev/acpi/dsdt.c
4350
acpi_event_reset(scope, rv);
sys/dev/acpi/dsdt.c
4355
acpi_event_signal(scope, rv);
sys/dev/acpi/dsdt.c
4404
mscope = aml_pushscope(scope, opargs[1], rv->node, opcode);
sys/dev/acpi/dsdt.c
4409
mscope = aml_pushscope(scope, opargs[1], rv->node, opcode);
sys/dev/acpi/dsdt.c
4414
mscope = aml_pushscope(scope, opargs[1], rv->node, opcode);
sys/dev/acpi/dsdt.c
4421
mscope = aml_pushscope(scope, opargs[3], rv->node, opcode);
sys/dev/acpi/dsdt.c
4429
mscope = aml_pushscope(scope, opargs[4], rv->node, opcode);
sys/dev/acpi/dsdt.c
4479
mscope = aml_pushscope(scope, opargs[2], scope->node, opcode);
sys/dev/acpi/dsdt.c
4486
mscope = aml_pushscope(scope, opargs[3], scope->node, opcode);
sys/dev/acpi/dsdt.c
4493
mscope = aml_pushscope(scope, opargs[4], scope->node, opcode);
sys/dev/acpi/dsdt.c
4536
mscope = aml_load(acpi_softc, scope, opargs[0], opargs[1]);
sys/dev/acpi/dsdt.c
4548
mscope = aml_pushscope(scope, opargs[1], scope->node,
sys/dev/acpi/dsdt.c
4552
mscope = aml_pushscope(scope, opargs[3], scope->node,
sys/dev/acpi/dsdt.c
4559
scope->pos = start;
sys/dev/acpi/dsdt.c
4560
mscope = aml_pushscope(scope, opargs[1], scope->node,
sys/dev/acpi/dsdt.c
4566
aml_findscope(scope, AMLOP_WHILE, AMLOP_BREAK);
sys/dev/acpi/dsdt.c
4570
aml_findscope(scope, AMLOP_WHILE, AMLOP_CONTINUE);
sys/dev/acpi/dsdt.c
4573
mscope = aml_findscope(scope, AMLOP_METHOD, AMLOP_RETURN);
sys/dev/acpi/dsdt.c
4588
scope = mscope;
sys/dev/acpi/dsdt.c
4617
while (scope->pos >= scope->end && scope != iscope) {
sys/dev/acpi/dsdt.c
4619
scope = aml_popscope(scope);
sys/dev/acpi/dsdt.c
4621
if (scope->pos && scope->pos < scope->end)
sys/dev/acpi/dsdt.c
4626
dnprintf(50, ">>return [%s] %s %c %p\n", aml_nodename(scope->node),
sys/dev/acpi/dsdt.c
4637
struct aml_scope *scope;
sys/dev/acpi/dsdt.c
4654
scope = aml_pushscope(NULL, &res, &aml_root, AMLOP_SCOPE);
sys/dev/acpi/dsdt.c
4656
aml_parse(scope, 'T', "TopLevel");
sys/dev/acpi/dsdt.c
4658
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
787
lu->scope = LDAP_SCOPE_BASE;
usr.bin/ldap/aldap.c
789
lu->scope = LDAP_SCOPE_ONELEVEL;
usr.bin/ldap/aldap.c
791
lu->scope = LDAP_SCOPE_SUBTREE;
usr.bin/ldap/aldap.c
823
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
1804
switch (c->scope) {
usr.bin/sndiod/dev.c
1884
switch (c->scope) {
usr.bin/sndiod/dev.c
1939
switch (c->scope) {
usr.bin/sndiod/dev.c
1975
ctl_new(int scope, void *arg0, void *arg1,
usr.bin/sndiod/dev.c
2011
c->scope = scope;
usr.bin/sndiod/dev.c
2013
switch (scope) {
usr.bin/sndiod/dev.c
2072
ctl_match(struct ctl *c, int scope, void *arg0, void *arg1)
usr.bin/sndiod/dev.c
2074
if (c->type == CTL_NONE || c->scope != scope)
usr.bin/sndiod/dev.c
2078
switch (scope) {
usr.bin/sndiod/dev.c
2093
ctl_find(int scope, void *arg0, void *arg1)
usr.bin/sndiod/dev.c
2098
if (ctl_match(c, scope, arg0, arg1))
usr.bin/sndiod/dev.c
2105
ctl_onval(int scope, void *arg0, void *arg1, int val)
usr.bin/sndiod/dev.c
2109
c = ctl_find(scope, arg0, arg1);
usr.bin/sndiod/dev.c
2118
ctl_del(int scope, void *arg0, void *arg1)
usr.bin/sndiod/dev.c
2132
if (ctl_match(c, scope, arg0, arg1)) {
usr.bin/sndiod/dev.c
2159
if (c->scope == CTL_HW &&
usr.bin/sndiod/dev.c
2181
if (c->scope == CTL_HW &&
usr.bin/sndiod/dev.c
2207
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
127
unsigned int scope;
usr.bin/sndiod/dev_sioctl.c
131
if (c->scope == CTL_HW && c->u.hw.dev == d) {
usr.bin/sndiod/dev_sioctl.c
154
if (c->scope == CTL_HW && c->u.hw.dev == d && c->dirty)
usr.bin/sndiod/dev_sioctl.c
187
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
167
if (ps->scope == NULL || ps->scope->flag)
usr.bin/tmux/cmd-parse.y
178
if (ps->scope == NULL || ps->scope->flag)
usr.bin/tmux/cmd-parse.y
227
struct cmd_parse_scope *scope;
usr.bin/tmux/cmd-parse.y
229
if (ps->scope != NULL) {
usr.bin/tmux/cmd-parse.y
230
flag = ps->scope->flag;
usr.bin/tmux/cmd-parse.y
231
TAILQ_FOREACH(scope, &ps->stack, entry)
usr.bin/tmux/cmd-parse.y
232
flag = flag && scope->flag;
usr.bin/tmux/cmd-parse.y
245
struct cmd_parse_scope *scope;
usr.bin/tmux/cmd-parse.y
247
if (ps->scope != NULL) {
usr.bin/tmux/cmd-parse.y
248
flag = ps->scope->flag;
usr.bin/tmux/cmd-parse.y
249
TAILQ_FOREACH(scope, &ps->stack, entry)
usr.bin/tmux/cmd-parse.y
250
flag = flag && scope->flag;
usr.bin/tmux/cmd-parse.y
261
struct cmd_parse_scope *scope;
usr.bin/tmux/cmd-parse.y
263
scope = xmalloc(sizeof *scope);
usr.bin/tmux/cmd-parse.y
264
$$ = scope->flag = format_true($2);
usr.bin/tmux/cmd-parse.y
267
if (ps->scope != NULL)
usr.bin/tmux/cmd-parse.y
268
TAILQ_INSERT_HEAD(&ps->stack, ps->scope, entry);
usr.bin/tmux/cmd-parse.y
269
ps->scope = scope;
usr.bin/tmux/cmd-parse.y
275
struct cmd_parse_scope *scope;
usr.bin/tmux/cmd-parse.y
277
scope = xmalloc(sizeof *scope);
usr.bin/tmux/cmd-parse.y
278
scope->flag = !ps->scope->flag;
usr.bin/tmux/cmd-parse.y
280
free(ps->scope);
usr.bin/tmux/cmd-parse.y
281
ps->scope = scope;
usr.bin/tmux/cmd-parse.y
287
struct cmd_parse_scope *scope;
usr.bin/tmux/cmd-parse.y
289
scope = xmalloc(sizeof *scope);
usr.bin/tmux/cmd-parse.y
290
$$ = scope->flag = format_true($2);
usr.bin/tmux/cmd-parse.y
293
free(ps->scope);
usr.bin/tmux/cmd-parse.y
294
ps->scope = scope;
usr.bin/tmux/cmd-parse.y
301
free(ps->scope);
usr.bin/tmux/cmd-parse.y
302
ps->scope = TAILQ_FIRST(&ps->stack);
usr.bin/tmux/cmd-parse.y
303
if (ps->scope != NULL)
usr.bin/tmux/cmd-parse.y
304
TAILQ_REMOVE(&ps->stack, ps->scope, entry);
usr.bin/tmux/cmd-parse.y
392
(ps->scope == NULL || ps->scope->flag))
usr.bin/tmux/cmd-parse.y
412
(ps->scope == NULL || ps->scope->flag)) {
usr.bin/tmux/cmd-parse.y
678
struct cmd_parse_scope *scope, *scope1;
usr.bin/tmux/cmd-parse.y
685
TAILQ_FOREACH_SAFE(scope, &ps->stack, entry, scope1) {
usr.bin/tmux/cmd-parse.y
686
TAILQ_REMOVE(&ps->stack, scope, entry);
usr.bin/tmux/cmd-parse.y
687
free(scope);
usr.bin/tmux/cmd-parse.y
85
struct cmd_parse_scope *scope;
usr.bin/tmux/cmd-set-option.c
131
scope = options_scope_from_name(args, window, name, target, &oo,
usr.bin/tmux/cmd-set-option.c
133
if (scope == OPTIONS_TABLE_NONE) {
usr.bin/tmux/cmd-set-option.c
168
if (args_has(args, 'U') && scope == OPTIONS_TABLE_WINDOW) {
usr.bin/tmux/cmd-set-option.c
96
int scope;
usr.bin/tmux/cmd-show-options.c
113
scope = options_scope_from_name(args, window, name, target, &oo,
usr.bin/tmux/cmd-show-options.c
115
if (scope == OPTIONS_TABLE_NONE) {
usr.bin/tmux/cmd-show-options.c
200
cmd_show_options_all(struct cmd *self, struct cmdq_item *item, int scope,
usr.bin/tmux/cmd-show-options.c
220
if (~oe->scope & scope)
usr.bin/tmux/cmd-show-options.c
84
int window, idx, ambiguous, parent, scope;
usr.bin/tmux/cmd-show-options.c
90
scope = options_scope_from_flags(args, window, target, &oo,
usr.bin/tmux/cmd-show-options.c
92
if (scope == OPTIONS_TABLE_NONE) {
usr.bin/tmux/cmd-show-options.c
99
return (cmd_show_options_all(self, item, scope, oo));
usr.bin/tmux/options-table.c
1006
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1015
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1025
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1035
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1044
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1053
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1062
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
1074
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1084
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1095
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1103
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1111
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1119
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1126
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1134
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1141
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1149
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1158
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1167
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1176
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1188
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1197
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1206
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1213
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1221
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1229
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1237
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1246
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1253
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1260
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1271
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1279
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1287
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1296
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1305
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1313
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1322
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1331
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1339
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1348
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1356
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1364
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1373
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1381
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1390
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1399
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1408
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1418
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1431
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1439
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1446
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1456
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1465
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1477
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
1486
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1495
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1504
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1511
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1520
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1528
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1537
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1544
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1554
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
1562
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
240
.scope = OPTIONS_TABLE_SESSION, \
usr.bin/tmux/options-table.c
249
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE, \
usr.bin/tmux/options-table.c
258
.scope = OPTIONS_TABLE_WINDOW, \
usr.bin/tmux/options-table.c
280
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
287
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
297
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
312
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
321
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
329
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
336
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
usr.bin/tmux/options-table.c
344
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
351
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
358
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
365
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
375
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
382
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
390
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
399
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
407
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
414
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
426
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
434
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
443
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
452
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
461
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
470
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
479
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
488
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
499
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
508
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
518
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
527
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
539
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
550
.scope = OPTIONS_TABLE_SERVER,
usr.bin/tmux/options-table.c
559
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
567
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
578
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
587
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
595
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
603
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
610
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
618
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
627
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
636
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
643
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
650
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
660
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
670
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
677
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
689
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
701
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
709
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
719
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
726
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
736
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
747
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
755
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
767
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
776
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
783
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
790
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
798
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
809
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
816
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
823
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
831
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
839
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
847
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
855
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
867
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
877
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
885
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
893
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
900
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
909
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
918
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
926
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
936
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
945
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
954
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
963
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
972
.scope = OPTIONS_TABLE_WINDOW,
usr.bin/tmux/options-table.c
982
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
989
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options-table.c
997
.scope = OPTIONS_TABLE_SESSION,
usr.bin/tmux/options.c
860
int scope = OPTIONS_TABLE_NONE;
usr.bin/tmux/options.c
873
switch (oe->scope) {
usr.bin/tmux/options.c
876
scope = OPTIONS_TABLE_SERVER;
usr.bin/tmux/options.c
881
scope = OPTIONS_TABLE_SESSION;
usr.bin/tmux/options.c
888
scope = OPTIONS_TABLE_SESSION;
usr.bin/tmux/options.c
899
scope = OPTIONS_TABLE_PANE;
usr.bin/tmux/options.c
907
scope = OPTIONS_TABLE_WINDOW;
usr.bin/tmux/options.c
914
scope = OPTIONS_TABLE_WINDOW;
usr.bin/tmux/options.c
918
return (scope);
usr.bin/tmux/tmux.c
495
if (oe->scope & OPTIONS_TABLE_SERVER)
usr.bin/tmux/tmux.c
497
if (oe->scope & OPTIONS_TABLE_SESSION)
usr.bin/tmux/tmux.c
499
if (oe->scope & OPTIONS_TABLE_WINDOW)
usr.bin/tmux/window-customize.c
1039
enum window_customize_scope scope = WINDOW_CUSTOMIZE_NONE;
usr.bin/tmux/window-customize.c
1052
if (oe != NULL && ~oe->scope & OPTIONS_TABLE_PANE)
usr.bin/tmux/window-customize.c
1055
scope = item->scope;
usr.bin/tmux/window-customize.c
1059
switch (item->scope) {
usr.bin/tmux/window-customize.c
1065
scope = item->scope;
usr.bin/tmux/window-customize.c
1068
scope = WINDOW_CUSTOMIZE_GLOBAL_SESSION;
usr.bin/tmux/window-customize.c
1072
scope = WINDOW_CUSTOMIZE_GLOBAL_WINDOW;
usr.bin/tmux/window-customize.c
1076
switch (item->scope) {
usr.bin/tmux/window-customize.c
1081
scope = item->scope;
usr.bin/tmux/window-customize.c
1086
scope = WINDOW_CUSTOMIZE_PANE;
usr.bin/tmux/window-customize.c
1088
scope = WINDOW_CUSTOMIZE_WINDOW;
usr.bin/tmux/window-customize.c
1091
scope = WINDOW_CUSTOMIZE_SESSION;
usr.bin/tmux/window-customize.c
1095
scope = WINDOW_CUSTOMIZE_PANE;
usr.bin/tmux/window-customize.c
1097
scope = WINDOW_CUSTOMIZE_WINDOW;
usr.bin/tmux/window-customize.c
1101
if (scope == item->scope)
usr.bin/tmux/window-customize.c
1104
oo = window_customize_get_tree(scope, &fs);
usr.bin/tmux/window-customize.c
1118
text = window_customize_scope_text(scope, &fs);
usr.bin/tmux/window-customize.c
1121
else if (scope != WINDOW_CUSTOMIZE_SERVER)
usr.bin/tmux/window-customize.c
1139
new_item->scope = scope;
usr.bin/tmux/window-customize.c
126
window_customize_get_tree(enum window_customize_scope scope,
usr.bin/tmux/window-customize.c
1278
new_item->scope = item->scope;
usr.bin/tmux/window-customize.c
129
switch (scope) {
usr.bin/tmux/window-customize.c
1294
new_item->scope = item->scope;
usr.bin/tmux/window-customize.c
1354
if (item->scope == WINDOW_CUSTOMIZE_KEY)
usr.bin/tmux/window-customize.c
1360
if (item->scope == WINDOW_CUSTOMIZE_KEY)
usr.bin/tmux/window-customize.c
1366
if (item->scope != WINDOW_CUSTOMIZE_KEY)
usr.bin/tmux/window-customize.c
1385
if (item->scope == WINDOW_CUSTOMIZE_KEY)
usr.bin/tmux/window-customize.c
1391
if (item->scope == WINDOW_CUSTOMIZE_KEY)
usr.bin/tmux/window-customize.c
1397
if (item->scope != WINDOW_CUSTOMIZE_KEY)
usr.bin/tmux/window-customize.c
1448
if (item->scope == WINDOW_CUSTOMIZE_KEY)
usr.bin/tmux/window-customize.c
1457
if (item == NULL || item->scope == WINDOW_CUSTOMIZE_KEY)
usr.bin/tmux/window-customize.c
1465
if (item == NULL || item->scope == WINDOW_CUSTOMIZE_KEY)
usr.bin/tmux/window-customize.c
162
return (item->oo == window_customize_get_tree(item->scope, fsp));
usr.bin/tmux/window-customize.c
187
window_customize_scope_text(enum window_customize_scope scope,
usr.bin/tmux/window-customize.c
193
switch (scope) {
usr.bin/tmux/window-customize.c
232
struct mode_tree_item *top, enum window_customize_scope scope,
usr.bin/tmux/window-customize.c
253
item->scope = scope;
usr.bin/tmux/window-customize.c
272
struct mode_tree_item *top, enum window_customize_scope scope,
usr.bin/tmux/window-customize.c
289
if (scope == WINDOW_CUSTOMIZE_SERVER ||
usr.bin/tmux/window-customize.c
290
scope == WINDOW_CUSTOMIZE_GLOBAL_SESSION ||
usr.bin/tmux/window-customize.c
291
scope == WINDOW_CUSTOMIZE_GLOBAL_WINDOW)
usr.bin/tmux/window-customize.c
300
text = window_customize_scope_text(scope, fs);
usr.bin/tmux/window-customize.c
325
item->scope = scope;
usr.bin/tmux/window-customize.c
338
window_customize_build_array(data, top, scope, o, ft);
usr.bin/tmux/window-customize.c
383
enum window_customize_scope scope;
usr.bin/tmux/window-customize.c
408
scope = scope2;
usr.bin/tmux/window-customize.c
410
scope = scope1;
usr.bin/tmux/window-customize.c
412
scope = scope0;
usr.bin/tmux/window-customize.c
413
window_customize_build_option(data, top, scope, o, ft, filter,
usr.bin/tmux/window-customize.c
432
scope = scope2;
usr.bin/tmux/window-customize.c
434
scope = scope1;
usr.bin/tmux/window-customize.c
436
scope = scope0;
usr.bin/tmux/window-customize.c
437
window_customize_build_option(data, top, scope, o, ft, filter,
usr.bin/tmux/window-customize.c
481
item->scope = WINDOW_CUSTOMIZE_KEY;
usr.bin/tmux/window-customize.c
697
else if ((oe->scope & (OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE)) ==
usr.bin/tmux/window-customize.c
700
else if (oe->scope & OPTIONS_TABLE_WINDOW)
usr.bin/tmux/window-customize.c
702
else if (oe->scope & OPTIONS_TABLE_SESSION)
usr.bin/tmux/window-customize.c
792
switch (item->scope) {
usr.bin/tmux/window-customize.c
846
if (item->scope == WINDOW_CUSTOMIZE_KEY)
usr.bin/tmux/window-customize.c
86
enum window_customize_scope scope;
usr.sbin/bgpd/session.c
954
struct bgpd_addr *alt, unsigned int *scope)
usr.sbin/bgpd/session.c
994
*scope = if_nametoindex(match->ifa_name);
usr.sbin/bgpd/session.c
996
*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
402
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
1770
addrkey_t* addr, size_t addr_size, int is_ipv6, addrlen_t scope,
usr.sbin/unbound/daemon/remote.c
1805
(int)scope, (only_match_scope_zero?" scope_zero":""),
usr.sbin/unbound/daemon/remote.c
1870
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
478
uint8_t scope;
usr.sbin/unbound/edns-subnet/subnetmod.c
505
scope = (uint8_t)node->scope;
usr.sbin/unbound/edns-subnet/subnetmod.c
513
sq->ecs_client_out.subnet_scope_mask = scope;
usr.sbin/unbound/sldns/wire2str.c
2246
uint8_t source, scope;
usr.sbin/unbound/sldns/wire2str.c
2254
scope = data[3];
usr.sbin/unbound/sldns/wire2str.c
2301
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
823
lu->scope = LDAP_SCOPE_BASE;
usr.sbin/ypldap/aldap.c
825
lu->scope = LDAP_SCOPE_ONELEVEL;
usr.sbin/ypldap/aldap.c
827
lu->scope = LDAP_SCOPE_SUBTREE;
usr.sbin/ypldap/aldap.c
859
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 *);