bin/ksh/c_sh.c
858
pid_t parent = getppid();
bin/ksh/c_sh.c
859
if (getpgid(parent) == getpgid(0) ||
bin/ksh/c_sh.c
860
getsid(parent) != getsid(0)) {
games/fortune/fortune/fortune.c
390
FILEDESC *parent)
games/fortune/fortune/fortune.c
406
if ((isdir = is_dir(path)) && parent != NULL) {
games/fortune/fortune/fortune.c
412
if (!isdir && parent == NULL && (All_forts || Offend) &&
games/fortune/fortune/fortune.c
448
parent);
games/fortune/fortune/fortune.c
449
if (parent == NULL)
games/fortune/fortune/fortune.c
463
fp->parent = parent;
games/fortune/fortune/fortune.c
467
!is_fortfile(path, &fp->datfile, (parent != NULL))))
games/fortune/fortune/fortune.c
469
if (parent == NULL)
games/fortune/fortune/fortune.c
486
if (All_forts && parent == NULL && !is_off_name(path))
games/fortune/fortune/fortune.c
524
fp->parent = NULL;
games/fortune/fortune/fortune.c
581
scene->parent = obscene->parent = fp;
games/fortune/fortune/fortune.c
81
struct fd *child, *parent;
games/fortune/fortune/fortune.c
869
pick_child(FILEDESC *parent)
games/fortune/fortune/fortune.c
875
choice = arc4random_uniform(parent->num_children);
games/fortune/fortune/fortune.c
877
choice, parent->num_children));
games/fortune/fortune/fortune.c
878
for (fp = parent->child; choice--; fp = fp->next)
games/fortune/fortune/fortune.c
884
get_tbl(parent);
games/fortune/fortune/fortune.c
885
choice = arc4random_uniform(parent->tbl.str_numstr);
games/fortune/fortune/fortune.c
887
choice, parent->tbl.str_numstr));
games/fortune/fortune/fortune.c
888
for (fp = parent->child; choice >= fp->tbl.str_numstr;
lib/csu/crtbeginS.c
90
pthread_atfork(void (*prep)(void), void (*parent)(void), void (*child)(void))
lib/csu/crtbeginS.c
92
return (_thread_atfork(prep, parent, child, &__dso_handle));
lib/libc/db/btree/bt_delete.c
139
EPGNO *parent;
lib/libc/db/btree/bt_delete.c
172
for (level = 0; (parent = BT_POP(t)) != NULL; ++level) {
lib/libc/db/btree/bt_delete.c
174
if ((h = mpool_get(t->bt_mp, parent->pgno, 0)) == NULL)
lib/libc/db/btree/bt_delete.c
178
if (parent->index != NEXTINDEX(h) - 1) {
lib/libc/db/btree/bt_delete.c
179
idx = parent->index + 1;
lib/libc/db/btree/bt_delete.c
227
for (level = 0; (parent = BT_POP(t)) != NULL; ++level) {
lib/libc/db/btree/bt_delete.c
229
if ((h = mpool_get(t->bt_mp, parent->pgno, 0)) == NULL)
lib/libc/db/btree/bt_delete.c
233
if (parent->index != 0) {
lib/libc/db/btree/bt_delete.c
234
idx = parent->index - 1;
lib/libc/db/btree/bt_delete.c
368
EPGNO *parent;
lib/libc/db/btree/bt_delete.c
385
while ((parent = BT_POP(t)) != NULL) {
lib/libc/db/btree/bt_delete.c
387
if ((pg = mpool_get(t->bt_mp, parent->pgno, 0)) == NULL)
lib/libc/db/btree/bt_delete.c
390
idx = parent->index;
lib/libc/db/btree/bt_split.c
140
while ((parent = BT_POP(t)) != NULL) {
lib/libc/db/btree/bt_split.c
145
if ((h = mpool_get(t->bt_mp, parent->pgno, 0)) == NULL)
lib/libc/db/btree/bt_split.c
152
skip = parent->index + 1;
lib/libc/db/btree/bt_split.c
79
EPGNO *parent;
lib/libc/db/recno/rec_search.c
106
while ((parent = BT_POP(t)) != NULL) {
lib/libc/db/recno/rec_search.c
107
if ((h = mpool_get(t->bt_mp, parent->pgno, 0)) == NULL)
lib/libc/db/recno/rec_search.c
110
--GETRINTERNAL(h, parent->index)->nrecs;
lib/libc/db/recno/rec_search.c
112
++GETRINTERNAL(h, parent->index)->nrecs;
lib/libc/db/recno/rec_search.c
62
EPGNO *parent;
lib/libc/gen/fts.c
109
if ((parent = fts_alloc(sp, "", 0)) == NULL)
lib/libc/gen/fts.c
111
parent->fts_level = FTS_ROOTPARENTLEVEL;
lib/libc/gen/fts.c
118
p->fts_parent = parent;
lib/libc/gen/fts.c
167
free(parent);
lib/libc/gen/fts.c
172
free(parent);
lib/libc/gen/fts.c
77
FTSENT *parent, *prev;
lib/libc/gen/tree.c
101
struct rb_entry *parent;
lib/libc/gen/tree.c
109
parent = RBE_PARENT(rbe);
lib/libc/gen/tree.c
110
RBE_PARENT(tmp) = parent;
lib/libc/gen/tree.c
111
if (parent != NULL) {
lib/libc/gen/tree.c
112
if (rbe == RBE_LEFT(parent))
lib/libc/gen/tree.c
113
RBE_LEFT(parent) = tmp;
lib/libc/gen/tree.c
115
RBE_RIGHT(parent) = tmp;
lib/libc/gen/tree.c
125
parent = RBE_PARENT(tmp);
lib/libc/gen/tree.c
126
if (parent != NULL)
lib/libc/gen/tree.c
127
rbe_augment(t, parent);
lib/libc/gen/tree.c
135
struct rb_entry *parent;
lib/libc/gen/tree.c
143
parent = RBE_PARENT(rbe);
lib/libc/gen/tree.c
144
RBE_PARENT(tmp) = parent;
lib/libc/gen/tree.c
145
if (parent != NULL) {
lib/libc/gen/tree.c
146
if (rbe == RBE_LEFT(parent))
lib/libc/gen/tree.c
147
RBE_LEFT(parent) = tmp;
lib/libc/gen/tree.c
149
RBE_RIGHT(parent) = tmp;
lib/libc/gen/tree.c
159
parent = RBE_PARENT(tmp);
lib/libc/gen/tree.c
160
if (parent != NULL)
lib/libc/gen/tree.c
161
rbe_augment(t, parent);
lib/libc/gen/tree.c
169
struct rb_entry *parent, *gparent, *tmp;
lib/libc/gen/tree.c
171
while ((parent = RBE_PARENT(rbe)) != NULL &&
lib/libc/gen/tree.c
172
RBE_COLOR(parent) == RB_RED) {
lib/libc/gen/tree.c
173
gparent = RBE_PARENT(parent);
lib/libc/gen/tree.c
175
if (parent == RBE_LEFT(gparent)) {
lib/libc/gen/tree.c
179
rbe_set_blackred(parent, gparent);
lib/libc/gen/tree.c
184
if (RBE_RIGHT(parent) == rbe) {
lib/libc/gen/tree.c
185
rbe_rotate_left(t, rbt, parent);
lib/libc/gen/tree.c
186
tmp = parent;
lib/libc/gen/tree.c
187
parent = rbe;
lib/libc/gen/tree.c
191
rbe_set_blackred(parent, gparent);
lib/libc/gen/tree.c
197
rbe_set_blackred(parent, gparent);
lib/libc/gen/tree.c
202
if (RBE_LEFT(parent) == rbe) {
lib/libc/gen/tree.c
203
rbe_rotate_right(t, rbt, parent);
lib/libc/gen/tree.c
204
tmp = parent;
lib/libc/gen/tree.c
205
parent = rbe;
lib/libc/gen/tree.c
209
rbe_set_blackred(parent, gparent);
lib/libc/gen/tree.c
219
struct rb_entry *parent, struct rb_entry *rbe)
lib/libc/gen/tree.c
225
if (RBE_LEFT(parent) == rbe) {
lib/libc/gen/tree.c
226
tmp = RBE_RIGHT(parent);
lib/libc/gen/tree.c
228
rbe_set_blackred(tmp, parent);
lib/libc/gen/tree.c
229
rbe_rotate_left(t, rbt, parent);
lib/libc/gen/tree.c
230
tmp = RBE_RIGHT(parent);
lib/libc/gen/tree.c
237
rbe = parent;
lib/libc/gen/tree.c
238
parent = RBE_PARENT(rbe);
lib/libc/gen/tree.c
250
tmp = RBE_RIGHT(parent);
lib/libc/gen/tree.c
253
RBE_COLOR(tmp) = RBE_COLOR(parent);
lib/libc/gen/tree.c
254
RBE_COLOR(parent) = RB_BLACK;
lib/libc/gen/tree.c
258
rbe_rotate_left(t, rbt, parent);
lib/libc/gen/tree.c
263
tmp = RBE_LEFT(parent);
lib/libc/gen/tree.c
265
rbe_set_blackred(tmp, parent);
lib/libc/gen/tree.c
266
rbe_rotate_right(t, rbt, parent);
lib/libc/gen/tree.c
267
tmp = RBE_LEFT(parent);
lib/libc/gen/tree.c
275
rbe = parent;
lib/libc/gen/tree.c
276
parent = RBE_PARENT(rbe);
lib/libc/gen/tree.c
288
tmp = RBE_LEFT(parent);
lib/libc/gen/tree.c
291
RBE_COLOR(tmp) = RBE_COLOR(parent);
lib/libc/gen/tree.c
292
RBE_COLOR(parent) = RB_BLACK;
lib/libc/gen/tree.c
296
rbe_rotate_right(t, rbt, parent);
lib/libc/gen/tree.c
310
struct rb_entry *child, *parent, *old = rbe;
lib/libc/gen/tree.c
325
parent = RBE_PARENT(rbe);
lib/libc/gen/tree.c
328
RBE_PARENT(child) = parent;
lib/libc/gen/tree.c
329
if (parent != NULL) {
lib/libc/gen/tree.c
330
if (RBE_LEFT(parent) == rbe)
lib/libc/gen/tree.c
331
RBE_LEFT(parent) = child;
lib/libc/gen/tree.c
333
RBE_RIGHT(parent) = child;
lib/libc/gen/tree.c
335
rbe_if_augment(t, parent);
lib/libc/gen/tree.c
339
parent = rbe;
lib/libc/gen/tree.c
357
if (t->t_augment != NULL && parent != NULL) {
lib/libc/gen/tree.c
358
tmp = parent;
lib/libc/gen/tree.c
368
parent = RBE_PARENT(rbe);
lib/libc/gen/tree.c
372
RBE_PARENT(child) = parent;
lib/libc/gen/tree.c
373
if (parent != NULL) {
lib/libc/gen/tree.c
374
if (RBE_LEFT(parent) == rbe)
lib/libc/gen/tree.c
375
RBE_LEFT(parent) = child;
lib/libc/gen/tree.c
377
RBE_RIGHT(parent) = child;
lib/libc/gen/tree.c
379
rbe_if_augment(t, parent);
lib/libc/gen/tree.c
384
rbe_remove_color(t, rbt, parent, child);
lib/libc/gen/tree.c
406
struct rb_entry *parent = NULL;
lib/libc/gen/tree.c
412
parent = tmp;
lib/libc/gen/tree.c
424
rbe_set(rbe, parent);
lib/libc/gen/tree.c
426
if (parent != NULL) {
lib/libc/gen/tree.c
428
RBE_LEFT(parent) = rbe;
lib/libc/gen/tree.c
430
RBE_RIGHT(parent) = rbe;
lib/libc/gen/tree.c
432
rbe_if_augment(t, parent);
lib/libc/gen/tree.c
553
struct rb_entry *parent = NULL;
lib/libc/gen/tree.c
556
parent = rbe;
lib/libc/gen/tree.c
560
return (parent == NULL ? NULL : rb_e2n(t, parent));
lib/libc/gen/tree.c
568
struct rb_entry *parent = NULL;
lib/libc/gen/tree.c
571
parent = rbe;
lib/libc/gen/tree.c
575
return (parent == NULL ? NULL : rb_e2n(t, parent));
lib/libc/gen/tree.c
627
_rb_set_parent(const struct rb_type *t, void *node, void *parent)
lib/libc/gen/tree.c
630
struct rb_entry *rbp = (parent == NULL) ? NULL : rb_n2e(t, parent);
lib/libc/gen/tree.c
70
rbe_set(struct rb_entry *rbe, struct rb_entry *parent)
lib/libc/gen/tree.c
72
RBE_PARENT(rbe) = parent;
lib/libc/thread/atfork.c
45
_thread_atfork(void (*prepare)(void), void (*parent)(void),
lib/libc/thread/atfork.c
54
af->fn_parent = parent;
lib/libc/thread/atfork.c
70
pthread_atfork(void (*prep)(void), void (*parent)(void), void (*child)(void))
lib/libc/thread/atfork.c
72
return (_thread_atfork(prep, parent, child, NULL));
lib/libcrypto/crypto_ex_data.c
226
CRYPTO_new_ex_data(int class_index, void *parent, CRYPTO_EX_DATA *exdata)
lib/libcrypto/crypto_ex_data.c
255
if (!index->new_func(parent, NULL, exdata, i, index->argl,
lib/libcrypto/crypto_ex_data.c
264
CRYPTO_free_ex_data(class_index, parent, exdata);
lib/libcrypto/crypto_ex_data.c
341
CRYPTO_free_ex_data(int class_index, void *parent, CRYPTO_EX_DATA *exdata)
lib/libcrypto/crypto_ex_data.c
370
index->free_func(parent, ced->slots[i], exdata, i, index->argl,
lib/libcrypto/ossl_typ.h
164
typedef int CRYPTO_EX_new(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
lib/libcrypto/ossl_typ.h
166
typedef void CRYPTO_EX_free(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
lib/libcrypto/x509/x509_addr.c
1769
addr_contains(IPAddressOrRanges *parent, IPAddressOrRanges *child, int length)
lib/libcrypto/x509/x509_addr.c
1776
if (child == NULL || parent == child)
lib/libcrypto/x509/x509_addr.c
1778
if (parent == NULL)
lib/libcrypto/x509/x509_addr.c
1789
if (p >= sk_IPAddressOrRange_num(parent))
lib/libcrypto/x509/x509_addr.c
1792
parent_aor = sk_IPAddressOrRange_value(parent, p);
lib/libcrypto/x509/x509_addr.c
1813
X509v3_addr_subset(IPAddrBlocks *child, IPAddrBlocks *parent)
lib/libcrypto/x509/x509_addr.c
1819
if (child == NULL || child == parent)
lib/libcrypto/x509/x509_addr.c
1821
if (parent == NULL)
lib/libcrypto/x509/x509_addr.c
1824
if (X509v3_addr_inherits(child) || X509v3_addr_inherits(parent))
lib/libcrypto/x509/x509_addr.c
1830
parent_af = IPAddressFamily_find_in_parent(parent, child_af);
lib/libcrypto/x509/x509_addr.c
1872
IPAddrBlocks *child = NULL, *parent = NULL;
lib/libcrypto/x509/x509_addr.c
1934
if ((parent = cert->rfc3779_addr) == NULL) {
lib/libcrypto/x509/x509_addr.c
1959
if ((parent_af = IPAddressFamily_find_in_parent(parent,
lib/libcrypto/x509/x509_addr.c
2016
if ((parent = cert->rfc3779_addr) != NULL) {
lib/libcrypto/x509/x509_addr.c
2017
for (i = 0; i < sk_IPAddressFamily_num(parent); i++) {
lib/libcrypto/x509/x509_addr.c
2018
parent_af = sk_IPAddressFamily_value(parent, i);
lib/libcrypto/x509/x509_addr.c
516
IPAddressFamily_find_in_parent(IPAddrBlocks *parent, IPAddressFamily *child_af)
lib/libcrypto/x509/x509_addr.c
520
(void)sk_IPAddressFamily_set_cmp_func(parent, IPAddressFamily_cmp);
lib/libcrypto/x509/x509_addr.c
522
if ((index = sk_IPAddressFamily_find(parent, child_af)) < 0)
lib/libcrypto/x509/x509_addr.c
525
return sk_IPAddressFamily_value(parent, index);
lib/libcrypto/x509/x509_asid.c
1004
if (child == NULL || parent == child)
lib/libcrypto/x509/x509_asid.c
1007
if (parent == NULL)
lib/libcrypto/x509/x509_asid.c
1016
if (p >= sk_ASIdOrRange_num(parent))
lib/libcrypto/x509/x509_asid.c
1018
if (!extract_min_max(sk_ASIdOrRange_value(parent, p),
lib/libcrypto/x509/x509_asid.c
1036
X509v3_asid_subset(ASIdentifiers *child, ASIdentifiers *parent)
lib/libcrypto/x509/x509_asid.c
1038
if (child == NULL || child == parent)
lib/libcrypto/x509/x509_asid.c
1041
if (parent == NULL)
lib/libcrypto/x509/x509_asid.c
1044
if (X509v3_asid_inherits(child) || X509v3_asid_inherits(parent))
lib/libcrypto/x509/x509_asid.c
1048
if (parent->asnum == NULL)
lib/libcrypto/x509/x509_asid.c
1051
if (!asid_contains(parent->asnum->u.asIdsOrRanges,
lib/libcrypto/x509/x509_asid.c
1057
if (parent->rdi == NULL)
lib/libcrypto/x509/x509_asid.c
1060
if (!asid_contains(parent->rdi->u.asIdsOrRanges,
lib/libcrypto/x509/x509_asid.c
999
asid_contains(ASIdOrRanges *parent, ASIdOrRanges *child)
lib/libcrypto/x509/x509_local.h
366
X509_STORE_CTX *parent; /* For CRL path validation: parent context */
lib/libcrypto/x509/x509_policy.c
771
X509_POLICY_NODE *node, *parent;
lib/libcrypto/x509/x509_policy.c
849
parent = x509_policy_level_find(prev,
lib/libcrypto/x509/x509_policy.c
852
if (parent != NULL)
lib/libcrypto/x509/x509_policy.c
853
parent->reachable = 1;
lib/libcrypto/x509/x509_verify.c
527
x509_verify_potential_parent(struct x509_verify_ctx *ctx, X509 *parent,
lib/libcrypto/x509/x509_verify.c
530
if (!x509_verify_cert_cache_extensions(parent))
lib/libcrypto/x509/x509_verify.c
533
return (ctx->xsc->check_issued(ctx->xsc, child, parent));
lib/libcrypto/x509/x509_verify.c
536
return X509_check_issued(parent, child) == X509_V_OK;
lib/libcrypto/x509/x509_verify.c
541
x509_verify_parent_signature(X509 *parent, X509 *child, int *error)
lib/libcrypto/x509/x509_verify.c
548
if ((cached = x509_issuer_cache_find(parent->hash, child->hash)) >= 0) {
lib/libcrypto/x509/x509_verify.c
555
if ((pkey = X509_get0_pubkey(parent)) == NULL) {
lib/libcrypto/x509/x509_verify.c
565
x509_issuer_cache_add(parent->hash, child->hash, ret);
lib/libcrypto/x509/x509_vfy.c
1342
if (ctx->parent)
lib/libcrypto/x509/x509_vfy.c
1353
crl_ctx.parent = ctx;
lib/libcrypto/x509/x509_vfy.c
1558
x509_crl_verify_parent_signature(X509 *parent, X509_CRL *crl, int *error)
lib/libcrypto/x509/x509_vfy.c
1565
if ((cached = x509_issuer_cache_find(parent->hash, crl->hash)) >= 0) {
lib/libcrypto/x509/x509_vfy.c
1572
if ((pkey = X509_get0_pubkey(parent)) == NULL) {
lib/libcrypto/x509/x509_vfy.c
1582
x509_issuer_cache_add(parent->hash, crl->hash, ret);
lib/libcrypto/x509/x509_vfy.c
1716
if (ctx->parent != NULL)
lib/libcrypto/x509/x509_vfy.c
2133
return ctx->parent;
lib/libcrypto/x509/x509_vfy.c
2351
if (ctx->parent == NULL)
lib/libcrypto/x509/x509_vfy.c
727
if (ctx->parent)
lib/libcrypto/x509/x509_vfy.c
921
if (ctx->parent)
lib/libcurses/base/lib_mvwin.c
70
WINDOW *parent = win->_parent;
lib/libcurses/base/lib_mvwin.c
71
if (parent) { /* Now comes the complicated and costly part, you should really
lib/libcurses/base/lib_mvwin.c
77
if ((by - parent->_begy == win->_pary) &&
lib/libcurses/base/lib_mvwin.c
78
(bx - parent->_begx == win->_parx))
lib/libcurses/base/lib_mvwin.c
87
wbkgrnd(win, CHREF(parent->_nc_bkgd));
lib/libcurses/base/lib_mvwin.c
91
by - parent->_begy,
lib/libcurses/base/lib_mvwin.c
92
bx - parent->_begx);
lib/libelf/elf_next.c
39
Elf *parent;
lib/libelf/elf_next.c
44
if ((parent = e->e_parent) == NULL) {
lib/libelf/elf_next.c
49
assert(parent->e_kind == ELF_K_AR);
lib/libelf/elf_next.c
50
assert(parent->e_cmd == ELF_C_READ);
lib/libelf/elf_next.c
51
assert(e->e_rawfile > parent->e_rawfile);
lib/libelf/elf_next.c
53
next = e->e_rawfile - parent->e_rawfile + (off_t) e->e_rawsize;
lib/libelf/elf_next.c
60
parent->e_u.e_ar.e_next = (next >= (off_t) parent->e_rawsize) ?
lib/libelf/elf_next.c
72
if (next > (off_t) parent->e_rawsize) {
lib/libelf/libelf_ar.c
111
Elf *parent;
lib/libelf/libelf_ar.c
117
if ((parent = e->e_parent) == NULL) {
lib/libelf/libelf_ar.c
126
assert((uintptr_t) arh >= (uintptr_t) parent->e_rawfile + SARMAG);
lib/libelf/libelf_ar.c
132
if ((uintptr_t) arh > (uintptr_t) parent->e_rawfile +
lib/libelf/libelf_ar.c
133
(uintptr_t) parent->e_rawsize - sizeof(struct ar_hdr)) {
lib/libelf/libelf_ar.c
148
if ((eh->ar_name = _libelf_ar_get_translated_name(arh, parent)) ==
lib/libevent/min_heap.h
117
size_t parent = (e->min_heap_idx - 1) / 2;
lib/libevent/min_heap.h
125
if (e->min_heap_idx > 0 && min_heap_elem_greater(s->p[parent], last))
lib/libevent/min_heap.h
154
size_t parent = (hole_index - 1) / 2;
lib/libevent/min_heap.h
155
while (hole_index && min_heap_elem_greater(s->p[parent], e)) {
lib/libevent/min_heap.h
156
s->p[hole_index] = s->p[parent];
lib/libevent/min_heap.h
158
hole_index = parent;
lib/libevent/min_heap.h
159
parent = (hole_index - 1) / 2;
lib/libexpat/lib/xmlparse.c
1655
tStk = tStk->parent;
lib/libexpat/lib/xmlparse.c
1656
tag->parent = parser->m_freeTagList;
lib/libexpat/lib/xmlparse.c
1943
tagList = tagList->parent;
lib/libexpat/lib/xmlparse.c
306
struct tag *parent; /* parent of this element */
lib/libexpat/lib/xmlparse.c
3173
tag = tag->parent;
lib/libexpat/lib/xmlparse.c
3477
parser->m_freeTagList = parser->m_freeTagList->parent;
lib/libexpat/lib/xmlparse.c
3490
tag->parent = parser->m_tagStack;
lib/libexpat/lib/xmlparse.c
3599
parser->m_tagStack = tag->parent;
lib/libexpat/lib/xmlparse.c
3600
tag->parent = parser->m_freeTagList;
lib/libexpat/lib/xmlparse.c
4277
for (p = parser->m_tagStack; p; p = p->parent)
lib/libexpat/lib/xmlparse.c
8319
CONTENT_SCAFFOLD *parent
lib/libexpat/lib/xmlparse.c
8321
if (parent->lastchild) {
lib/libexpat/lib/xmlparse.c
8322
dtd->scaffold[parent->lastchild].nextsib = next;
lib/libexpat/lib/xmlparse.c
8324
if (! parent->childcnt)
lib/libexpat/lib/xmlparse.c
8325
parent->firstchild = next;
lib/libexpat/lib/xmlparse.c
8326
parent->lastchild = next;
lib/libexpat/lib/xmlparse.c
8327
parent->childcnt++;
lib/libfuse/fuse_ops.c
441
ifuse_ops_lookup(fuse_req_t req, fuse_ino_t parent, const char *name)
lib/libfuse/fuse_ops.c
449
vn = get_vn_by_name_and_parent(f, name, parent);
lib/libfuse/fuse_ops.c
451
vn = alloc_vn(f, name, -1, parent);
lib/libfuse/fuse_ops.c
544
ifuse_ops_mkdir(fuse_req_t req, fuse_ino_t parent, const char *name,
lib/libfuse/fuse_ops.c
555
newvn = get_vn_by_name_and_parent(f, name, parent);
lib/libfuse/fuse_ops.c
585
ifuse_ops_rmdir(fuse_req_t req, fuse_ino_t parent, const char *name)
lib/libfuse/fuse_ops.c
594
vn = get_vn_by_name_and_parent(f, name, parent);
lib/libfuse/fuse_ops.c
644
ifuse_ops_unlink(fuse_req_t req, fuse_ino_t parent, const char *name)
lib/libfuse/fuse_ops.c
653
vn = get_vn_by_name_and_parent(f, name, parent);
lib/libfuse/fuse_ops.c
823
ifuse_ops_symlink(fuse_req_t req, const char *link, fuse_ino_t parent,
lib/libfuse/fuse_ops.c
834
newvn = get_vn_by_name_and_parent(f, name, parent);
lib/libfuse/fuse_ops.c
864
ifuse_ops_rename(fuse_req_t req, fuse_ino_t parent, const char *name,
lib/libfuse/fuse_ops.c
876
vn = get_vn_by_name_and_parent(f, name, parent);
lib/libfuse/fuse_ops.c
934
ifuse_ops_mknod(fuse_req_t req, fuse_ino_t parent, const char *name,
lib/libfuse/fuse_ops.c
945
newvn = get_vn_by_name_and_parent(f, name, parent);
lib/libfuse/fuse_private.h
35
struct fuse_vnode *parent;
lib/libfuse/fuse_subr.c
104
if (v->parent == vn->parent && v->ino == vn->ino)
lib/libfuse/fuse_subr.c
127
if (v->parent == vn->parent)
lib/libfuse/fuse_subr.c
160
if (v->parent && v->parent->ino == pino)
lib/libfuse/fuse_subr.c
186
while (vn->parent != NULL) {
lib/libfuse/fuse_subr.c
200
vn = vn->parent;
lib/libfuse/fuse_subr.c
45
vn->parent = NULL;
lib/libfuse/fuse_subr.c
47
if ((vn->parent = tree_get(&f->vnode_tree, pino)) == NULL) {
lib/libfuse/fuse_subr.c
54
ref_vn(vn->parent);
lib/libfuse/fuse_subr.c
77
if (vn->parent != NULL)
lib/libfuse/fuse_subr.c
78
unref_vn(f, vn->parent);
lib/libkvm/kvm_file2.c
874
struct vnode parent;
lib/libkvm/kvm_file2.c
884
if (KREAD(kd, (u_long)vp->v_specparent, &parent)) {
lib/libpcap/optimize.c
1473
link_inedge(struct edge *parent, struct block *child)
lib/libpcap/optimize.c
1475
parent->next = child->in_edges;
lib/libpcap/optimize.c
1476
child->in_edges = parent;
lib/libutil/ber.c
591
struct ber_element *parent[_MAX_SEQ], *e;
lib/libutil/ber.c
594
memset(parent, 0, sizeof(struct ber_element *) * _MAX_SEQ);
lib/libutil/ber.c
665
parent[level++] = ber;
lib/libutil/ber.c
672
parent[level++] = ber;
lib/libutil/ber.c
676
if (level <= 0 || parent[level - 1] == NULL)
lib/libutil/ber.c
678
ber = parent[--level];
lib/libutil/ber.c
713
struct ber_element *parent[_MAX_SEQ], **e;
lib/libutil/ber.c
715
memset(parent, 0, sizeof(struct ber_element *) * _MAX_SEQ);
lib/libutil/ber.c
818
parent[++level] = ber;
lib/libutil/ber.c
824
if (level < 0 || parent[level] == NULL)
lib/libutil/ber.c
826
ber = parent[level--];
libexec/ld.so/library_subr.c
313
_dl_load_shlib(const char *libname, elf_object_t *parent, int type, int flags,
libexec/ld.so/library_subr.c
384
if (parent->runpath != NULL) {
libexec/ld.so/library_subr.c
385
hint = _dl_find_shlib(&req_sod, parent->runpath, ignore_hints);
libexec/ld.so/library_subr.c
393
if (parent->rpath != NULL) {
libexec/ld.so/library_subr.c
394
hint = _dl_find_shlib(&req_sod, parent->rpath,
libexec/ld.so/library_subr.c
399
if (parent != _dl_objects && _dl_objects->rpath != NULL) {
regress/lib/csu/callbacks/pthread_atfork/pthread_atfork_test.c
75
#define REGISTER(prep, parent, child) \
regress/lib/csu/callbacks/pthread_atfork/pthread_atfork_test.c
77
int _r = pthread_atfork(prep, parent, child); \
regress/lib/csu/callbacks/pthread_atfork/pthread_atfork_test.c
80
#prep, #parent, #child); \
regress/lib/libc/sys/t_fork.c
141
pid_t child, parent, watcher, wpid;
regress/lib/libc/sys/t_fork.c
159
parent = getpid();
regress/lib/libc/sys/t_fork.c
170
child = await_stopped_child(parent);
regress/lib/libcrypto/exdata/exdata_test.c
28
ex_new(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl,
regress/lib/libcrypto/exdata/exdata_test.c
64
ex_free(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx,
regress/lib/libcrypto/test/test.c
109
if (t->parent != NULL)
regress/lib/libcrypto/test/test.c
110
test_fail(t->parent);
regress/lib/libcrypto/test/test.c
28
struct test *parent;
regress/lib/libcrypto/test/test.c
50
t->parent = pt;
regress/lib/libcrypto/test/test.c
95
if (t->parent == NULL && t->out != stderr)
regress/sys/sys/tree/rb-linux/rb-linux.c
66
struct rb_node *parent = NULL;
regress/sys/sys/tree/rb-linux/rb-linux.c
71
parent = *tmp;
regress/sys/sys/tree/rb-linux/rb-linux.c
80
rb_link_node(&elm->node, parent, tmp);
sbin/fsck_ext2fs/dir.c
480
makeentry(ino_t parent, ino_t ino, char *name)
sbin/fsck_ext2fs/dir.c
486
if ((parent < EXT2_FIRSTINO && parent != EXT2_ROOTINO)
sbin/fsck_ext2fs/dir.c
487
|| parent >= maxino ||
sbin/fsck_ext2fs/dir.c
493
idesc.id_number = parent;
sbin/fsck_ext2fs/dir.c
497
dp = ginode(parent);
sbin/fsck_ext2fs/dir.c
504
getpathname(pathbuf, sizeof pathbuf, parent, parent);
sbin/fsck_ext2fs/dir.c
505
dp = ginode(parent);
sbin/fsck_ext2fs/dir.c
576
allocdir(ino_t parent, ino_t request, int mode)
sbin/fsck_ext2fs/dir.c
600
dirp->dotdot_ino = htole32(parent);
sbin/fsck_ext2fs/dir.c
616
if (statemap[parent] != DSTATE && statemap[parent] != DFOUND) {
sbin/fsck_ext2fs/dir.c
621
statemap[ino] = statemap[parent];
sbin/fsck_ext2fs/dir.c
624
lncntp[parent]++;
sbin/fsck_ext2fs/dir.c
626
dp = ginode(parent);
sbin/fsck_ext2fs/dir.c
636
freedir(ino_t ino, ino_t parent)
sbin/fsck_ext2fs/dir.c
640
if (ino != parent) {
sbin/fsck_ext2fs/dir.c
641
dp = ginode(parent);
sbin/fsck_ffs/dir.c
456
makeentry(ino_t parent, ino_t ino, char *name)
sbin/fsck_ffs/dir.c
462
if (parent < ROOTINO || parent >= maxino ||
sbin/fsck_ffs/dir.c
468
idesc.id_number = parent;
sbin/fsck_ffs/dir.c
472
dp = ginode(parent);
sbin/fsck_ffs/dir.c
479
getpathname(pathbuf, sizeof pathbuf, parent, parent);
sbin/fsck_ffs/dir.c
480
dp = ginode(parent);
sbin/fsck_ffs/dir.c
550
allocdir(ino_t parent, ino_t request, int mode)
sbin/fsck_ffs/dir.c
564
dirp->dotdot_ino = parent;
sbin/fsck_ffs/dir.c
584
if (GET_ISTATE(parent) != DSTATE && GET_ISTATE(parent) != DFOUND) {
sbin/fsck_ffs/dir.c
590
inp->i_parent = parent;
sbin/fsck_ffs/dir.c
591
inp->i_dotdot = parent;
sbin/fsck_ffs/dir.c
592
SET_ISTATE(ino, GET_ISTATE(parent));
sbin/fsck_ffs/dir.c
595
ILNCOUNT(parent)++;
sbin/fsck_ffs/dir.c
597
dp = ginode(parent);
sbin/fsck_ffs/dir.c
613
freedir(ino_t ino, ino_t parent)
sbin/fsck_ffs/dir.c
617
if (ino != parent) {
sbin/fsck_ffs/dir.c
618
dp = ginode(parent);
sbin/fsck_msdos/dir.c
172
dir = dir->parent;
sbin/fsck_msdos/dir.c
267
nd = d->parent;
sbin/fsck_msdos/dir.c
427
if (dir->parent && (cl < CLUST_FIRST || cl >= boot->NumClusters)) {
sbin/fsck_msdos/dir.c
436
if (!(boot->flags & FAT32) && !dir->parent) {
sbin/fsck_msdos/dir.c
640
dirent.parent = dir;
sbin/fsck_msdos/dir.c
676
&& dir->parent /* XXX */
sbin/fsck_msdos/dir.c
677
&& !dir->parent->parent) {
sbin/fsck_msdos/dir.c
766
if (dir->parent) { /* XXX */
sbin/fsck_msdos/dir.c
767
if (!dir->parent->parent) {
sbin/fsck_msdos/dir.c
780
} else if (dirent.head != dir->parent->head) {
sbin/fsck_msdos/dir.c
784
dirent.head = dir->parent->head;
sbin/fsck_msdos/dosfs.h
116
*parent, /* previous tree level */
sbin/pfctl/parse.y
1470
queue_opts.parent = $2;
sbin/pfctl/parse.y
189
char parent[PF_QNAME_SIZE];
sbin/pfctl/parse.y
343
char *parent;
sbin/pfctl/parse.y
4784
if (!opts->parent && (opts->marker & QOM_BWSPEC))
sbin/pfctl/parse.y
4796
if (opts->parent && strlcpy(qspec.parent, opts->parent,
sbin/pfctl/parse.y
4797
sizeof(qspec.parent)) >= sizeof(qspec.parent)) {
sbin/pfctl/pfctl.c
1638
if (q->parent[0] == '\0') {
sbin/pfctl/pfctl.c
1653
if (qi->qs.parent[0])
sbin/pfctl/pfctl.c
1680
if (strcmp(p->qs.parent, qi->qs.qname))
sbin/pfctl/pfctl.c
1752
qi->qs.parent);
sbin/pfctl/pfctl.c
1764
if (qi->qs.parent[0] != '\0' &&
sbin/pfctl/pfctl_parser.c
1303
if (q->parent[0])
sbin/pfctl/pfctl_parser.c
1304
printf(" parent %s", q->parent);
sbin/unwind/libunbound/iterator/iter_fwd.c
168
node->parent = NULL;
sbin/unwind/libunbound/iterator/iter_fwd.c
177
for(p = prev; p; p = p->parent)
sbin/unwind/libunbound/iterator/iter_fwd.c
183
node->parent = p;
sbin/unwind/libunbound/iterator/iter_fwd.c
467
result = result->parent;
sbin/unwind/libunbound/iterator/iter_fwd.h
88
struct iter_forward_zone* parent;
sbin/unwind/libunbound/services/cache/infra.c
931
d = (struct domain_limit_data*)d->node.parent;
sbin/unwind/libunbound/services/cache/infra.c
935
d = (struct domain_limit_data*)d->node.parent;
sbin/unwind/libunbound/services/localzone.c
1007
for(p = prev; p; p = p->parent) {
sbin/unwind/libunbound/services/localzone.c
1027
node->parent = find_closest_parent(node, prev);
sbin/unwind/libunbound/services/localzone.c
1273
result = result->parent;
sbin/unwind/libunbound/services/localzone.c
2033
if(p->parent == match)
sbin/unwind/libunbound/services/localzone.c
2034
p->parent = newp;
sbin/unwind/libunbound/services/localzone.c
204
lock_protect(&z->lock, &z->parent, sizeof(*z)-sizeof(rbnode_type));
sbin/unwind/libunbound/services/localzone.c
2057
z->parent = find_closest_parent(z, prev);
sbin/unwind/libunbound/services/localzone.c
2069
set_kiddo_parents(z, z->parent, z);
sbin/unwind/libunbound/services/localzone.c
2079
set_kiddo_parents(z, z, z->parent);
sbin/unwind/libunbound/services/localzone.h
129
struct local_zone* parent;
sbin/unwind/libunbound/util/data/msgencode.c
167
p = p->parent;
sbin/unwind/libunbound/util/data/msgencode.c
190
n->parent = 0;
sbin/unwind/libunbound/util/data/msgencode.c
236
prevnode->parent = newnode;
sbin/unwind/libunbound/util/data/msgencode.c
249
prevnode->parent = closest;
sbin/unwind/libunbound/util/data/msgencode.c
88
struct compress_tree_node* parent;
sbin/unwind/libunbound/util/netevent.c
197
struct comm_base *base, struct comm_point* parent, size_t bufsize,
sbin/unwind/libunbound/util/netevent.c
5965
struct comm_point* parent, size_t bufsize,
sbin/unwind/libunbound/util/netevent.c
5997
c->tcp_parent = parent;
sbin/unwind/libunbound/util/netevent.c
5998
c->tcp_timeout_msec = parent->tcp_timeout_msec;
sbin/unwind/libunbound/util/netevent.c
5999
c->tcp_conn_limit = parent->tcp_conn_limit;
sbin/unwind/libunbound/util/netevent.c
6025
c->pp2_enabled = parent->pp2_enabled;
sbin/unwind/libunbound/util/netevent.c
6042
c->tcp_free = parent->tcp_free;
sbin/unwind/libunbound/util/netevent.c
6043
parent->tcp_free = c;
sbin/unwind/libunbound/util/netevent.c
6052
parent->tcp_free = c->tcp_free;
sbin/unwind/libunbound/util/netevent.c
6065
struct comm_point* parent, size_t bufsize, int harden_large_queries,
sbin/unwind/libunbound/util/netevent.c
6098
c->tcp_parent = parent;
sbin/unwind/libunbound/util/netevent.c
6099
c->tcp_timeout_msec = parent->tcp_timeout_msec;
sbin/unwind/libunbound/util/netevent.c
6100
c->tcp_conn_limit = parent->tcp_conn_limit;
sbin/unwind/libunbound/util/netevent.c
6164
c->tcp_free = parent->tcp_free;
sbin/unwind/libunbound/util/netevent.c
6165
parent->tcp_free = c;
sbin/unwind/libunbound/util/netevent.c
6174
parent->tcp_free = c->tcp_free;
sbin/unwind/libunbound/util/rbtree.c
113
right->left->parent = node;
sbin/unwind/libunbound/util/rbtree.c
115
right->parent = node->parent;
sbin/unwind/libunbound/util/rbtree.c
117
if (node->parent != RBTREE_NULL) {
sbin/unwind/libunbound/util/rbtree.c
118
if (node == node->parent->left) {
sbin/unwind/libunbound/util/rbtree.c
119
node->parent->left = right;
sbin/unwind/libunbound/util/rbtree.c
121
node->parent->right = right;
sbin/unwind/libunbound/util/rbtree.c
127
node->parent = right;
sbin/unwind/libunbound/util/rbtree.c
140
left->right->parent = node;
sbin/unwind/libunbound/util/rbtree.c
142
left->parent = node->parent;
sbin/unwind/libunbound/util/rbtree.c
144
if (node->parent != RBTREE_NULL) {
sbin/unwind/libunbound/util/rbtree.c
145
if (node == node->parent->right) {
sbin/unwind/libunbound/util/rbtree.c
146
node->parent->right = left;
sbin/unwind/libunbound/util/rbtree.c
148
node->parent->left = left;
sbin/unwind/libunbound/util/rbtree.c
154
node->parent = left;
sbin/unwind/libunbound/util/rbtree.c
163
while (node != rbtree->root && node->parent->color == RED) {
sbin/unwind/libunbound/util/rbtree.c
165
if (node->parent == node->parent->parent->left) {
sbin/unwind/libunbound/util/rbtree.c
166
uncle = node->parent->parent->right;
sbin/unwind/libunbound/util/rbtree.c
171
node->parent->color = BLACK;
sbin/unwind/libunbound/util/rbtree.c
175
node->parent->parent->color = RED;
sbin/unwind/libunbound/util/rbtree.c
178
node = node->parent->parent;
sbin/unwind/libunbound/util/rbtree.c
181
if (node == node->parent->right) {
sbin/unwind/libunbound/util/rbtree.c
182
node = node->parent;
sbin/unwind/libunbound/util/rbtree.c
186
node->parent->color = BLACK;
sbin/unwind/libunbound/util/rbtree.c
187
node->parent->parent->color = RED;
sbin/unwind/libunbound/util/rbtree.c
188
rbtree_rotate_right(rbtree, node->parent->parent);
sbin/unwind/libunbound/util/rbtree.c
191
uncle = node->parent->parent->left;
sbin/unwind/libunbound/util/rbtree.c
196
node->parent->color = BLACK;
sbin/unwind/libunbound/util/rbtree.c
200
node->parent->parent->color = RED;
sbin/unwind/libunbound/util/rbtree.c
203
node = node->parent->parent;
sbin/unwind/libunbound/util/rbtree.c
206
if (node == node->parent->left) {
sbin/unwind/libunbound/util/rbtree.c
207
node = node->parent;
sbin/unwind/libunbound/util/rbtree.c
211
node->parent->color = BLACK;
sbin/unwind/libunbound/util/rbtree.c
212
node->parent->parent->color = RED;
sbin/unwind/libunbound/util/rbtree.c
213
rbtree_rotate_left(rbtree, node->parent->parent);
sbin/unwind/libunbound/util/rbtree.c
235
rbnode_type *parent = RBTREE_NULL;
sbin/unwind/libunbound/util/rbtree.c
244
parent = node;
sbin/unwind/libunbound/util/rbtree.c
254
data->parent = parent;
sbin/unwind/libunbound/util/rbtree.c
260
if (parent != RBTREE_NULL) {
sbin/unwind/libunbound/util/rbtree.c
262
parent->left = data;
sbin/unwind/libunbound/util/rbtree.c
264
parent->right = data;
sbin/unwind/libunbound/util/rbtree.c
305
static void change_parent_ptr(rbtree_type* rbtree, rbnode_type* parent,
sbin/unwind/libunbound/util/rbtree.c
308
if(parent == RBTREE_NULL)
sbin/unwind/libunbound/util/rbtree.c
314
log_assert(parent->left == old || parent->right == old
sbin/unwind/libunbound/util/rbtree.c
315
|| parent->left == new || parent->right == new);
sbin/unwind/libunbound/util/rbtree.c
316
if(parent->left == old) parent->left = new;
sbin/unwind/libunbound/util/rbtree.c
317
if(parent->right == old) parent->right = new;
sbin/unwind/libunbound/util/rbtree.c
324
log_assert(child->parent == old || child->parent == new);
sbin/unwind/libunbound/util/rbtree.c
325
if(child->parent == old) child->parent = new;
sbin/unwind/libunbound/util/rbtree.c
352
change_parent_ptr(rbtree, to_delete->parent, to_delete, smright);
sbin/unwind/libunbound/util/rbtree.c
354
change_parent_ptr(rbtree, smright->parent, smright, to_delete);
sbin/unwind/libunbound/util/rbtree.c
368
smright->parent = smright;
sbin/unwind/libunbound/util/rbtree.c
372
swap_np(&to_delete->parent, &smright->parent);
sbin/unwind/libunbound/util/rbtree.c
384
change_parent_ptr(rbtree, to_delete->parent, to_delete, child);
sbin/unwind/libunbound/util/rbtree.c
385
change_child_ptr(child, to_delete, to_delete->parent);
sbin/unwind/libunbound/util/rbtree.c
396
else rbtree_delete_fixup(rbtree, child, to_delete->parent);
sbin/unwind/libunbound/util/rbtree.c
399
to_delete->parent = RBTREE_NULL;
sbin/unwind/libunbound/util/rbtree.c
445
child_parent = child_parent->parent;
sbin/unwind/libunbound/util/rbtree.c
573
rbnode_type *parent;
sbin/unwind/libunbound/util/rbtree.c
579
parent = node->parent;
sbin/unwind/libunbound/util/rbtree.c
580
while (parent != RBTREE_NULL && node == parent->right) {
sbin/unwind/libunbound/util/rbtree.c
581
node = parent;
sbin/unwind/libunbound/util/rbtree.c
582
parent = parent->parent;
sbin/unwind/libunbound/util/rbtree.c
584
node = parent;
sbin/unwind/libunbound/util/rbtree.c
592
rbnode_type *parent;
sbin/unwind/libunbound/util/rbtree.c
598
parent = node->parent;
sbin/unwind/libunbound/util/rbtree.c
599
while (parent != RBTREE_NULL && node == parent->left) {
sbin/unwind/libunbound/util/rbtree.c
600
node = parent;
sbin/unwind/libunbound/util/rbtree.c
601
parent = parent->parent;
sbin/unwind/libunbound/util/rbtree.c
603
node = parent;
sbin/unwind/libunbound/util/rbtree.h
57
rbnode_type *parent;
sbin/unwind/libunbound/util/storage/dnstree.c
105
node->parent = NULL;
sbin/unwind/libunbound/util/storage/dnstree.c
116
node->parent = NULL;
sbin/unwind/libunbound/util/storage/dnstree.c
126
node->parent = NULL;
sbin/unwind/libunbound/util/storage/dnstree.c
135
for(p = prev; p; p = p->parent)
sbin/unwind/libunbound/util/storage/dnstree.c
140
node->parent = p;
sbin/unwind/libunbound/util/storage/dnstree.c
158
node->parent = NULL;
sbin/unwind/libunbound/util/storage/dnstree.c
167
for(p = prev; p; p = p->parent)
sbin/unwind/libunbound/util/storage/dnstree.c
172
node->parent = p;
sbin/unwind/libunbound/util/storage/dnstree.c
217
result = result->parent;
sbin/unwind/libunbound/util/storage/dnstree.c
248
result = result->parent;
sbin/unwind/libunbound/util/storage/dnstree.h
59
struct name_tree_node* parent;
sbin/unwind/libunbound/util/storage/dnstree.h
81
struct addr_tree_node* parent;
sbin/unwind/libunbound/validator/val_anchor.c
1166
result = result->parent;
sbin/unwind/libunbound/validator/val_anchor.c
163
node->parent = NULL;
sbin/unwind/libunbound/validator/val_anchor.c
173
for(p = prev; p; p = p->parent)
sbin/unwind/libunbound/validator/val_anchor.c
179
node->parent = p;
sbin/unwind/libunbound/validator/val_anchor.h
104
struct trust_anchor* parent;
sbin/unwind/libunbound/validator/val_neg.c
1124
zone = zone->parent;
sbin/unwind/libunbound/validator/val_neg.c
1234
data = data->parent;
sbin/unwind/libunbound/validator/val_neg.c
1536
zone = zone->parent;
sbin/unwind/libunbound/validator/val_neg.c
210
p = p->parent;
sbin/unwind/libunbound/validator/val_neg.c
216
np = p->parent;
sbin/unwind/libunbound/validator/val_neg.c
245
p = p->parent;
sbin/unwind/libunbound/validator/val_neg.c
251
np = p->parent;
sbin/unwind/libunbound/validator/val_neg.c
396
result = result->parent;
sbin/unwind/libunbound/validator/val_neg.c
435
result = result->parent;
sbin/unwind/libunbound/validator/val_neg.c
484
struct val_neg_zone* parent)
sbin/unwind/libunbound/validator/val_neg.c
487
int tolabs = parent?parent->labs:0;
sbin/unwind/libunbound/validator/val_neg.c
499
np = p->parent;
sbin/unwind/libunbound/validator/val_neg.c
509
prev->parent = zone;
sbin/unwind/libunbound/validator/val_neg.c
524
for(p=zone; p; p = p->parent) {
sbin/unwind/libunbound/validator/val_neg.c
534
struct val_neg_zone* parent;
sbin/unwind/libunbound/validator/val_neg.c
539
parent = neg_closest_zone_parent(neg, nm, nm_len, labs, dclass);
sbin/unwind/libunbound/validator/val_neg.c
540
if(parent && query_dname_compare(parent->name, nm) == 0)
sbin/unwind/libunbound/validator/val_neg.c
541
return parent; /* already exists, weird */
sbin/unwind/libunbound/validator/val_neg.c
543
log_assert(!parent || parent->count > 0);
sbin/unwind/libunbound/validator/val_neg.c
544
zone = neg_zone_chain(nm, nm_len, labs, dclass, parent);
sbin/unwind/libunbound/validator/val_neg.c
552
np = p->parent;
sbin/unwind/libunbound/validator/val_neg.c
559
p->parent = parent;
sbin/unwind/libunbound/validator/val_neg.c
630
uint8_t* nm, size_t nm_len, int labs, struct val_neg_data* parent)
sbin/unwind/libunbound/validator/val_neg.c
633
int tolabs = parent?parent->labs:0;
sbin/unwind/libunbound/validator/val_neg.c
645
np = p->parent;
sbin/unwind/libunbound/validator/val_neg.c
655
prev->parent = el;
sbin/unwind/libunbound/validator/val_neg.c
752
struct val_neg_data* parent;
sbin/unwind/libunbound/validator/val_neg.c
767
parent = neg_closest_data_parent(zone, nm, nm_len, labs);
sbin/unwind/libunbound/validator/val_neg.c
768
if(parent && query_dname_compare(parent->name, nm) == 0) {
sbin/unwind/libunbound/validator/val_neg.c
770
log_assert(parent->count > 0);
sbin/unwind/libunbound/validator/val_neg.c
771
el = parent;
sbin/unwind/libunbound/validator/val_neg.c
777
log_assert(!parent || parent->count > 0);
sbin/unwind/libunbound/validator/val_neg.c
779
el = neg_data_chain(nm, nm_len, labs, parent);
sbin/unwind/libunbound/validator/val_neg.c
789
np = p->parent;
sbin/unwind/libunbound/validator/val_neg.c
797
p->parent = parent;
sbin/unwind/libunbound/validator/val_neg.c
807
for(p=el; p; p = p->parent) {
sbin/unwind/libunbound/validator/val_neg.h
105
struct val_neg_zone* parent;
sbin/unwind/libunbound/validator/val_neg.h
153
struct val_neg_data* parent;
sys/arch/alpha/alpha/api_up1000.c
164
struct device *parent = dev->dv_parent;
sys/arch/alpha/alpha/api_up1000.c
202
if (parent != pcidev)
sys/arch/alpha/alpha/api_up1000.c
224
if (parent->dv_parent != scsidev)
sys/arch/alpha/alpha/api_up1000.c
257
if ((strcmp("pciide", parent->dv_cfdata->cf_driver->cd_name) != 0)) {
sys/arch/alpha/alpha/api_up1000.c
260
if (parent != scsidev)
sys/arch/alpha/alpha/api_up1000.c
278
if (parent != pcidev)
sys/arch/alpha/alpha/cpu.c
201
cpumatch(struct device *parent, void *cfdata, void *aux)
sys/arch/alpha/alpha/cpu.c
219
cpuattach(struct device *parent, struct device *dev, void *aux)
sys/arch/alpha/alpha/dec_1000a.c
235
struct device *parent = dev->dv_parent;
sys/arch/alpha/alpha/dec_1000a.c
270
if (parent != pcidev)
sys/arch/alpha/alpha/dec_1000a.c
306
if (parent->dv_parent != ctrlrdev)
sys/arch/alpha/alpha/dec_2100_a50.c
184
struct device *parent = dev->dv_parent;
sys/arch/alpha/alpha/dec_2100_a50.c
219
if (parent != pcidev)
sys/arch/alpha/alpha/dec_2100_a50.c
255
if (parent->dv_parent != ctrlrdev)
sys/arch/alpha/alpha/dec_3000_300.c
157
struct device *parent = dev->dv_parent;
sys/arch/alpha/alpha/dec_3000_300.c
195
if (parent != (struct device *)tcdsdev)
sys/arch/alpha/alpha/dec_3000_300.c
213
if (parent->dv_parent != scsidev)
sys/arch/alpha/alpha/dec_3000_300.c
245
strcmp(parent->dv_cfdata->cf_driver->cd_name, "ioasic")
sys/arch/alpha/alpha/dec_3000_500.c
175
struct device *parent = dev->dv_parent;
sys/arch/alpha/alpha/dec_3000_500.c
213
if (parent != (struct device *)tcdsdev)
sys/arch/alpha/alpha/dec_3000_500.c
231
if (parent->dv_parent != scsidev)
sys/arch/alpha/alpha/dec_3000_500.c
263
strcmp(parent->dv_cfdata->cf_driver->cd_name, "ioasic")
sys/arch/alpha/alpha/dec_550.c
165
struct device *parent = dev->dv_parent;
sys/arch/alpha/alpha/dec_550.c
198
if (parent != pcidev)
sys/arch/alpha/alpha/dec_550.c
232
if (parent->dv_parent != ctrlrdev)
sys/arch/alpha/alpha/dec_550.c
251
if ((strcmp("pciide", parent->dv_cfdata->cf_driver->cd_name) != 0))
sys/arch/alpha/alpha/dec_550.c
253
if (parent != ctrlrdev)
sys/arch/alpha/alpha/dec_6600.c
192
struct device *parent = dev->dv_parent;
sys/arch/alpha/alpha/dec_6600.c
231
while (parent) {
sys/arch/alpha/alpha/dec_6600.c
232
if (parent == primarydev)
sys/arch/alpha/alpha/dec_6600.c
234
parent = parent->dv_parent;
sys/arch/alpha/alpha/dec_6600.c
236
if (!parent)
sys/arch/alpha/alpha/dec_6600.c
251
if (parent != pcidev)
sys/arch/alpha/alpha/dec_6600.c
285
if (parent->dv_parent != ctrlrdev)
sys/arch/alpha/alpha/dec_6600.c
304
if ((strcmp("pciide", parent->dv_cfdata->cf_driver->cd_name) != 0))
sys/arch/alpha/alpha/dec_6600.c
306
if (parent != ctrlrdev)
sys/arch/alpha/alpha/dec_alphabook1.c
162
struct device *parent = dev->dv_parent;
sys/arch/alpha/alpha/dec_alphabook1.c
197
if (parent != pcidev)
sys/arch/alpha/alpha/dec_alphabook1.c
233
if (parent->dv_parent != ctrlrdev)
sys/arch/alpha/alpha/dec_axppci_33.c
207
struct device *parent = dev->dv_parent;
sys/arch/alpha/alpha/dec_axppci_33.c
242
if (parent != pcidev)
sys/arch/alpha/alpha/dec_axppci_33.c
278
if (parent->dv_parent != ctrlrdev)
sys/arch/alpha/alpha/dec_eb164.c
167
struct device *parent = dev->dv_parent;
sys/arch/alpha/alpha/dec_eb164.c
200
if (parent != pcidev)
sys/arch/alpha/alpha/dec_eb164.c
234
if (parent->dv_parent != ctrlrdev)
sys/arch/alpha/alpha/dec_eb164.c
254
if ((strcmp("pciide", parent->dv_cfdata->cf_driver->cd_name) != 0))
sys/arch/alpha/alpha/dec_eb164.c
256
if (parent != ctrlrdev)
sys/arch/alpha/alpha/dec_eb64plus.c
164
struct device *parent = dev->dv_parent;
sys/arch/alpha/alpha/dec_eb64plus.c
199
if (parent != pcidev)
sys/arch/alpha/alpha/dec_eb64plus.c
235
if (parent->dv_parent != ctrlrdev)
sys/arch/alpha/alpha/dec_kn20aa.c
164
struct device *parent = dev->dv_parent;
sys/arch/alpha/alpha/dec_kn20aa.c
199
if (parent != pcidev)
sys/arch/alpha/alpha/dec_kn20aa.c
235
if (parent->dv_parent != ctrlrdev)
sys/arch/alpha/alpha/dec_kn300.c
204
struct device *parent = dev->dv_parent;
sys/arch/alpha/alpha/dec_kn300.c
263
if (parent != pcidev)
sys/arch/alpha/alpha/dec_kn300.c
296
if (parent->dv_parent != ctrlrdev)
sys/arch/alpha/alpha/mainbus.c
58
mbmatch(struct device *parent, void *cf, void *aux)
sys/arch/alpha/alpha/mainbus.c
68
mbattach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/isa/mcclock_isa.c
66
mcclock_isa_match(struct device *parent, void *match, void *aux)
sys/arch/alpha/isa/mcclock_isa.c
89
mcclock_isa_attach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/mcbus/mcbus.c
102
mcbussbm(struct device *parent, void *cf, void *aux)
sys/arch/alpha/mcbus/mcbus.c
112
return ((*mcf->cf_attach->ca_match)(parent, mcf, aux));
sys/arch/alpha/mcbus/mcbus.c
116
mcbusmatch(struct device *parent, void *cf, void *aux)
sys/arch/alpha/mcbus/mcbus.c
134
mcbusattach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/mcbus/mcmem.c
64
mcmemmatch(struct device *parent, void *cf, void *aux)
sys/arch/alpha/mcbus/mcmem.c
75
mcmemattach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/pci/apecs.c
108
apecsmatch(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/apecs.c
158
apecsattach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/pci/apecs_pci.c
70
apecs_attach_hook(struct device *parent, struct device *self,
sys/arch/alpha/pci/cia.c
144
ciamatch(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/cia.c
264
ciaattach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/pci/cia_pci.c
68
cia_attach_hook(struct device *parent, struct device *self,
sys/arch/alpha/pci/irongate.c
108
irongate_match(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/irongate.c
123
irongate_attach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/pci/irongate_pci.c
84
irongate_attach_hook(struct device *parent, struct device *self,
sys/arch/alpha/pci/lca.c
110
lcamatch(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/lca.c
191
lcaattach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/pci/lca_pci.c
70
lca_attach_hook(struct device *parent, struct device *self,
sys/arch/alpha/pci/mcpcia.c
129
mcpciamatch(struct device *parent, void *cf, void *aux)
sys/arch/alpha/pci/mcpcia.c
140
mcpciaattach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/pci/mcpcia_pci.c
71
mcpcia_attach_hook(struct device *parent, struct device *self,
sys/arch/alpha/pci/sio.c
105
siomatch(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/sio.c
129
pcebmatch(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/sio.c
141
sioattach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/pci/sio.c
227
sio_isa_attach_hook(struct device *parent, struct device *self,
sys/arch/alpha/pci/sio.c
234
sio_eisa_attach_hook(struct device *parent, struct device *self,
sys/arch/alpha/pci/tsc.c
106
tscattach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/pci/tsc.c
170
tspmatch(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/tsc.c
184
tspattach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/pci/tsc.c
92
tscmatch(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/tsciic.c
103
tsciic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/pci/tsciic.c
95
tsciic_match(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/tsp_pci.c
77
tsp_attach_hook(struct device *parent, struct device *self,
sys/arch/alpha/tc/ioasic.c
134
ioasicmatch(struct device *parent, void *cfdata, void *aux)
sys/arch/alpha/tc/ioasic.c
153
ioasicattach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/tc/ioasic.c
200
tc_intr_establish(parent, ta->ta_cookie, IPL_NONE, ioasic_intr, sc,
sys/arch/alpha/tc/mcclock_ioasic.c
69
mcclock_ioasic_match(struct device *parent, void *match, void *aux)
sys/arch/alpha/tc/mcclock_ioasic.c
80
mcclock_ioasic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/alpha/tc/tcasic.c
65
tcasicmatch(struct device *parent, void *cfdata, void *aux)
sys/arch/alpha/tc/tcasic.c
80
tcasicattach(struct device *parent, struct device *self, void *aux)
sys/arch/amd64/amd64/acpi_machdep.c
241
acpi_probe(struct device *parent, struct cfdata *match,
sys/arch/amd64/amd64/acpi_machdep.c
75
acpi_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/amd64/acpi_machdep.c
84
if (!acpi_probe(parent, cf, ba))
sys/arch/amd64/amd64/acpi_machdep.c
91
acpi_attach(struct device *parent, struct device *self, void *aux)
sys/arch/amd64/amd64/bios.c
72
bios_match(struct device *parent, void *match , void *aux)
sys/arch/amd64/amd64/bios.c
83
bios_attach(struct device *parent, struct device *self, void *aux)
sys/arch/amd64/amd64/cpu.c
477
cpu_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/amd64/cpu.c
582
cpu_attach(struct device *parent, struct device *self, void *aux)
sys/arch/amd64/amd64/efi_machdep.c
47
efi_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/amd64/efi_machdep.c
60
efi_attach(struct device *parent, struct device *self, void *aux)
sys/arch/amd64/amd64/efifb.c
145
efifb_match(struct device *parent, void *cf, void *aux)
sys/arch/amd64/amd64/efifb.c
163
efifb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/amd64/amd64/ioapic.c
231
ioapic_match(struct device *parent, void *v, void *aux)
sys/arch/amd64/amd64/ioapic.c
261
ioapic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/amd64/amd64/mainbus.c
138
mainbus_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/amd64/mainbus.c
147
mainbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/amd64/amd64/mpbios.c
201
mpbios_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/amd64/mpbios.c
212
mpbios_attach(struct device *parent, struct device *self, void *aux)
sys/arch/amd64/amd64/mpbios.c
232
mp_match(struct device *parent, void *cfv, void *aux)
sys/arch/amd64/amd64/mpbios.c
240
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/arch/amd64/amd64/rbus_machdep.c
94
pccbb_attach_hook(struct device *parent, struct device *self,
sys/arch/amd64/amd64/vmm_machdep.c
276
vmm_probe_machdep(struct device *parent, void *match, void *aux)
sys/arch/amd64/amd64/vmm_machdep.c
282
vmm_attach_machdep(struct device *parent, struct device *self, void *aux)
sys/arch/amd64/isa/isa_machdep.c
295
isa_attach_hook(struct device *parent, struct device *self,
sys/arch/amd64/pci/aapic.c
43
aapic_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/pci/aapic.c
55
aapic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/amd64/pci/acpipci.c
102
acpipci_attach(struct device *parent, struct device *self, void *aux)
sys/arch/amd64/pci/acpipci.c
116
sc->sc_acpi = (struct acpi_softc *)parent;
sys/arch/amd64/pci/acpipci.c
174
acpipci_attach_bus(struct device *parent, struct acpipci_softc *sc)
sys/arch/amd64/pci/acpipci.c
230
config_found(parent, &pba, acpipci_print);
sys/arch/amd64/pci/acpipci.c
234
acpipci_attach_busses(struct device *parent)
sys/arch/amd64/pci/acpipci.c
240
acpipci_attach_bus(parent, acpipci_cd.cd_devs[i]);
sys/arch/amd64/pci/acpipci.c
93
acpipci_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/pci/pchb.c
133
pchbmatch(struct device *parent, void *match, void *aux)
sys/arch/amd64/pci/pchb.c
145
pchbattach(struct device *parent, struct device *self, void *aux)
sys/arch/amd64/pci/pci_machdep.c
170
pci_attach_hook(struct device *parent, struct device *self,
sys/arch/amd64/pci/pcib.c
100
pcibattach(struct device *parent, struct device *self, void *aux)
sys/arch/amd64/pci/pcib.c
61
pcibmatch(struct device *parent, void *match, void *aux)
sys/arch/arm/arm/cpu.c
323
cpu_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm/arm/cpu.c
342
cpu_attach(struct device *parent, struct device *dev, void *aux)
sys/arch/arm/cortex/agtimer.c
133
agtimer_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm/cortex/agtimer.c
141
agtimer_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm/cortex/ampintc.c
219
ampintc_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm/cortex/ampintc.c
232
ampintc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm/cortex/ampintc.c
382
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/arch/arm/cortex/ampintc.c
848
ampintc_msi_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm/cortex/ampintc.c
856
ampintc_msi_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm/cortex/amptimer.c
144
amptimer_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm/cortex/amptimer.c
153
amptimer_attach(struct device *parent, struct device *self, void *args)
sys/arch/arm/cortex/arml2cc.c
101
void arml2cc_attach(struct device *parent, struct device *self, void *args);
sys/arch/arm/cortex/arml2cc.c
123
arml2cc_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm/cortex/arml2cc.c
132
arml2cc_attach(struct device *parent, struct device *self, void *args)
sys/arch/arm/cortex/cortex.c
124
cortexattach(struct device *parent, struct device *self, void *aux)
sys/arch/arm/cortex/cortex.c
132
cortexsearch(struct device *parent, void *vcf, void *aux)
sys/arch/arm/cortex/cortex.c
143
if ((*cf->cf_attach->ca_match)(parent, cf, &ca) == 0)
sys/arch/arm/cortex/cortex.c
146
config_attach(parent, cf, &ca, cortexprint);
sys/arch/arm/cortex/cortex.c
97
cortexmatch(struct device *parent, void *cfdata, void *aux)
sys/arch/arm/mainbus/mainbus.c
219
mainbus_match_status(struct device *parent, void *match, void *aux)
sys/arch/arm/mainbus/mainbus.c
221
struct mainbus_softc *sc = (struct mainbus_softc *)parent;
sys/arch/arm/mainbus/mainbus.c
229
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/arm/mainbus/mainbus.c
256
mainbus_match_primary(struct device *parent, void *match, void *aux)
sys/arch/arm/mainbus/mainbus.c
267
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/arm/mainbus/mainbus.c
271
mainbus_match_secondary(struct device *parent, void *match, void *aux)
sys/arch/arm/mainbus/mainbus.c
282
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/arm/mainbus/mainbus.c
85
mainbus_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm/mainbus/mainbus.c
94
mainbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm/simplebus/simplebus.c
261
int parent, rlen, rone;
sys/arch/arm/simplebus/simplebus.c
264
parent = OF_parent(sc->sc_node);
sys/arch/arm/simplebus/simplebus.c
265
if (parent == 0)
sys/arch/arm/simplebus/simplebus.c
54
simplebus_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm/simplebus/simplebus.c
66
simplebus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/arm64/acpi_machdep.c
49
acpi_fdt_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/arm64/acpi_machdep.c
57
acpi_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/arm64/cpu.c
1501
cpu_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm64/arm64/cpu.c
1518
cpu_attach(struct device *parent, struct device *dev, void *aux)
sys/arch/arm64/arm64/intr.c
368
int i, len, ncells, parent;
sys/arch/arm64/arm64/intr.c
384
parent = arm_intr_get_parent(node);
sys/arch/arm64/arm64/intr.c
386
if (ic->ic_node == parent)
sys/arch/arm64/arm64/intr.c
599
int parent;
sys/arch/arm64/arm64/intr.c
602
parent = arm_intr_get_parent(ic->ic_node);
sys/arch/arm64/arm64/intr.c
604
if (ic->ic_node == parent)
sys/arch/arm64/dev/acpicpu.c
101
sc->sc_acpi = (struct acpi_softc *)parent;
sys/arch/arm64/dev/acpicpu.c
78
acpicpu_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/acpicpu.c
87
acpicpu_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/acpiiort.c
43
acpiiort_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/acpiiort.c
61
acpiiort_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/acpipci.c
133
acpipci_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/acpipci.c
142
acpipci_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/acpipci.c
152
sc->sc_acpi = (struct acpi_softc *)parent;
sys/arch/arm64/dev/acpipci.c
319
acpipci_attach_hook(struct device *parent, struct device *self,
sys/arch/arm64/dev/agintc.c
1589
agintc_msi_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm64/dev/agintc.c
1607
agintc_msi_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/agintc.c
287
agintc_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm64/dev/agintc.c
306
agintc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/agintc.c
656
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/arch/arm64/dev/agtimer.c
168
agtimer_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm64/dev/agtimer.c
177
agtimer_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/ampchwm.c
101
ampchwm_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/ampchwm.c
112
ampchwm_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/ampchwm.c
121
sc->sc_acpi = (struct acpi_softc *)parent;
sys/arch/arm64/dev/ampintc.c
225
ampintc_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm64/dev/ampintc.c
238
ampintc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/ampintc.c
349
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/arch/arm64/dev/ampintc.c
901
ampintc_msi_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm64/dev/ampintc.c
909
ampintc_msi_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplaudio.c
102
aplaudio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplaudio.c
94
aplaudio_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplcpu.c
106
aplcpu_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplcpu.c
116
aplcpu_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/apldart.c
245
apldart_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apldart.c
255
apldart_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/apldc.c
1176
apldckbd_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apldc.c
1184
apldckbd_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/apldc.c
119
apldc_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apldc.c
1191
sc->sc_hidev = (struct apldchidev_softc *)parent;
sys/arch/arm64/dev/apldc.c
127
apldc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/apldc.c
1373
apldcms_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apldc.c
1381
apldcms_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/apldc.c
1386
sc->sc_hidev = (struct apldchidev_softc *)parent;
sys/arch/arm64/dev/apldc.c
159
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/arch/arm64/dev/apldc.c
345
apldchidev_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm64/dev/apldc.c
353
apldchidev_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/apldma.c
127
apldma_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apldma.c
136
apldma_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/apldog.c
71
apldog_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apldog.c
80
apldog_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplefuse.c
52
aplefuse_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplefuse.c
60
aplefuse_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplhidev.c
189
aplhidev_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplhidev.c
200
aplhidev_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplhidev.c
603
aplkbd_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplhidev.c
611
aplkbd_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplhidev.c
617
sc->sc_hidev = (struct aplhidev_softc *)parent;
sys/arch/arm64/dev/aplhidev.c
807
aplms_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplhidev.c
815
aplms_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplhidev.c
820
sc->sc_hidev = (struct aplhidev_softc *)parent;
sys/arch/arm64/dev/apliic.c
104
apliic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/apliic.c
95
apliic_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplintc.c
197
aplintc_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplintc.c
206
aplintc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplmbox.c
80
aplmbox_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplmbox.c
89
aplmbox_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplmca.c
167
aplmca_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplmca.c
176
aplmca_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplnco.c
77
aplnco_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplnco.c
86
aplnco_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplns.c
108
aplns_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplns.c
170
nvme_ans_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplns.c
179
nvme_ans_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplns.c
99
aplns_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplpcie.c
176
aplpcie_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplpcie.c
213
aplpcie_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplpcie.c
685
aplpcie_attach_hook(struct device *parent, struct device *self,
sys/arch/arm64/dev/aplpinctrl.c
113
aplpinctrl_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplpinctrl.c
122
aplpinctrl_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplpmgr.c
82
aplpmgr_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplpmgr.c
94
aplpmgr_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplpmu.c
101
aplpmu_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplpmu.c
85
aplpmu_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplpwm.c
69
aplpwm_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplpwm.c
77
aplpwm_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplrtk.c
65
aplrtk_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplrtk.c
73
aplrtk_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplsart.c
76
aplsart_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplsart.c
85
aplsart_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplsmc.c
216
aplsmc_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplsmc.c
225
aplsmc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplspi.c
113
aplspi_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplspi.c
122
aplspi_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/aplspmi.c
71
aplspmi_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplspmi.c
80
aplspmi_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/apm.c
125
apmmatch(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apm.c
131
apmattach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/bcm2712_mip.c
82
bcmmip_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/bcm2712_mip.c
90
bcmmip_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/bcm2836_intr.c
142
bcm_intc_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm64/dev/bcm2836_intr.c
153
bcm_intc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/efi_machdep.c
66
efi_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/efi_machdep.c
74
efi_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/mainbus.c
100
mainbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/mainbus.c
297
mainbus_match_status(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/mainbus.c
299
struct mainbus_softc *sc = (struct mainbus_softc *)parent;
sys/arch/arm64/dev/mainbus.c
307
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/arm64/dev/mainbus.c
342
mainbus_match_primary(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/mainbus.c
351
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/arm64/dev/mainbus.c
355
mainbus_match_secondary(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/mainbus.c
364
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/arm64/dev/mainbus.c
92
mainbus_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm64/dev/rpiclock.c
195
rpiclock_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/rpiclock.c
203
rpiclock_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/rpiclock.c
430
uint32_t parent, freq;
sys/arch/arm64/dev/rpiclock.c
459
parent = ffs(sel) - 1;
sys/arch/arm64/dev/rpiclock.c
462
parent = (ctrl & CLK_CTRL_AUXSRC_MASK) >>
sys/arch/arm64/dev/rpiclock.c
465
if (parent >= nitems(clk->parents))
sys/arch/arm64/dev/rpiclock.c
467
parent = clk->parents[parent];
sys/arch/arm64/dev/rpiclock.c
468
if (parent == 0)
sys/arch/arm64/dev/rpiclock.c
471
freq = rpiclock_get_frequency(sc, &parent);
sys/arch/arm64/dev/rpiclock.c
485
uint32_t parent, parent_freq;
sys/arch/arm64/dev/rpiclock.c
560
parent = clk->parents[best_mux];
sys/arch/arm64/dev/rpiclock.c
561
parent_freq = rpiclock_get_frequency(sc, &parent);
sys/arch/arm64/dev/rpigpio.c
146
rpigpio_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/rpigpio.c
154
rpigpio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/rpipwm.c
77
rpipwm_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/rpipwm.c
85
rpipwm_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/rpirtc.c
51
rpirtc_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/rpirtc.c
59
rpirtc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/rpone.c
92
rpone_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/rpone.c
98
rpone_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/simplebus.c
287
int parent, rlen, rone;
sys/arch/arm64/dev/simplebus.c
290
parent = OF_parent(sc->sc_node);
sys/arch/arm64/dev/simplebus.c
291
if (parent == 0)
sys/arch/arm64/dev/simplebus.c
341
int parent, rlen, rone;
sys/arch/arm64/dev/simplebus.c
344
parent = OF_parent(sc->sc_node);
sys/arch/arm64/dev/simplebus.c
345
if (parent == 0)
sys/arch/arm64/dev/simplebus.c
55
simplebus_match(struct device *parent, void *cfdata, void *aux)
sys/arch/arm64/dev/simplebus.c
73
simplebus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/smbios.c
64
smbios_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/smbios.c
72
smbios_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/smmu_acpi.c
64
smmu_acpi_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/smmu_acpi.c
76
smmu_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/arch/arm64/dev/smmu_fdt.c
68
smmu_fdt_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/smmu_fdt.c
78
smmu_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/armv7/armv7.c
57
armv7_submatch(struct device *parent, void *child, void *aux)
sys/arch/armv7/armv7/armv7.c
92
armv7_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/armv7/intr.c
344
int i, len, ncells, parent;
sys/arch/armv7/armv7/intr.c
360
parent = arm_intr_get_parent(node);
sys/arch/armv7/armv7/intr.c
362
if (ic->ic_node == parent)
sys/arch/armv7/armv7/intr.c
575
int parent;
sys/arch/armv7/armv7/intr.c
578
parent = arm_intr_get_parent(ic->ic_node);
sys/arch/armv7/armv7/intr.c
580
if (ic->ic_node == parent)
sys/arch/armv7/broadcom/bcm2836_intr.c
132
bcm_intc_match(struct device *parent, void *cfdata, void *aux)
sys/arch/armv7/broadcom/bcm2836_intr.c
143
bcm_intc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/exynos/crosec.c
52
cros_ec_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/crosec.c
62
cros_ec_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/exynos/exclock.c
114
exclock_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/exclock.c
126
exclock_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/exynos/exdisplay.c
105
exdisplay_match(struct device *parent, void *v, void *aux)
sys/arch/armv7/exynos/exdisplay.c
118
exdisplay_attach(struct device *parent, struct device *self, void *args)
sys/arch/armv7/exynos/exdisplay.c
50
int exdisplay_match(struct device *parent, void *v, void *aux);
sys/arch/armv7/exynos/exdisplay.c
51
void exdisplay_attach(struct device *parent, struct device *self, void *args);
sys/arch/armv7/exynos/exdog.c
54
int exdog_match(struct device *parent, void *v, void *aux);
sys/arch/armv7/exynos/exdog.c
55
void exdog_attach(struct device *parent, struct device *self, void *args);
sys/arch/armv7/exynos/exdog.c
68
exdog_match(struct device *parent, void *cfdata, void *aux)
sys/arch/armv7/exynos/exdog.c
77
exdog_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/exynos/exdwusb.c
44
exdwusb_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/exdwusb.c
52
exdwusb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/exynos/exdwusb.c
59
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/arch/armv7/exynos/exehci.c
103
exehci_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/exehci.c
111
exehci_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/exynos/exgpio.c
134
exgpio_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/exgpio.c
142
exgpio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/exynos/exiic.c
112
exiic_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/exiic.c
120
exiic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/exynos/exmct.c
58
exmct_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/exmct.c
66
exmct_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/exynos/expower.c
58
expower_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/expower.c
70
expower_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/exynos/expower.c
90
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/arch/armv7/exynos/tps65090.c
104
tps65090_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/exynos/tps65090.c
94
tps65090_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/imx/imxahci.c
111
imxahci_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/imx/imxahci.c
119
imxahci_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/imx/imxtemp.c
101
imxtemp_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/imx/imxtemp.c
109
imxtemp_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/marvell/mvacc.c
104
mvacc_attach(struct device *parent, struct device *self, void *args)
sys/arch/armv7/marvell/mvacc.c
94
mvacc_match(struct device *parent, void *cfdata, void *aux)
sys/arch/armv7/marvell/mvagc.c
60
mvagc_match(struct device *parent, void *cfdata, void *aux)
sys/arch/armv7/marvell/mvagc.c
69
mvagc_attach(struct device *parent, struct device *self, void *args)
sys/arch/armv7/marvell/mvahci.c
101
mvahci_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/marvell/mvahci.c
109
mvahci_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/marvell/mvmbus.c
103
mvmbus_match(struct device *parent, void *cfdata, void *aux)
sys/arch/armv7/marvell/mvmbus.c
116
mvmbus_attach(struct device *parent, struct device *self, void *args)
sys/arch/armv7/marvell/mvmbus.c
173
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/arch/armv7/marvell/mvmpic.c
101
mpic_attach(struct device *parent, struct device *self, void *args)
sys/arch/armv7/marvell/mvmpic.c
93
mpic_match(struct device *parent, void *cfdata, void *aux)
sys/arch/armv7/marvell/mvodog.c
62
mvodog_match(struct device *parent, void *cfdata, void *aux)
sys/arch/armv7/marvell/mvodog.c
70
mvodog_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/marvell/mvortc.c
74
mvortc_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/marvell/mvortc.c
82
mvortc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/marvell/mvpcie.c
173
mvpcie_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/marvell/mvpcie.c
208
mvpcie_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/marvell/mvpcie.c
604
mvpcie_attach_hook(struct device *parent, struct device *self,
sys/arch/armv7/marvell/mvpxa.c
102
mvpxa_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/marvell/mvpxa.c
110
mvpxa_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/marvell/mvsysctrl.c
64
mvsysctrl_match(struct device *parent, void *cfdata, void *aux)
sys/arch/armv7/marvell/mvsysctrl.c
73
mvsysctrl_attach(struct device *parent, struct device *self, void *args)
sys/arch/armv7/marvell/mvxhci.c
108
mvxhci_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/marvell/mvxhci.c
99
mvxhci_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/amdisplay.c
167
amdisplay_match(struct device *parent, void *v, void *aux)
sys/arch/armv7/omap/amdisplay.c
174
amdisplay_attach(struct device *parent, struct device *self, void *args)
sys/arch/armv7/omap/dmtimer.c
100
void dmtimer_attach(struct device *parent, struct device *self, void *args);
sys/arch/armv7/omap/dmtimer.c
150
dmtimer_attach(struct device *parent, struct device *self, void *args)
sys/arch/armv7/omap/edma.c
104
edma_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/omap/edma.c
96
edma_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/gptimer.c
143
gptimer_attach(struct device *parent, struct device *self, void *args)
sys/arch/armv7/omap/gptimer.c
98
void gptimer_attach(struct device *parent, struct device *self, void *args);
sys/arch/armv7/omap/if_cpsw.c
322
cpsw_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/if_cpsw.c
330
cpsw_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/omap/intc.c
123
intc_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/intc.c
132
intc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/omap/nxphdmi.c
297
nxphdmi_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/nxphdmi.c
308
nxphdmi_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/omap/omap.c
122
omap_match(struct device *parent, void *cfdata, void *aux)
sys/arch/armv7/omap/omapid.c
46
void omapid_attach(struct device *parent, struct device *self, void *args);
sys/arch/armv7/omap/omapid.c
59
omapid_attach(struct device *parent, struct device *self, void *args)
sys/arch/armv7/omap/omclock.c
72
omclock_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/omclock.c
80
omclock_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/omap/omcm.c
43
omcm_match(struct device *parent, void *cfdata, void *aux)
sys/arch/armv7/omap/omcm.c
51
omcm_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/omap/omcm.c
56
simplebus_attach(parent, &sc->sc_bus.sc_dev, faa);
sys/arch/armv7/omap/omdisplay.c
422
int omdisplay_match(struct device *parent, void *v, void *aux);
sys/arch/armv7/omap/omdisplay.c
423
void omdisplay_attach(struct device *parent, struct device *self, void *args);
sys/arch/armv7/omap/omdisplay.c
504
omdisplay_match(struct device *parent, void *v, void *aux)
sys/arch/armv7/omap/omdisplay.c
511
omdisplay_attach(struct device *parent, struct device *self, void *args)
sys/arch/armv7/omap/omdog.c
76
omdog_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/omdog.c
84
omdog_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/omap/omehci.c
107
omehci_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/omap/omehci.c
99
omehci_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/omgpio.c
238
omgpio_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/omgpio.c
251
omgpio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/omap/ommmc.c
285
ommmc_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/ommmc.c
295
ommmc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/omap/omohci.c
118
omohci_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/omohci.c
129
omohci_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/omap/omrng.c
86
omrng_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/omrng.c
94
omrng_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/omap/omsysc.c
45
omsysc_match(struct device *parent, void *cfdata, void *aux)
sys/arch/armv7/omap/omsysc.c
67
omsysc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/omap/omsysc.c
76
simplebus_attach(parent, &sc->sc_bus.sc_dev, faa);
sys/arch/armv7/omap/omusbtll.c
102
omusbtll_attach(struct device *parent, struct device *self, void *args)
sys/arch/armv7/omap/omusbtll.c
89
void omusbtll_attach(struct device *parent, struct device *self, void *args);
sys/arch/armv7/omap/omwugen.c
43
omwugen_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/omwugen.c
51
omwugen_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/omap/prcm.c
116
prcm_attach(struct device *parent, struct device *self, void *args)
sys/arch/armv7/omap/ti_iic.c
151
ti_iic_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/ti_iic.c
159
ti_iic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/sunxi/sxiahci.c
82
sxiahci_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/sunxi/sxiahci.c
91
sxiahci_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/sunxi/sxie.c
197
sxie_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/sunxi/sxie.c
205
sxie_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/sunxi/sxiintc.c
163
sxiintc_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/sunxi/sxiintc.c
171
sxiintc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/sunxi/sxitimer.c
139
sxitimer_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/sunxi/sxitimer.c
154
sxitimer_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/vexpress/pciecam.c
115
pciecam_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/vexpress/pciecam.c
123
pciecam_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/vexpress/pciecam.c
254
pciecam_attach_hook(struct device *parent, struct device *self,
sys/arch/armv7/vexpress/sysreg.c
70
sysreg_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/vexpress/sysreg.c
78
sysreg_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/xilinx/zqclock.c
106
zqclock_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/xilinx/zqclock.c
114
zqclock_attach(struct device *parent, struct device *self, void *aux)
sys/arch/armv7/xilinx/zqreset.c
62
zqreset_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/xilinx/zqreset.c
70
zqreset_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/asp.c
124
aspmatch(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/dev/asp.c
137
aspattach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/astro.c
208
astro_match(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/dev/astro.c
225
astro_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/com_dino.c
110
sc->sc_ih = dino_intr_establish(parent, ca->ca_irq, IPL_TTY,
sys/arch/hppa/dev/com_dino.c
69
com_dino_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/com_dino.c
82
com_dino_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/com_ssio.c
42
com_ssio_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/com_ssio.c
58
com_ssio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/cpu.c
66
cpumatch(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/dev/cpu.c
83
cpuattach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/dino.c
138
dinomatch(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/dev/dino.c
1670
dinoattach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/dino.c
289
dino_attach_hook(struct device *parent, struct device *self,
sys/arch/hppa/dev/elroy.c
1244
elroy_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/elroy.c
184
elroy_match(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/dev/elroy.c
211
elroy_attach_hook(struct device *parent, struct device *self,
sys/arch/hppa/dev/elroy.c
59
void elroy_attach_hook(struct device *parent, struct device *self,
sys/arch/hppa/dev/gecko.c
51
gecko_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/gecko.c
67
gecko_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/lasi.c
178
if (!strcmp(parent->dv_xname, "mainbus0")) {
sys/arch/hppa/dev/lasi.c
79
lasimatch(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/dev/lasi.c
92
lasiattach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/lcd.c
65
lcd_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/lcd.c
76
lcd_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/lpt_ssio.c
38
lpt_ssio_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/lpt_ssio.c
54
lpt_ssio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/mongoose.c
115
mg_eisa_attach_hook(struct device *parent, struct device *self,
sys/arch/hppa/dev/mongoose.c
137
mg_isa_attach_hook(struct device *parent, struct device *self,
sys/arch/hppa/dev/mongoose.c
531
mgmatch_gedoens(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/dev/mongoose.c
554
mgattach_gedoens(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/mongoose.c
61
void mg_eisa_attach_hook(struct device *parent,
sys/arch/hppa/dev/mongoose.c
66
void mg_isa_attach_hook(struct device *parent,
sys/arch/hppa/dev/pdc.c
156
pdcmatch(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/dev/pdc.c
169
pdcattach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/phantomas.c
56
phantomasmatch(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/dev/phantomas.c
68
phantomasattach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/power.c
73
powermatch(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/dev/power.c
85
powerattach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/siop_sgc.c
61
siop_sgc_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/siop_sgc.c
73
siop_sgc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/ssio.c
133
ssio_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/ssio.c
169
ssio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/sti_sgc.c
186
sti_sgc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/sti_sgc.c
99
sti_sgc_probe(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/uturn.c
66
uturnmatch(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/dev/uturn.c
84
uturnattach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/wax.c
55
waxmatch(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/dev/wax.c
70
waxattach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/dev/wax.c
96
if (!strcmp(parent->dv_xname, "mainbus0")) {
sys/arch/hppa/gsc/arcofi_gsc.c
46
arcofi_gsc_match(struct device *parent, void *match, void *vaa)
sys/arch/hppa/gsc/arcofi_gsc.c
59
arcofi_gsc_attach(struct device *parent, struct device *self, void *vaa)
sys/arch/hppa/gsc/arcofi_gsc.c
81
gsc_intr_establish((struct gsc_softc *)parent, ga->ga_irq,
sys/arch/hppa/gsc/com_gsc.c
100
sc->sc_ih = gsc_intr_establish((struct gsc_softc *)parent,
sys/arch/hppa/gsc/com_gsc.c
59
com_gsc_probe(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/com_gsc.c
74
com_gsc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/gsc/fdc_gsc.c
53
fdc_gsc_probe(parent, match, aux)
sys/arch/hppa/gsc/fdc_gsc.c
54
struct device *parent;
sys/arch/hppa/gsc/fdc_gsc.c
75
fdc_gsc_attach(parent, self, aux)
sys/arch/hppa/gsc/fdc_gsc.c
76
struct device *parent, *self;
sys/arch/hppa/gsc/gscbus.c
57
gscmatch(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/gsc/gscbus.c
65
gscattach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/gsc/gsckbc.c
163
gsckbc_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/gsckbc.c
356
gsckbc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/gsc/gsckbc.c
384
gsc->sc_ih = gsc_intr_establish((struct gsc_softc *)parent,
sys/arch/hppa/gsc/gsckbc.c
478
pckbc_submatch(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/gsckbc.c
486
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/arch/hppa/gsc/harmony.c
113
harmony_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/harmony.c
138
harmony_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/gsc/harmony.c
213
(void)gsc_intr_establish((struct gsc_softc *)parent, ga->ga_irq,
sys/arch/hppa/gsc/hil_gsc.c
59
hil_gsc_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/hil_gsc.c
71
hil_gsc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/gsc/hil_gsc.c
89
gsc_intr_establish((struct gsc_softc *)parent, ga->ga_irq, IPL_TTY,
sys/arch/hppa/gsc/if_ie_gsc.c
254
ie_gsc_probe(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/if_ie_gsc.c
267
ie_gsc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/gsc/if_ie_gsc.c
366
sc->sc_ih = gsc_intr_establish((struct gsc_softc *)parent,
sys/arch/hppa/gsc/lpt_gsc.c
100
lpt_gsc_probe(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/lpt_gsc.c
163
lpt_gsc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/gsc/lpt_gsc.c
181
sc->sc_ih = gsc_intr_establish((struct gsc_softc *)parent,
sys/arch/hppa/gsc/mongoose_gsc.c
53
mgmatch_gsc(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/gsc/mongoose_gsc.c
65
mgattach_gsc(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/gsc/mongoose_gsc.c
93
sc->sc_ih = gsc_intr_establish((struct gsc_softc *)parent,
sys/arch/hppa/gsc/oosiop_gsc.c
102
oosiop_gsc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/gsc/oosiop_gsc.c
147
(void)gsc_intr_establish((struct gsc_softc *)parent,
sys/arch/hppa/gsc/oosiop_gsc.c
90
oosiop_gsc_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/osiop_gsc.c
103
osiop_gsc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/gsc/osiop_gsc.c
146
(void)gsc_intr_establish((struct gsc_softc *)parent,
sys/arch/hppa/gsc/osiop_gsc.c
91
osiop_gsc_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/siop_gsc.c
112
gsc_intr_establish((struct gsc_softc *)parent, ga->ga_irq,
sys/arch/hppa/gsc/siop_gsc.c
61
siop_gsc_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/siop_gsc.c
73
siop_gsc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/hppa/mainbus.c
1116
mbmatch(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/hppa/mainbus.c
1128
mbattach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/hppa/mainbus.c
1268
mbsubmatch(struct device *parent, void *match, void *aux)
sys/arch/hppa/hppa/mainbus.c
1282
if ((ret = (*cf->cf_attach->ca_match)(parent, match, aux)))
sys/arch/hppa/hppa/mem.c
159
memmatch(struct device *parent, void *cfdata, void *aux)
sys/arch/hppa/hppa/mem.c
171
memattach(struct device *parent, struct device *self, void *aux)
sys/arch/hppa/include/rbus_machdep.h
41
#define pccbb_attach_hook(parent, self, pa) /* nothing */
sys/arch/i386/eisa/eisa_machdep.c
103
eisa_attach_hook(struct device *parent, struct device *self,
sys/arch/i386/i386/acpi_machdep.c
185
acpi_probe(struct device *parent, struct cfdata *match,
sys/arch/i386/i386/acpi_machdep.c
78
acpi_match(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/acpi_machdep.c
87
if (!acpi_probe(parent, cf, ba))
sys/arch/i386/i386/acpi_machdep.c
94
acpi_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/i386/amdmsr.c
84
amdmsr_match(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/amdmsr.c
92
amdmsr_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/i386/apm.c
690
apmprobe(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/apm.c
730
apmattach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/i386/bios.c
133
biosprobe(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/bios.c
153
biosattach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/i386/cpu.c
215
cpu_match(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/cpu.c
230
cpu_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/i386/esm.c
208
esm_match(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/esm.c
219
esm_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/i386/ioapic.c
243
ioapic_match(struct device *parent, void *v, void *aux)
sys/arch/i386/i386/ioapic.c
276
ioapic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/i386/mainbus.c
127
mainbus_match(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/mainbus.c
136
mainbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/i386/mpbios.c
204
mpbios_match(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/mpbios.c
215
mpbios_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/i386/mpbios.c
231
mp_match(struct device *parent, void *cfv, void *aux)
sys/arch/i386/i386/mpbios.c
239
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/arch/i386/i386/rbus_machdep.c
92
pccbb_attach_hook(struct device *parent, struct device *self,
sys/arch/i386/isa/ahc_isa.c
286
ahc_isa_probe(struct device *parent, void *match, void *aux)
sys/arch/i386/isa/ahc_isa.c
304
if (as->bus == parent->dv_unit)
sys/arch/i386/isa/ahc_isa.c
315
as->bus = parent->dv_unit;
sys/arch/i386/isa/ahc_isa.c
334
ahc_isa_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/isa/isa_machdep.c
603
isa_attach_hook(struct device *parent, struct device *self,
sys/arch/i386/isa/joy_isa.c
60
joy_isa_probe(struct device *parent, void *match, void *aux)
sys/arch/i386/isa/joy_isa.c
77
joy_isa_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/isa/joy_isapnp.c
53
joy_isapnp_probe(struct device *parent, void *match, void *aux)
sys/arch/i386/isa/joy_isapnp.c
59
joy_isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/isa/lms.c
121
lmsattach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/isa/lms.c
79
lmsprobe(struct device *parent, void *match, void *aux)
sys/arch/i386/isa/mms.c
110
mmsattach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/isa/mms.c
76
mmsprobe(struct device *parent, void *match, void *aux)
sys/arch/i386/isa/npx.c
263
npxprobe(struct device *parent, void *match, void *aux)
sys/arch/i386/isa/npx.c
364
npxattach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/pci/geodesc.c
73
geodesc_match(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/geodesc.c
87
geodesc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/pci/glxsb.c
211
glxsb_match(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/glxsb.c
223
glxsb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/pci/gscpcib.c
135
pcibattach(parent, self, aux);
sys/arch/i386/pci/gscpcib.c
70
gscpcib_match(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/gscpcib.c
86
gscpcib_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/pci/gscpm.c
77
gscpm_match(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/gscpm.c
89
gscpm_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/pci/ichpcib.c
109
ichpcib_match(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/ichpcib.c
118
ichpcib_attach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/pci/ichpcib.c
165
pcibattach(parent, self, aux);
sys/arch/i386/pci/pchb.c
145
pchbmatch(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/pchb.c
170
pchbattach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/pci/pci_machdep.c
214
pci_attach_hook(struct device *parent, struct device *self,
sys/arch/i386/pci/pcib.c
104
pcibattach(struct device *parent, struct device *self, void *aux)
sys/arch/i386/pci/pcib.c
65
pcibmatch(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/pcibios.c
141
pcibiosprobe(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/pcibios.c
163
pcibiosattach(struct device *parent, struct device *self, void *aux)
sys/arch/landisk/dev/obio.c
122
if ((*cf->cf_attach->ca_match)(parent, cf, &oa) == 0)
sys/arch/landisk/dev/obio.c
125
config_attach(parent, cf, &oa, obio_print);
sys/arch/landisk/dev/obio.c
64
obio_match(struct device *parent, void *vcf, void *aux)
sys/arch/landisk/dev/obio.c
75
obio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/landisk/dev/obio.c
89
obio_search(struct device *parent, void *vcf, void *aux)
sys/arch/landisk/dev/obio.c
91
struct obio_softc *sc = (struct obio_softc *)parent;
sys/arch/landisk/dev/power.c
57
power_match(struct device *parent, void *match, void *aux)
sys/arch/landisk/dev/power.c
73
power_attach(struct device *parent, struct device *self, void *aux)
sys/arch/landisk/dev/rs5c313.c
409
rs5c313_landisk_match(struct device *parent, void *vcf, void *aux)
sys/arch/landisk/dev/rs5c313.c
420
rs5c313_landisk_attach(struct device *parent, struct device *self, void *aux)
sys/arch/landisk/dev/wdc_obio.c
106
wdc_obio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/landisk/dev/wdc_obio.c
82
wdc_obio_match(struct device *parent, void *vcf, void *aux)
sys/arch/landisk/landisk/mainbus.c
59
mainbus_match(struct device *parent, void *cf, void *aux)
sys/arch/landisk/landisk/mainbus.c
69
mainbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/landisk/landisk/shpcic_machdep.c
82
landisk_pci_attach_hook(struct device *parent, struct device *self,
sys/arch/loongson/dev/apm.c
124
apmmatch(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/apm.c
139
apmattach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/bonito.c
204
bonito_match(struct device *parent, void *vcf, void *aux)
sys/arch/loongson/dev/bonito.c
218
bonito_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/bonito.c
736
bonito_attach_hook(struct device *parent, struct device *self,
sys/arch/loongson/dev/com_leioc.c
50
com_leioc_match(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/com_leioc.c
61
com_leioc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/gdiumiic.c
130
gdiumiic_match(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/gdiumiic.c
143
gdiumiic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/glxclk.c
104
glxclk_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/glxclk.c
92
glxclk_match(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/htb.c
154
htb_match(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/htb.c
168
htb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/htb.c
228
htb_attach_hook(struct device *parent, struct device *self,
sys/arch/loongson/dev/kb3310.c
131
ykbec_match(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/kb3310.c
158
ykbec_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/leioc.c
56
leioc_match(struct device *parent, void *cfg, void *aux)
sys/arch/loongson/dev/leioc.c
70
leioc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/mainbus.c
48
mainbus_match(struct device *parent, void *cfdata, void *aux)
sys/arch/loongson/dev/mainbus.c
59
mainbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/mcclock_isa.c
67
mcclock_isa_match(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/mcclock_isa.c
90
mcclock_isa_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/ohci_voyager.c
126
sc->sc_ih = voyager_intr_establish(parent, VOYAGER_INTR_USB_HOST,
sys/arch/loongson/dev/ohci_voyager.c
81
ohci_voyager_match(struct device *parent, void *vcf, void *aux)
sys/arch/loongson/dev/ohci_voyager.c
91
ohci_voyager_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/pcib.c
113
pcibattach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/pcib.c
74
pcibmatch(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/radeonfb.c
174
radeonfb_match(struct device *parent, void *cf, void *aux)
sys/arch/loongson/dev/radeonfb.c
182
radeonfb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/sisfb.c
172
sisfb_match(struct device *parent, void *vcf, void *aux)
sys/arch/loongson/dev/sisfb.c
180
sisfb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/smfb.c
158
smfb_pci_match(struct device *parent, void *vcf, void *aux)
sys/arch/loongson/dev/smfb.c
166
smfb_voyager_match(struct device *parent, void *vcf, void *aux)
sys/arch/loongson/dev/smfb.c
175
smfb_pci_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/smfb.c
192
smfb_voyager_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/stsec.c
131
stsec_match(struct device *parent, void *vcf, void *aux)
sys/arch/loongson/dev/stsec.c
140
stsec_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/dev/voyager.c
175
voyager_search(struct device *parent, void *vcf, void *args)
sys/arch/loongson/dev/voyager.c
177
struct voyager_softc *sc = (struct voyager_softc *)parent;
sys/arch/loongson/dev/voyager.c
196
if (cf->cf_attach->ca_match(parent, cf, &vaa) == 0)
sys/arch/loongson/dev/voyager.c
199
config_attach(parent, cf, &vaa, voyager_print);
sys/arch/loongson/dev/voyager.c
85
voyager_match(struct device *parent, void *vcf, void *aux)
sys/arch/loongson/dev/voyager.c
93
voyager_attach(struct device *parent, struct device *self, void *aux)
sys/arch/loongson/loongson/generic2e_machdep.c
215
generic2e_isa_attach_hook(struct device *parent, struct device *self,
sys/arch/loongson/loongson/generic2e_machdep.c
219
loongson_generic_isa_attach_hook(parent, self, iba);
sys/arch/loongson/loongson/generic3a_machdep.c
264
generic3a_config_secondary_cpus(struct device *parent, cfprint_t print)
sys/arch/loongson/loongson/generic3a_machdep.c
286
config_found(parent, &caa, print);
sys/arch/loongson/loongson/generic3a_machdep.c
449
rs780e_isa_attach_hook(struct device *parent, struct device *self,
sys/arch/loongson/loongson/isa_machdep.c
116
loongson_generic_isa_attach_hook(struct device *parent, struct device *self,
sys/arch/loongson/loongson/yeeloong_machdep.c
304
lemote_isa_attach_hook(struct device *parent, struct device *self,
sys/arch/loongson/loongson/yeeloong_machdep.c
313
loongson_generic_isa_attach_hook(parent, self, iba);
sys/arch/luna88k/cbus/cbus.c
104
cbus_attach(struct device *parent, struct device *self, void *args)
sys/arch/luna88k/cbus/cbus.c
90
cbus_match(struct device *parent, void *cf, void *aux)
sys/arch/luna88k/cbus/i82365_cbus.c
165
pcic_cbus_probe(parent, match, aux)
sys/arch/luna88k/cbus/i82365_cbus.c
166
struct device *parent;
sys/arch/luna88k/cbus/i82365_cbus.c
238
pcic_cbus_attach(parent, self, aux)
sys/arch/luna88k/cbus/i82365_cbus.c
239
struct device *parent, *self;
sys/arch/luna88k/cbus/if_ne_cbus.c
109
ne_cbus_match(struct device *parent, void *match, void *aux)
sys/arch/luna88k/cbus/if_ne_cbus.c
167
ne_cbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/luna88k/cbus/necsb.c
73
necsb_match(struct device *parent, void *cf, void *aux)
sys/arch/luna88k/cbus/necsb.c
84
necsb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/luna88k/cbus/pcex.c
65
pcex_match(struct device *parent, void *cf, void *aux)
sys/arch/luna88k/cbus/pcex.c
76
pcex_attach(struct device *parent, struct device *self, void *args)
sys/arch/luna88k/dev/if_le.c
118
le_match(struct device *parent, void *cf, void *aux)
sys/arch/luna88k/dev/if_le.c
129
le_attach(struct device *parent, struct device *self, void *aux)
sys/arch/luna88k/dev/lcd.c
110
lcd_match(struct device *parent, void *cf, void *aux)
sys/arch/luna88k/dev/lcd.c
122
lcd_attach(struct device *parent, struct device *self, void *aux)
sys/arch/luna88k/dev/lunafb.c
173
omfbmatch(struct device *parent, void *cf, void *aux)
sys/arch/luna88k/dev/lunafb.c
190
omfbattach(struct device *parent, struct device *self, void *args)
sys/arch/luna88k/dev/lunaws.c
150
wsmatch(struct device *parent, void *match, void *aux)
sys/arch/luna88k/dev/lunaws.c
160
wsattach(struct device *parent, struct device *self, void *aux)
sys/arch/luna88k/dev/lunaws.c
163
struct sio_softc *siosc = (struct sio_softc *)parent;
sys/arch/luna88k/dev/lunaws.c
209
ws_submatch_kbd(struct device *parent, void *match, void *aux)
sys/arch/luna88k/dev/lunaws.c
215
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/arch/luna88k/dev/lunaws.c
221
ws_submatch_mouse(struct device *parent, void *match, void *aux)
sys/arch/luna88k/dev/lunaws.c
227
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/arch/luna88k/dev/sio.c
61
sio_match(struct device *parent, void *cf, void *aux)
sys/arch/luna88k/dev/sio.c
73
sio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/luna88k/dev/siotty.c
117
siotty_match(struct device *parent, void *cf, void *aux)
sys/arch/luna88k/dev/siotty.c
127
siotty_attach(struct device *parent, struct device *self, void *aux)
sys/arch/luna88k/dev/siotty.c
129
struct sio_softc *siosc = (void *)parent;
sys/arch/luna88k/dev/spc.c
76
spc_mainbus_match(struct device *parent, void *cf, void *aux)
sys/arch/luna88k/dev/spc.c
91
spc_mainbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/luna88k/dev/timekeeper.c
101
clock_attach(struct device *parent, struct device *self, void *aux)
sys/arch/luna88k/dev/timekeeper.c
89
clock_match(struct device *parent, void *match, void *aux)
sys/arch/luna88k/dev/xp.c
119
xp_match(struct device *parent, void *cf, void *aux)
sys/arch/luna88k/dev/xp.c
138
xp_attach(struct device *parent, struct device *self, void *aux)
sys/arch/luna88k/luna88k/mainbus.c
82
mainbus_match(struct device *parent, void *cf, void *args)
sys/arch/luna88k/luna88k/mainbus.c
93
mainbus_attach(struct device *parent, struct device *self, void *args)
sys/arch/macppc/dev/abtn.c
79
abtn_match(struct device *parent, void *cf, void *aux)
sys/arch/macppc/dev/abtn.c
94
abtn_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/adb.c
1637
adbmatch(struct device *parent, void *cf, void *aux)
sys/arch/macppc/dev/adb.c
1657
adbattach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/adb.c
1713
mac_intr_establish(parent, ca->ca_intr[0], IST_LEVEL, IPL_TTY,
sys/arch/macppc/dev/aoa.c
113
aoa_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/aoa.c
119
i2s_attach(parent, sc, aux);
sys/arch/macppc/dev/aoa.c
85
aoa_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/apm.c
115
apmmatch(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/apm.c
126
apmattach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/asms.c
81
asms_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/asms.c
91
asms_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/awacs.c
241
awacs_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/awacs.c
266
awacs_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/awacs.c
315
mac_intr_establish(parent, cirq, cirq_type, IPL_AUDIO | IPL_MPSAFE,
sys/arch/macppc/dev/awacs.c
317
mac_intr_establish(parent, oirq, oirq_type, IPL_AUDIO | IPL_MPSAFE,
sys/arch/macppc/dev/awacs.c
319
mac_intr_establish(parent, iirq, iirq_type, IPL_AUDIO | IPL_MPSAFE,
sys/arch/macppc/dev/daca.c
121
daca_attach(struct device *parent,struct device *self, void *aux)
sys/arch/macppc/dev/daca.c
127
i2s_attach(parent, sc, aux);
sys/arch/macppc/dev/daca.c
96
daca_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/dfs.c
51
dfs_match(struct device *parent, void *arg, void *aux)
sys/arch/macppc/dev/dfs.c
67
dfs_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/i2s.c
113
mac_intr_establish(parent, oirq, oirq_type, IPL_AUDIO | IPL_MPSAFE,
sys/arch/macppc/dev/i2s.c
115
mac_intr_establish(parent, iirq, iirq_type, IPL_AUDIO | IPL_MPSAFE,
sys/arch/macppc/dev/i2s.c
125
i2s_gpio_init(sc, ca->ca_node, parent);
sys/arch/macppc/dev/i2s.c
67
i2s_attach(struct device *parent, struct i2s_softc *sc, struct confargs *ca)
sys/arch/macppc/dev/i2s.c
864
i2s_gpio_init(struct i2s_softc *sc, int node, struct device *parent)
sys/arch/macppc/dev/i2s.c
931
mac_intr_establish(parent, hp_detect_intr, IST_EDGE,
sys/arch/macppc/dev/i2s.c
935
mac_intr_establish(parent, line_detect_intr, IST_EDGE,
sys/arch/macppc/dev/if_bm.c
165
bmac_match(struct device *parent, void *cf, void *aux)
sys/arch/macppc/dev/if_bm.c
181
bmac_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/if_bm.c
261
mac_intr_establish(parent, ca->ca_intr[0], IST_LEVEL, IPL_NET,
sys/arch/macppc/dev/if_bm.c
263
mac_intr_establish(parent, ca->ca_intr[2], IST_LEVEL, IPL_NET,
sys/arch/macppc/dev/if_mc.c
329
mc_match(struct device *parent, void *arg, void *aux)
sys/arch/macppc/dev/if_mc.c
348
mc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/if_mc.c
432
mac_intr_establish(parent, ca->ca_intr[2], IST_LEVEL, IPL_NET,
sys/arch/macppc/dev/if_mc.c
434
mac_intr_establish(parent, ca->ca_intr[0], IST_LEVEL, IPL_NET,
sys/arch/macppc/dev/if_wi_obio.c
103
wi_obio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/if_wi_obio.c
120
mac_intr_establish(parent, ca->ca_intr[0], IST_LEVEL, IPL_NET,
sys/arch/macppc/dev/if_wi_obio.c
92
wi_obio_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/kiic.c
71
kiic_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/kiic.c
83
kiic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/macgpio.c
142
macgpio_gpio_match(struct device *parent, void *cf, void *aux)
sys/arch/macppc/dev/macgpio.c
156
macgpio_gpio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/macgpio.c
162
sc->sc_port = ((struct gpio_softc *) parent)->sc_port;
sys/arch/macppc/dev/macgpio.c
163
mac_intr_establish(parent, ca->ca_intr[0], IST_LEVEL, IPL_TTY,
sys/arch/macppc/dev/macgpio.c
74
macgpio_match(struct device *parent, void *cf, void *aux)
sys/arch/macppc/dev/macgpio.c
88
macgpio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/macintr.c
100
macintr_match(struct device *parent, void *cf, void *aux)
sys/arch/macppc/dev/macintr.c
186
macintr_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/macintr.c
215
mac_intr_establish(parent, 0x14, IST_LEVEL, IPL_HIGH,
sys/arch/macppc/dev/macintr.c
83
int macintr_match(struct device *parent, void *cf, void *aux);
sys/arch/macppc/dev/mediabay.c
104
mediabay_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/mediabay.c
125
mac_intr_establish(parent, irq, type, IPL_BIO, mediabay_intr, sc,
sys/arch/macppc/dev/mediabay.c
89
mediabay_match(struct device *parent, void *v, void *aux)
sys/arch/macppc/dev/onyx.c
104
onyx_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/onyx.c
136
onyx_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/onyx.c
143
i2s_attach(parent, sc, aux);
sys/arch/macppc/dev/openpic.c
185
openpic_match(struct device *parent, void *cf, void *aux)
sys/arch/macppc/dev/openpic.c
212
openpic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/openpic.c
81
int openpic_match(struct device *parent, void *cf, void *aux);
sys/arch/macppc/dev/pgs.c
53
pgs_match(struct device *parent, void *arg, void *aux)
sys/arch/macppc/dev/pgs.c
69
pgs_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/pgs.c
82
mac_intr_establish(parent, sc->sc_intr, IST_LEVEL,
sys/arch/macppc/dev/piic.c
56
piic_match(struct device *parent, void *cf, void *aux)
sys/arch/macppc/dev/piic.c
67
piic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/smu.c
180
smu_match(struct device *parent, void *cf, void *aux)
sys/arch/macppc/dev/smu.c
193
smu_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/smu.c
267
mac_intr_establish(parent, intr, IST_EDGE, IPL_BIO,
sys/arch/macppc/dev/snapper.c
420
snapper_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/snapper.c
450
snapper_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/snapper.c
459
i2s_attach(parent, sc, aux);
sys/arch/macppc/dev/sysbutton.c
49
sysbutton_match(struct device *parent, void *arg, void *aux)
sys/arch/macppc/dev/sysbutton.c
60
sysbutton_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/sysbutton.c
73
mac_intr_establish(parent, sc->sc_intr, IST_EDGE,
sys/arch/macppc/dev/tumbler.c
241
tumbler_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/tumbler.c
264
tumbler_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/tumbler.c
272
i2s_attach(parent, sc, aux);
sys/arch/macppc/dev/uni_n.c
86
memcmatch(struct device *parent, void *cf, void *aux)
sys/arch/macppc/dev/uni_n.c
97
memcattach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/wdc_obio.c
106
wdc_obio_probe(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/wdc_obio.c
130
wdc_obio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/wdc_obio.c
182
sc->sc_ih = mac_intr_establish(parent, intr, IST_LEVEL, IPL_BIO,
sys/arch/macppc/dev/xlights.c
105
xlights_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/xlights.c
186
mac_intr_establish(parent, sc->sc_intr, intr[3] ? IST_LEVEL :
sys/arch/macppc/dev/xlights.c
72
xlights_match(struct device *parent, void *arg, void *aux)
sys/arch/macppc/dev/zs.c
163
zs_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/zs.c
187
zs_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/dev/zs.c
337
mac_intr_establish(parent, intr[0][0], IST_LEVEL, IPL_TTY,
sys/arch/macppc/dev/zs.c
339
mac_intr_establish(parent, intr[1][0], IST_LEVEL, IPL_TTY,
sys/arch/macppc/dev/zs.c
342
mac_intr_establish(parent, intr[0][1], IST_LEVEL, IPL_TTY,
sys/arch/macppc/dev/zs.c
344
mac_intr_establish(parent, intr[1][1], IST_LEVEL, IPL_TTY,
sys/arch/macppc/macppc/cpu.c
190
cpuattach(struct device *parent, struct device *dev, void *aux)
sys/arch/macppc/macppc/cpu.c
93
cpumatch(struct device *parent, void *cfdata, void *aux)
sys/arch/macppc/macppc/mainbus.c
53
mbmatch(struct device *parent, void *cfdata, void *aux)
sys/arch/macppc/macppc/mainbus.c
63
mbattach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/macppc/mem.c
107
mem_match(struct device *parent, void *cf, void *aux)
sys/arch/macppc/macppc/mem.c
117
mem_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/macppc/openfirm.c
107
int parent;
sys/arch/macppc/macppc/openfirm.c
121
ret = args.parent;
sys/arch/macppc/macppc/rbus_machdep.c
108
pccbb_attach_hook(struct device *parent, struct device *self,
sys/arch/macppc/pci/hpb.c
101
hpb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/pci/hpb.c
84
hpb_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/pci/ht.c
62
ht_match(struct device *parent, void *cf, void *aux)
sys/arch/macppc/pci/ht.c
72
ht_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/pci/kauaiata.c
55
int kauaiatamatch(struct device *parent, void *match, void *aux);
sys/arch/macppc/pci/kauaiata.c
56
void kauaiataattach(struct device *parent, struct device *self, void *aux);
sys/arch/macppc/pci/kauaiata.c
69
kauaiatamatch(struct device *parent, void *match, void *aux)
sys/arch/macppc/pci/kauaiata.c
93
kauaiataattach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/pci/macobio.c
100
macobio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/pci/macobio.c
71
macobio_match(struct device *parent, void *cf, void *aux)
sys/arch/macppc/pci/mpcpcibus.c
113
mpcpcibrmatch(struct device *parent, void *match, void *aux)
sys/arch/macppc/pci/mpcpcibus.c
304
mpcpcibrattach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/pci/pchb.c
107
pchbattach(struct device *parent, struct device *self, void *aux)
sys/arch/macppc/pci/pchb.c
60
pchbmatch(struct device *parent, void *cf, void *aux)
sys/arch/macppc/pci/pci_machdep.c
337
int parent;
sys/arch/macppc/pci/pci_machdep.c
370
parent = *mp1;
sys/arch/macppc/pci/pci_machdep.c
379
if (OF_getprop(parent, "interrupt-controller", ic, 20))
sys/arch/macppc/pci/pci_machdep.c
380
return ofw_intr_map(parent, &mp1[1], intr);
sys/arch/macppc/pci/pci_machdep.c
386
if (OF_getprop(parent, "#address-cells", &acells, 4) < 0)
sys/arch/macppc/pci/pci_machdep.c
388
if (OF_getprop(parent, "#interrupt-cells", &icells, 4) < 0)
sys/arch/macppc/pci/pci_machdep.c
61
pci_attach_hook(struct device *parent, struct device *self,
sys/arch/macppc/pci/vgafb.c
111
vgafb_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/pci/vgafb.c
138
vgafb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/mips64/mips64/clock.c
80
clockmatch(struct device *parent, void *vcf, void *aux)
sys/arch/mips64/mips64/clock.c
88
clockattach(struct device *parent, struct device *self, void *aux)
sys/arch/mips64/mips64/cpu.c
65
cpumatch(struct device *parent, void *match, void *aux)
sys/arch/mips64/mips64/cpu.c
77
cpuattach(struct device *parent, struct device *dev, void *aux)
sys/arch/octeon/dev/amdcf.c
211
amdcf_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/amdcf.c
227
amdcf_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/cn30xxgmx.c
161
cn30xxgmx_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/cn30xxgmx.c
188
cn30xxgmx_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/cn30xxsmi.c
166
int parent, phynode;
sys/arch/octeon/dev/cn30xxsmi.c
177
parent = OF_parent(phynode);
sys/arch/octeon/dev/cn30xxsmi.c
179
if (smi->sc_node == parent)
sys/arch/octeon/dev/cn30xxsmi.c
62
cn30xxsmi_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/cn30xxsmi.c
70
cn30xxsmi_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/cn30xxuart.c
104
cn30xxuart_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/cn30xxuart.c
96
cn30xxuart_probe(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/if_cnmac.c
231
cnmac_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/if_cnmac.c
243
cnmac_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/if_ogx.c
357
ogx_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/if_ogx.c
363
ogx_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/mainbus.c
53
mainbus_match(struct device *parent, void *cfdata, void *aux)
sys/arch/octeon/dev/mainbus.c
64
mainbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octcf.c
160
octcfprobe(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octcf.c
171
octcfattach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octcib.c
103
octcib_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octcib.c
95
octcib_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octcit.c
134
octcit_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octcit.c
142
octcit_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octciu.c
140
octciu_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octciu.c
148
octciu_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octcrypto.c
230
octcrypto_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octcrypto.c
236
octcrypto_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octdwctwo.c
124
octdwctwo_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octdwctwo.c
140
octdwctwo_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octehci.c
57
octehci_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octehci.c
64
octehci_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octeon_iobus.c
136
iobusmatch(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octeon_iobus.c
161
iobussubmatch(struct device *parent, void *vcf, void *args)
sys/arch/octeon/dev/octeon_iobus.c
172
return (*cf->cf_attach->ca_match)(parent, cf, aa);
sys/arch/octeon/dev/octeon_iobus.c
176
iobusattach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octeon_iobus.c
222
iobussearch(struct device *parent, void *v, void *aux)
sys/arch/octeon/dev/octeon_iobus.c
245
if (cf->cf_attach->ca_match(parent, cf, &aa) == 0)
sys/arch/octeon/dev/octeon_iobus.c
248
config_attach(parent, cf, &aa, iobusprint);
sys/arch/octeon/dev/octeon_pcibus.c
193
octeon_pcibus_match(struct device *parent, void *vcf, void *aux)
sys/arch/octeon/dev/octeon_pcibus.c
209
octeon_pcibus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octeon_pcibus.c
284
octeon_pcibus_attach_hook(struct device *parent, struct device *self,
sys/arch/octeon/dev/octgpio.c
77
octgpio_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octgpio.c
86
octgpio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octiic.c
135
octiic_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octiic.c
144
octiic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octmmc.c
163
octmmc_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octmmc.c
172
octmmc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octohci.c
58
octohci_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octohci.c
65
octohci_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octpcie.c
266
octpcie_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octpcie.c
277
octpcie_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octpcie.c
712
octpcie_attach_hook(struct device *parent, struct device *self,
sys/arch/octeon/dev/octpip.c
48
octpip_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octpip.c
56
octpip_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octrng.c
70
octrng_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octrng.c
84
octrng_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octrtc.c
109
octrtc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octrtc.c
94
octrtc_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octsctl.c
58
octsctl_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octsctl.c
66
octsctl_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octuctl.c
109
octuctl_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octuctl.c
197
octuctl_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octxctl.c
102
octxctl_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/octxctl.c
89
octxctl_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/ogxnexus.c
60
ogxnexus_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/ogxnexus.c
68
ogxnexus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/octeon/dev/simplebus.c
226
int parent, rlen, rone;
sys/arch/octeon/dev/simplebus.c
229
parent = OF_parent(sc->sc_node);
sys/arch/octeon/dev/simplebus.c
230
if (parent == 0)
sys/arch/octeon/dev/simplebus.c
50
simplebus_match(struct device *parent, void *cfdata, void *aux)
sys/arch/octeon/dev/simplebus.c
68
simplebus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/powerpc64/dev/astfb.c
82
astfb_match(struct device *parent, void *cf, void *aux)
sys/arch/powerpc64/dev/astfb.c
95
astfb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/powerpc64/dev/ipmi_opal.c
69
ipmi_opal_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/ipmi_opal.c
77
ipmi_opal_attach(struct device *parent, struct device *self, void *aux)
sys/arch/powerpc64/dev/mainbus.c
107
mainbus_match(struct device *parent, void *cfdata, void *aux)
sys/arch/powerpc64/dev/mainbus.c
113
mainbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/powerpc64/dev/mainbus.c
294
mainbus_match_status(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/mainbus.c
296
struct mainbus_softc *sc = (struct mainbus_softc *)parent;
sys/arch/powerpc64/dev/mainbus.c
306
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/powerpc64/dev/mainbus.c
341
mainbus_match_primary(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/mainbus.c
349
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/powerpc64/dev/mainbus.c
353
mainbus_match_secondary(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/mainbus.c
361
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/powerpc64/dev/opal.c
90
opal_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/opal.c
98
opal_attach(struct device *parent, struct device *self, void *aux)
sys/arch/powerpc64/dev/opalcons.c
61
opalcons_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/opalcons.c
69
opalcons_attach(struct device *parent, struct device *self, void *aux)
sys/arch/powerpc64/dev/opalsens.c
51
opalsens_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/opalsens.c
59
opalsens_attach(struct device *parent, struct device *self, void *aux)
sys/arch/powerpc64/dev/phb.c
139
phb_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/phb.c
148
phb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/powerpc64/dev/phb.c
488
phb_attach_hook(struct device *parent, struct device *self,
sys/arch/powerpc64/dev/xicp.c
106
xicp_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/xicp.c
115
xicp_attach(struct device *parent, struct device *self, void *aux)
sys/arch/powerpc64/dev/xics.c
54
xics_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/xics.c
62
xics_attach(struct device *parent, struct device *self, void *aux)
sys/arch/powerpc64/dev/xive.c
159
xive_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/xive.c
167
xive_attach(struct device *parent, struct device *self, void *aux)
sys/arch/powerpc64/powerpc64/cpu.c
101
cpu_attach(struct device *parent, struct device *dev, void *aux)
sys/arch/powerpc64/powerpc64/cpu.c
85
cpu_match(struct device *parent, void *cfdata, void *aux)
sys/arch/riscv64/dev/mainbus.c
282
mainbus_match_status(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/mainbus.c
284
struct mainbus_softc *sc = (struct mainbus_softc *)parent;
sys/arch/riscv64/dev/mainbus.c
294
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/riscv64/dev/mainbus.c
333
mainbus_match_primary(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/mainbus.c
341
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/riscv64/dev/mainbus.c
345
mainbus_match_secondary(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/mainbus.c
353
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/riscv64/dev/mainbus.c
85
mainbus_match(struct device *parent, void *cfdata, void *aux)
sys/arch/riscv64/dev/mainbus.c
91
mainbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/mpfclock.c
116
mpfclock_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/mpfclock.c
126
mpfclock_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/mpfgpio.c
101
mpfgpio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/mpfgpio.c
255
mpfgpio_attach_gpio(struct device *parent)
sys/arch/riscv64/dev/mpfgpio.c
258
struct mpfgpio_softc *sc = (struct mpfgpio_softc *)parent;
sys/arch/riscv64/dev/mpfgpio.c
91
mpfgpio_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/mpfiic.c
127
mpfiic_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/mpfiic.c
137
mpfiic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/plic.c
148
plic_match(struct device *parent, void *cfdata, void *aux)
sys/arch/riscv64/dev/plic.c
161
plic_attach(struct device *parent, struct device *dev, void *aux)
sys/arch/riscv64/dev/riscv_cpu_intc.c
59
riscv_intc_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/riscv_cpu_intc.c
68
riscv_intc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/sfcc.c
58
sfcc_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/sfcc.c
67
sfcc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/sfclock.c
83
sfclock_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/sfclock.c
91
sfclock_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/sfgpio.c
106
sfgpio_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/sfgpio.c
114
sfgpio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/sfuart.c
137
sfuart_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/sfuart.c
145
sfuart_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/sgmsi.c
67
sgmsi_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/sgmsi.c
75
sgmsi_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/simplebus.c
273
int parent, rlen, rone;
sys/arch/riscv64/dev/simplebus.c
276
parent = OF_parent(sc->sc_node);
sys/arch/riscv64/dev/simplebus.c
277
if (parent == 0)
sys/arch/riscv64/dev/simplebus.c
51
simplebus_match(struct device *parent, void *cfdata, void *aux)
sys/arch/riscv64/dev/simplebus.c
65
simplebus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/smtclock.c
269
smtclock_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/smtclock.c
278
smtclock_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/smtcomphy.c
117
smtcomphy_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/smtcomphy.c
126
smtcomphy_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/smtgpio.c
69
smtgpio_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/smtgpio.c
77
smtgpio_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/smtiic.c
105
smtiic_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/smtiic.c
113
smtiic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/smtpinctrl.c
67
smtpinctrl_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/smtpinctrl.c
75
smtpinctrl_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/smtpmic.c
90
smtpmic_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/smtpmic.c
98
smtpmic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/stfclock.c
1018
parent = mux ? JH7110_SYSCLK_GMAC1_RMII_RTX :
sys/arch/riscv64/dev/stfclock.c
1020
return stfclock_set_frequency_jh7110_sys(sc, &parent, freq);
sys/arch/riscv64/dev/stfclock.c
1022
parent = JH7110_SYSCLK_GMAC1_TX;
sys/arch/riscv64/dev/stfclock.c
1023
return stfclock_set_frequency_jh7110_sys(sc, &parent, freq);
sys/arch/riscv64/dev/stfclock.c
1028
parent = JH7110_SYSCLK_CPU_ROOT;
sys/arch/riscv64/dev/stfclock.c
1032
parent = JH7110_SYSCLK_AXI_CFG0;
sys/arch/riscv64/dev/stfclock.c
1035
parent = JH7110_SYSCLK_PLL0_OUT;
sys/arch/riscv64/dev/stfclock.c
1038
parent = JH7110_SYSCLK_GMAC1_RMII_REFIN;
sys/arch/riscv64/dev/stfclock.c
1041
parent = JH7110_SYSCLK_PLL0_OUT;
sys/arch/riscv64/dev/stfclock.c
1049
parent_freq = stfclock_get_frequency_jh7110_sys(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
1066
uint32_t parent;
sys/arch/riscv64/dev/stfclock.c
1073
parent = JH7110_SYSCLK_GMAC1_GTXCLK;
sys/arch/riscv64/dev/stfclock.c
1074
stfclock_enable_jh7110_sys(sc, &parent, on);
sys/arch/riscv64/dev/stfclock.c
1077
parent = JH7110_SYSCLK_GMAC0_GTXCLK;
sys/arch/riscv64/dev/stfclock.c
1078
stfclock_enable_jh7110_sys(sc, &parent, on);
sys/arch/riscv64/dev/stfclock.c
234
stfclock_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/stfclock.c
246
stfclock_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/stfclock.c
330
uint32_t parent, freq;
sys/arch/riscv64/dev/stfclock.c
340
parent = JH7100_CLK_OSC_SYS;
sys/arch/riscv64/dev/stfclock.c
341
return 40 * stfclock_get_frequency_jh7100(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
343
parent = JH7100_CLK_OSC_SYS;
sys/arch/riscv64/dev/stfclock.c
344
return 64 * stfclock_get_frequency_jh7100(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
346
parent = JH7100_CLK_PLL2_REF;
sys/arch/riscv64/dev/stfclock.c
347
return 55 * stfclock_get_frequency_jh7100(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
358
parent = JH7100_CLK_OSC_SYS;
sys/arch/riscv64/dev/stfclock.c
361
parent = JH7100_CLK_PLL0_OUT;
sys/arch/riscv64/dev/stfclock.c
364
parent = JH7100_CLK_PLL1_OUT;
sys/arch/riscv64/dev/stfclock.c
367
parent = JH7100_CLK_PLL2_OUT;
sys/arch/riscv64/dev/stfclock.c
370
return stfclock_get_frequency_jh7100(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
374
parent = JH7100_CLK_OSC_SYS;
sys/arch/riscv64/dev/stfclock.c
377
parent = JH7100_CLK_PLL0_OUT;
sys/arch/riscv64/dev/stfclock.c
380
parent = JH7100_CLK_PLL2_OUT;
sys/arch/riscv64/dev/stfclock.c
383
return stfclock_get_frequency_jh7100(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
386
parent = mux ? JH7100_CLK_PLL0_OUT : JH7100_CLK_OSC_SYS;
sys/arch/riscv64/dev/stfclock.c
387
return stfclock_get_frequency_jh7100(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
390
parent = mux ? JH7100_CLK_PLL2_OUT : JH7100_CLK_OSC_SYS;
sys/arch/riscv64/dev/stfclock.c
391
return stfclock_get_frequency_jh7100(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
393
parent = mux ? JH7100_CLK_OSC_AUD : JH7100_CLK_OSC_SYS;
sys/arch/riscv64/dev/stfclock.c
394
return stfclock_get_frequency_jh7100(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
399
parent = JH7100_CLK_PERH0_ROOT;
sys/arch/riscv64/dev/stfclock.c
402
parent = JH7100_CLK_PERH1_ROOT;
sys/arch/riscv64/dev/stfclock.c
405
parent = JH7100_CLK_CPUNDBUS_ROOT;
sys/arch/riscv64/dev/stfclock.c
408
parent = JH7100_CLK_CPUNBUS_ROOT_DIV;
sys/arch/riscv64/dev/stfclock.c
413
parent = JH7100_CLK_PERH0_SRC;
sys/arch/riscv64/dev/stfclock.c
419
parent = JH7100_CLK_PERH1_SRC;
sys/arch/riscv64/dev/stfclock.c
424
parent = JH7100_CLK_AHB_BUS;
sys/arch/riscv64/dev/stfclock.c
428
parent = JH7100_CLK_SDIO0_CCLKINT;
sys/arch/riscv64/dev/stfclock.c
432
parent = JH7100_CLK_SDIO1_CCLKINT;
sys/arch/riscv64/dev/stfclock.c
436
parent = JH7100_CLK_GMACUSB_ROOT;
sys/arch/riscv64/dev/stfclock.c
439
parent = JH7100_CLK_GMAC_ROOT_DIV;
sys/arch/riscv64/dev/stfclock.c
446
freq = stfclock_get_frequency_jh7100(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
500
uint32_t parent, freq;
sys/arch/riscv64/dev/stfclock.c
520
parent = mux ? JH7110_AONCLK_GMAC0_RMII_RTX :
sys/arch/riscv64/dev/stfclock.c
522
return stfclock_get_frequency_jh7110_aon(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
527
parent = JH7110_AONCLK_STG_AXIAHB;
sys/arch/riscv64/dev/stfclock.c
531
parent = JH7110_AONCLK_GMAC0_RMII_REFIN;
sys/arch/riscv64/dev/stfclock.c
534
parent = JH7110_AONCLK_GMAC0_TX;
sys/arch/riscv64/dev/stfclock.c
547
freq = stfclock_get_frequency_jh7110_aon(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
556
uint32_t parent, parent_freq;
sys/arch/riscv64/dev/stfclock.c
571
parent = mux ? JH7110_AONCLK_GMAC0_RMII_RTX :
sys/arch/riscv64/dev/stfclock.c
573
return stfclock_set_frequency_jh7110_aon(sc, &parent, freq);
sys/arch/riscv64/dev/stfclock.c
575
parent = JH7110_AONCLK_GMAC0_TX;
sys/arch/riscv64/dev/stfclock.c
576
return stfclock_set_frequency_jh7110_aon(sc, &parent, freq);
sys/arch/riscv64/dev/stfclock.c
581
parent = JH7110_AONCLK_GMAC0_RMII_REFIN;
sys/arch/riscv64/dev/stfclock.c
589
parent_freq = stfclock_get_frequency_jh7110_sys(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
863
uint32_t parent, freq;
sys/arch/riscv64/dev/stfclock.c
886
parent = mux ? JH7110_SYSCLK_PLL0_OUT : JH7110_SYSCLK_OSC;
sys/arch/riscv64/dev/stfclock.c
887
return stfclock_get_frequency_jh7110_sys(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
890
parent = mux ? JH7110_SYSCLK_PLL2_OUT : JH7110_SYSCLK_OSC;
sys/arch/riscv64/dev/stfclock.c
891
return stfclock_get_frequency_jh7110_sys(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
893
parent = mux ? JH7110_SYSCLK_GMAC1_RMII_RTX :
sys/arch/riscv64/dev/stfclock.c
895
return stfclock_get_frequency_jh7110_sys(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
900
parent = JH7110_SYSCLK_CPU_ROOT;
sys/arch/riscv64/dev/stfclock.c
903
parent = JH7110_SYSCLK_BUS_ROOT;
sys/arch/riscv64/dev/stfclock.c
906
parent = JH7110_SYSCLK_AXI_CFG0;
sys/arch/riscv64/dev/stfclock.c
911
parent = JH7110_SYSCLK_STG_AXIAHB;
sys/arch/riscv64/dev/stfclock.c
914
parent = JH7110_SYSCLK_APB_BUS;
sys/arch/riscv64/dev/stfclock.c
919
parent = JH7110_SYSCLK_AHB0;
sys/arch/riscv64/dev/stfclock.c
923
parent = JH7110_SYSCLK_AXI_CFG0;
sys/arch/riscv64/dev/stfclock.c
926
parent = JH7110_SYSCLK_STG_AXIAHB;
sys/arch/riscv64/dev/stfclock.c
930
parent = JH7110_SYSCLK_PLL0_OUT;
sys/arch/riscv64/dev/stfclock.c
933
parent = JH7110_SYSCLK_GMAC1_RMII_REFIN;
sys/arch/riscv64/dev/stfclock.c
936
parent = JH7110_SYSCLK_GMAC1_TX;
sys/arch/riscv64/dev/stfclock.c
940
parent = JH7110_SYSCLK_PLL0_OUT;
sys/arch/riscv64/dev/stfclock.c
943
parent = JH7110_SYSCLK_APB_BUS;
sys/arch/riscv64/dev/stfclock.c
946
parent = JH7110_SYSCLK_OSC;
sys/arch/riscv64/dev/stfclock.c
951
parent = JH7110_SYSCLK_APB0;
sys/arch/riscv64/dev/stfclock.c
958
parent = JH7110_SYSCLK_APB_BUS;
sys/arch/riscv64/dev/stfclock.c
962
parent = JH7110_SYSCLK_OSC;
sys/arch/riscv64/dev/stfclock.c
975
freq = stfclock_get_frequency_jh7110_sys(sc, &parent);
sys/arch/riscv64/dev/stfclock.c
984
uint32_t parent, parent_freq;
sys/arch/riscv64/dev/stfpcie.c
186
stfpcie_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/stfpcie.c
225
stfpcie_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/stfpcie.c
772
stfpcie_attach_hook(struct device *parent, struct device *self,
sys/arch/riscv64/dev/stfpciephy.c
65
stfpciephy_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/stfpciephy.c
73
stfpciephy_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/stfpinctrl.c
102
stfpinctrl_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/stfpinctrl.c
93
stfpinctrl_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/stfrng.c
77
stfrng_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/stfrng.c
85
stfrng_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/stftemp.c
70
stftemp_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/stftemp.c
79
stftemp_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/dev/sxitimer.c
84
sxitimer_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/sxitimer.c
92
sxitimer_attach(struct device *parent, struct device *self, void *aux)
sys/arch/riscv64/riscv64/cpu.c
228
cpu_match(struct device *parent, void *cfdata, void *aux)
sys/arch/riscv64/riscv64/cpu.c
244
cpu_attach(struct device *parent, struct device *dev, void *aux)
sys/arch/riscv64/riscv64/intr.c
331
int i, len, ncells, parent;
sys/arch/riscv64/riscv64/intr.c
347
parent = riscv_intr_get_parent(node);
sys/arch/riscv64/riscv64/intr.c
349
if (ic->ic_node == parent)
sys/arch/sh/dev/scif.c
399
scif_match(struct device *parent, void *vcf, void *aux)
sys/arch/sh/dev/scif.c
408
scif_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sh/dev/shb.c
50
shb_match(struct device *parent, void *vcf, void *aux)
sys/arch/sh/dev/shb.c
62
shb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sh/dev/shb.c
70
shb_search(struct device *parent, void *vcf, void *aux)
sys/arch/sh/dev/shb.c
74
if ((*cf->cf_attach->ca_match)(parent, cf, NULL) == 0)
sys/arch/sh/dev/shb.c
76
config_attach(parent, cf, NULL, shb_print);
sys/arch/sh/dev/shpcic.c
108
shpcic_match(struct device *parent, void *vcf, void *aux)
sys/arch/sh/dev/shpcic.c
140
shpcic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sh/sh/cpu.c
56
cpu_match(struct device *parent, void *vcf, void *aux)
sys/arch/sh/sh/cpu.c
67
cpu_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/auxio.c
110
auxio_sbus_match(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/dev/auxio.c
118
auxio_sbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/auxio.c
79
auxio_ebus_match(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/dev/auxio.c
87
auxio_ebus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/bbc.c
71
bbc_match(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/dev/bbc.c
81
bbc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/beep.c
105
beep_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/beep.c
95
beep_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/beeper.c
85
beeper_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/beeper.c
95
beeper_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/cbus.c
217
cbus_alloc_bus_tag(struct cbus_softc *sc, bus_space_tag_t parent)
sys/arch/sparc64/dev/cbus.c
227
bt->parent = parent;
sys/arch/sparc64/dev/cbus.c
228
bt->asi = parent->asi;
sys/arch/sparc64/dev/cbus.c
229
bt->sasi = parent->sasi;
sys/arch/sparc64/dev/cbus.c
230
bt->sparc_bus_map = parent->sparc_bus_map;
sys/arch/sparc64/dev/cbus.c
63
cbus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/cbus.c
74
cbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/ce4231.c
178
ce4231_match(struct device *parent, void *vcf, void *aux)
sys/arch/sparc64/dev/ce4231.c
189
ce4231_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/central.c
153
bt->parent = sc->sc_bt;
sys/arch/sparc64/dev/central.c
154
bt->asi = bt->parent->asi;
sys/arch/sparc64/dev/central.c
155
bt->sasi = bt->parent->sasi;
sys/arch/sparc64/dev/central.c
171
if (t->parent == NULL || t->parent->sparc_bus_map == NULL) {
sys/arch/sparc64/dev/central.c
177
return ((*t->parent->sparc_bus_map)(t, t0, addr,
sys/arch/sparc64/dev/central.c
190
return ((*t->parent->sparc_bus_map)(t->parent, t0, paddr,
sys/arch/sparc64/dev/central.c
63
central_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/central.c
73
central_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/clkbrd.c
60
clkbrd_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/clkbrd.c
70
clkbrd_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/cmp.c
39
cmp_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/cmp.c
50
cmp_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/com_ebus.c
119
com_ebus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/com_ebus.c
84
com_ebus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/comkbd_ebus.c
134
comkbd_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/comkbd_ebus.c
158
comkbd_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/comms_ebus.c
158
comms_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/comms_ebus.c
182
comms_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/core.c
39
core_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/core.c
50
core_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/creator.c
86
creator_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/creator.c
97
creator_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/ebus.c
105
ebus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/ebus.c
151
ebus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/ebus.c
360
ebus_alloc_mem_tag(struct ebus_softc *sc, bus_space_tag_t parent)
sys/arch/sparc64/dev/ebus.c
362
return (_ebus_alloc_bus_tag(sc, "mem", parent,
sys/arch/sparc64/dev/ebus.c
367
ebus_alloc_io_tag(struct ebus_softc *sc, bus_space_tag_t parent)
sys/arch/sparc64/dev/ebus.c
369
return (_ebus_alloc_bus_tag(sc, "io", parent,
sys/arch/sparc64/dev/ebus.c
378
bus_space_tag_t parent, int ss)
sys/arch/sparc64/dev/ebus.c
389
bt->parent = parent;
sys/arch/sparc64/dev/ebus.c
391
bt->asi = parent->asi;
sys/arch/sparc64/dev/ebus.c
392
bt->sasi = parent->sasi;
sys/arch/sparc64/dev/ebus.c
432
if (t->parent == 0 || t->parent->sparc_bus_map == 0) {
sys/arch/sparc64/dev/ebus.c
437
t = t->parent;
sys/arch/sparc64/dev/ebus.c
482
if (t->parent == 0 || t->parent->sparc_bus_mmap == 0) {
sys/arch/sparc64/dev/ebus.c
487
t = t->parent;
sys/arch/sparc64/dev/ebus_mainbus.c
166
ebus_alloc_bus_tag(struct ebus_softc *sc, bus_space_tag_t parent)
sys/arch/sparc64/dev/ebus_mainbus.c
176
bt->parent = parent;
sys/arch/sparc64/dev/ebus_mainbus.c
177
bt->asi = parent->asi;
sys/arch/sparc64/dev/ebus_mainbus.c
178
bt->sasi = parent->sasi;
sys/arch/sparc64/dev/ebus_mainbus.c
198
if (t->parent == 0 || t->parent->sparc_bus_map == 0) {
sys/arch/sparc64/dev/ebus_mainbus.c
203
t = t->parent;
sys/arch/sparc64/dev/ebus_mainbus.c
71
ebus_mainbus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/ebus_mainbus.c
81
ebus_mainbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/environ.c
57
environ_match(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/dev/environ.c
67
environ_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/fd.c
316
fdcmatch_sbus(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/fd.c
324
fdcattach_sbus(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/fd.c
361
fdcmatch_ebus(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/fd.c
369
fdcattach_ebus(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/fd.c
554
fdmatch(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/fd.c
556
struct fdc_softc *fdc = (void *)parent;
sys/arch/sparc64/dev/fd.c
620
fdattach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/fd.c
622
struct fdc_softc *fdc = (void *)parent;
sys/arch/sparc64/dev/fhc.c
173
bt->parent = sc->sc_bt;
sys/arch/sparc64/dev/fhc.c
174
bt->asi = bt->parent->asi;
sys/arch/sparc64/dev/fhc.c
175
bt->sasi = bt->parent->sasi;
sys/arch/sparc64/dev/fhc.c
191
if (t->parent == NULL || t->parent->sparc_bus_map == NULL) {
sys/arch/sparc64/dev/fhc.c
197
return ((*t->parent->sparc_bus_map)(t, t0, addr,
sys/arch/sparc64/dev/fhc.c
210
return ((*t->parent->sparc_bus_map)(t->parent, t0, paddr,
sys/arch/sparc64/dev/fhc_central.c
52
fhc_central_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/fhc_central.c
62
fhc_central_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/fhc_mainbus.c
50
fhc_mainbus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/fhc_mainbus.c
60
fhc_mainbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/gfb.c
58
gfb_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/gfb.c
68
gfb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/gfxp.c
165
gfxp_match(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/dev/gfxp.c
181
gfxp_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/ifb.c
348
ifbmatch(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/dev/ifb.c
354
ifbattach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/led.c
83
led_match(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/dev/led.c
99
led_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/lom.c
222
lom_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/lom.c
234
lom_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/lpt_ebus.c
59
lpt_ebus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/lpt_ebus.c
70
lpt_ebus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/machfb.c
229
machfb_match(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/dev/machfb.c
248
machfb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/mgiic.c
103
mgiic_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/mgiic.c
118
mgiic_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/pcf8591_envctrl.c
71
ecadc_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/pcf8591_envctrl.c
82
ecadc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/pcf8591_ofw.c
57
pcfadc_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/pcf8591_ofw.c
68
pcfadc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/pcfiic_ebus.c
61
pcfiic_ebus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/pcfiic_ebus.c
86
pcfiic_ebus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/pci_machdep.c
79
pci_attach_hook(struct device *parent, struct device *self,
sys/arch/sparc64/dev/pckbc_ebus.c
75
pckbc_ebus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/pckbc_ebus.c
85
pckbc_ebus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/pcons.c
149
pconsmatch(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/pcons.c
161
pconsattach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/pmc.c
65
pmc_match(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/dev/pmc.c
75
pmc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/power.c
74
power_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/power.c
84
power_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/ppm.c
72
ppm_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/ppm.c
82
ppm_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/prtc.c
62
prtc_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/prtc.c
73
prtc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/psycho.c
1013
if (t->parent == 0 || t->parent->sparc_bus_map == 0) {
sys/arch/sparc64/dev/psycho.c
1018
t = t->parent;
sys/arch/sparc64/dev/psycho.c
1057
if (t->parent == 0 || t->parent->sparc_bus_mmap == 0) {
sys/arch/sparc64/dev/psycho.c
1062
t = t->parent;
sys/arch/sparc64/dev/psycho.c
1091
if (t->parent == 0 || t->parent->sparc_bus_addr == 0) {
sys/arch/sparc64/dev/psycho.c
1096
t = t->parent;
sys/arch/sparc64/dev/psycho.c
208
psycho_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/psycho.c
242
psycho_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/psycho.c
954
bt->parent = sc->sc_bustag;
sys/arch/sparc64/dev/pyro.c
167
pyro_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/pyro.c
184
pyro_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/pyro.c
553
bt->parent = sc->sc_bust;
sys/arch/sparc64/dev/pyro.c
628
if (t->parent == 0 || t->parent->sparc_bus_map == 0) {
sys/arch/sparc64/dev/pyro.c
634
return ((*t->parent->sparc_bus_map)
sys/arch/sparc64/dev/pyro.c
646
return ((*t->parent->sparc_bus_map)
sys/arch/sparc64/dev/pyro.c
666
if (t->parent == 0 || t->parent->sparc_bus_mmap == 0) {
sys/arch/sparc64/dev/pyro.c
679
return ((*t->parent->sparc_bus_mmap)
sys/arch/sparc64/dev/radeonfb.c
156
radeonfb_match(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/dev/radeonfb.c
172
radeonfb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/raptor.c
167
raptor_match(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/dev/raptor.c
183
raptor_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/rtc.c
124
rtc_match(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/dev/rtc.c
134
rtc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/sab.c
212
sab_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/sab.c
227
sab_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/sab.c
369
sabtty_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/sab.c
379
sabtty_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/sab.c
389
sc->sc_parent = (struct sab_softc *)parent;
sys/arch/sparc64/dev/sbbc.c
171
sbbc_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/sbbc.c
183
sbbc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/sbus.c
235
sbus_mb_match(struct device *parent, void *vcf, void *aux)
sys/arch/sparc64/dev/sbus.c
244
sbus_xbox_match(struct device *parent, void *vcf, void *aux)
sys/arch/sparc64/dev/sbus.c
246
struct xbox_softc *xsc = (struct xbox_softc *)parent;
sys/arch/sparc64/dev/sbus.c
258
sbus_xbox_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/sbus.c
261
struct xbox_softc *xsc = (struct xbox_softc *)parent;
sys/arch/sparc64/dev/sbus.c
262
struct sbus_softc *sbus = (struct sbus_softc *)parent->dv_parent;
sys/arch/sparc64/dev/sbus.c
288
sbus_mb_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/sbus.c
505
if (t->parent == NULL || t->parent->sparc_bus_map == NULL) {
sys/arch/sparc64/dev/sbus.c
511
return ((*t->parent->sparc_bus_map)(t, t0, addr,
sys/arch/sparc64/dev/sbus.c
528
return ((*t->parent->sparc_bus_map)(t, t0, paddr,
sys/arch/sparc64/dev/sbus.c
776
sbt->parent = sc->sc_bustag->parent;
sys/arch/sparc64/dev/sbus.c
778
sbt->parent = sc->sc_bustag;
sys/arch/sparc64/dev/schizo.c
113
schizo_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/schizo.c
137
schizo_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/schizo.c
605
bt->parent = sc->sc_bust;
sys/arch/sparc64/dev/schizo.c
680
if (t->parent == 0 || t->parent->sparc_bus_map == 0) {
sys/arch/sparc64/dev/schizo.c
686
return ((*t->parent->sparc_bus_map)
sys/arch/sparc64/dev/schizo.c
698
return ((*t->parent->sparc_bus_map)
sys/arch/sparc64/dev/schizo.c
718
if (t->parent == 0 || t->parent->sparc_bus_mmap == 0) {
sys/arch/sparc64/dev/schizo.c
731
return ((*t->parent->sparc_bus_mmap)
sys/arch/sparc64/dev/schizo.c
747
if (t->parent == 0 || t->parent->sparc_bus_addr == 0) {
sys/arch/sparc64/dev/schizo.c
752
t = t->parent;
sys/arch/sparc64/dev/ssm.c
40
ssm_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/ssm.c
51
ssm_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/stp_sbus.c
71
stpmatch(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/stp_sbus.c
82
stpattach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/tda.c
80
tda_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/tda.c
98
tda_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/upa.c
163
bt->parent = sc->sc_bt;
sys/arch/sparc64/dev/upa.c
164
bt->asi = bt->parent->asi;
sys/arch/sparc64/dev/upa.c
165
bt->sasi = bt->parent->sasi;
sys/arch/sparc64/dev/upa.c
179
if (t->parent == 0 || t->parent->sparc_bus_map == 0) {
sys/arch/sparc64/dev/upa.c
184
t = t->parent;
sys/arch/sparc64/dev/upa.c
215
if (t->parent == 0 || t->parent->sparc_bus_map == 0) {
sys/arch/sparc64/dev/upa.c
220
t = t->parent;
sys/arch/sparc64/dev/upa.c
82
upa_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/upa.c
93
upa_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/uperf_ebus.c
112
uperf_ebus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/uperf_ebus.c
120
uperf_ebus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vbus.c
140
int parent;
sys/arch/sparc64/dev/vbus.c
147
parent = OF_parent(node);
sys/arch/sparc64/dev/vbus.c
149
address_cells = getpropint(parent, "#address-cells", 2);
sys/arch/sparc64/dev/vbus.c
150
interrupt_cells = getpropint(parent, "#interrupt-cells", 1);
sys/arch/sparc64/dev/vbus.c
153
len = OF_getproplen(parent, "interrupt-map-mask");
sys/arch/sparc64/dev/vbus.c
159
if (OF_getprop(parent, "interrupt-map-mask", imap_mask, len) != len)
sys/arch/sparc64/dev/vbus.c
162
getprop(parent, "interrupt-map", sizeof(int), &nimap, (void **)&imap);
sys/arch/sparc64/dev/vbus.c
269
vbus_alloc_bus_tag(struct vbus_softc *sc, bus_space_tag_t parent)
sys/arch/sparc64/dev/vbus.c
279
bt->parent = parent;
sys/arch/sparc64/dev/vbus.c
280
bt->asi = parent->asi;
sys/arch/sparc64/dev/vbus.c
281
bt->sasi = parent->sasi;
sys/arch/sparc64/dev/vbus.c
282
bt->sparc_bus_map = parent->sparc_bus_map;
sys/arch/sparc64/dev/vbus.c
59
vbus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vbus.c
70
vbus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vcc.c
56
vcc_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vcc.c
67
vcc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vcctty.c
93
vcctty_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vcctty.c
99
vcctty_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vcons.c
69
vcons_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vcons.c
80
vcons_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vds.c
56
vds_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vds.c
67
vds_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vdsk.c
220
vdsk_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vdsk.c
231
vdsk_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vdsp.c
317
vdsp_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vdsp.c
328
vdsp_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vgafb.c
106
vgafbmatch(struct device *parent, void *vcf, void *aux)
sys/arch/sparc64/dev/vgafb.c
141
vgafbattach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vldc.c
56
vldc_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vldc.c
68
vldc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vldcp.c
113
vldcp_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vldcp.c
130
vldcp_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vnet.c
238
vnet_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vnet.c
249
vnet_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vpci.c
146
vpci_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vpci.c
158
vpci_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vpci.c
471
bt->parent = sc->sc_bust;
sys/arch/sparc64/dev/vpci.c
544
if (t->parent == 0 || t->parent->sparc_bus_map == 0)
sys/arch/sparc64/dev/vpci.c
548
return ((*t->parent->sparc_bus_map)
sys/arch/sparc64/dev/vpci.c
571
return ((*t->parent->sparc_bus_map)
sys/arch/sparc64/dev/vpci.c
586
if (t->parent == 0 || t->parent->sparc_bus_mmap == 0)
sys/arch/sparc64/dev/vpci.c
597
return ((*t->parent->sparc_bus_mmap)
sys/arch/sparc64/dev/vrng.c
67
vrng_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vrng.c
78
vrng_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vrtc.c
47
vrtc_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vrtc.c
58
vrtc_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/vsw.c
56
vsw_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vsw.c
67
vsw_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/wbsd_ebus.c
46
wbsd_ebus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/wbsd_ebus.c
57
wbsd_ebus_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/z8530kbd.c
242
zskbd_match(struct device *parent, void *vcf, void *aux)
sys/arch/sparc64/dev/z8530kbd.c
266
zskbd_attach(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/z8530kbd.c
268
struct zsc_softc *zsc = (void *)parent;
sys/arch/sparc64/dev/zs.c
169
zs_match_sbus(struct device *parent, void *vcf, void *aux)
sys/arch/sparc64/dev/zs.c
181
zs_match_fhc(struct device *parent, void *vcf, void *aux)
sys/arch/sparc64/dev/zs.c
192
zs_attach_sbus(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/dev/zs.c
238
zs_attach_fhc(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/include/bus.h
166
bus_space_tag_t parent;
sys/arch/sparc64/include/bus.h
317
t = t->parent;
sys/arch/sparc64/sparc64/autoconf.c
869
mainbus_match(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/sparc64/autoconf.c
882
mainbus_attach(struct device *parent, struct device *dev, void *aux)
sys/arch/sparc64/sparc64/clock.c
216
clockmatch_sbus(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/sparc64/clock.c
224
clockmatch_ebus(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/sparc64/clock.c
232
clockmatch_fhc(struct device *parent, void *cf, void *aux)
sys/arch/sparc64/sparc64/clock.c
263
clockattach_sbus(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/sparc64/clock.c
323
clockattach_ebus(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/sparc64/clock.c
357
clockattach_fhc(struct device *parent, struct device *self, void *aux)
sys/arch/sparc64/sparc64/cpu.c
199
cpu_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/sparc64/cpu.c
235
cpu_attach(struct device *parent, struct device *dev, void *aux)
sys/arch/sparc64/sparc64/cpu.c
253
if (strcmp(parent->dv_cfdata->cf_driver->cd_name, "core") == 0)
sys/arch/sparc64/sparc64/machdep.c
1718
.parent = NULL,
sys/arch/sparc64/sparc64/machdep.c
1742
t = t->parent;
sys/arch/sparc64/sparc64/machdep.c
1941
if (t->parent)
sys/arch/sparc64/sparc64/machdep.c
1942
bus_space_render_tag(t->parent, buf, len);
sys/arch/sparc64/sparc64/ofw_machdep.c
955
int *parent = &imap[address_cells + interrupt_cells];
sys/arch/sparc64/sparc64/ofw_machdep.c
958
DPRINTF(("\ninterrupt-map addr (a %d, i %d p %p) ", address_cells, interrupt_cells, parent));
sys/arch/sparc64/sparc64/ofw_machdep.c
965
imap[len], *parent));
sys/arch/sparc64/sparc64/ofw_machdep.c
969
if ((len = OF_searchprop(*parent, "#interrupt-cells",
sys/arch/sparc64/sparc64/ofw_machdep.c
987
node = *parent;
sys/arch/sparc64/sparc64/ofw_machdep.c
988
parent++;
sys/arch/sparc64/sparc64/ofw_machdep.c
992
DPRINTF(("%x.", parent[len]));
sys/arch/sparc64/sparc64/ofw_machdep.c
995
interrupt[i] = parent[i];
sys/arch/sparc64/sparc64/openfirm.c
100
return args.parent;
sys/arch/sparc64/sparc64/openfirm.c
91
cell_t parent;
sys/arch/sparc64/sparc64/rbus_machdep.c
135
pccbb_attach_hook(struct device *parent, struct device *self,
sys/arch/sparc64/stand/ofwboot/Locore.c
630
cell_t parent;
sys/arch/sparc64/stand/ofwboot/Locore.c
639
return args.parent;
sys/arch/sparc64/stand/ofwboot/diskprobe.c
44
int parent;
sys/arch/sparc64/stand/ofwboot/diskprobe.c
71
parent = OF_parent(node);
sys/arch/sparc64/stand/ofwboot/diskprobe.c
72
if (parent && OF_getprop(parent, "device_type", buf,
sys/arch/sparc64/stand/ofwboot/ofdev.c
507
int dhandle, ihandle, part, parent;
sys/arch/sparc64/stand/ofwboot/ofdev.c
676
parent = OF_parent(dhandle);
sys/arch/sparc64/stand/ofwboot/ofdev.c
677
if (parent && OF_getprop(parent, "device_type", buf,
sys/dev/acpi/abl.c
104
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/abl.c
85
abl_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/abl.c
94
abl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpi.c
1383
acpi_submatch(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpi.c
1390
return ((*cf->cf_attach->ca_match)(parent, match, aux));
sys/dev/acpi/acpi.c
1960
return ((is_ata(node) || is_ata(node->parent)) && is_ejectable(node));
sys/dev/acpi/acpi.c
2023
for (pp=node->parent; pp; pp=pp->parent) {
sys/dev/acpi/acpi.c
2031
aml_evalinteger(sc, node->parent, "_ADR", 0, NULL,
sys/dev/acpi/acpi.c
2033
aml_rdpciaddr(node->parent->parent, &pi);
sys/dev/acpi/acpi.c
2036
aml_evalinteger(sc, node->parent->parent, "_ADR", 0, NULL,
sys/dev/acpi/acpi.c
2038
aml_rdpciaddr(node->parent->parent->parent, &pi);
sys/dev/acpi/acpi.c
2451
sta = acpi_getsta(sc, node->parent);
sys/dev/acpi/acpi.c
2465
dnprintf(10, "Found _PRW (%s)\n", node->parent->name);
sys/dev/acpi/acpi.c
2467
wq->q_node = node->parent;
sys/dev/acpi/acpi.c
2857
aaa.aaa_node = node->parent;
sys/dev/acpi/acpi.c
2894
if (sc->sc_ec && sc->sc_ec->sc_devnode == node->parent)
sys/dev/acpi/acpi.c
2900
aaa.aaa_node = node->parent;
sys/dev/acpi/acpi.c
2919
aaa.aaa_node = node->parent;
sys/dev/acpi/acpi.c
3040
if (aml_evalname(acpi_softc, node->parent, "_CID", 0, NULL, &res) == 0) {
sys/dev/acpi/acpi.c
3065
dnprintf(10, "found hid device: %s ", node->parent->name);
sys/dev/acpi/acpi.c
3303
sta = acpi_getsta(sc, node->parent);
sys/dev/acpi/acpi.c
3309
if (aml_evalinteger(sc, node->parent, "_CCA", 0, NULL, &cca))
sys/dev/acpi/acpi.c
3312
acpi_attach_deps(sc, node->parent);
sys/dev/acpi/acpi.c
3318
aaa.aaa_node = node->parent;
sys/dev/acpi/acpi.c
3339
aaa.aaa_dmat = acpi_iommu_device_map(node->parent, aaa.aaa_dmat);
sys/dev/acpi/acpi.c
3341
if (!node->parent->attached) {
sys/dev/acpi/acpi.c
3342
node->parent->attached = 1;
sys/dev/acpi/acpi.c
3360
dnprintf(10, "found dock entry: %s\n", node->parent->name);
sys/dev/acpi/acpi.c
3365
aaa.aaa_node = node->parent;
sys/dev/acpi/acpi.c
3383
aaa.aaa_node = node->parent;
sys/dev/acpi/acpi.c
3403
sta = acpi_getsta(sc, node->parent);
sys/dev/acpi/acpi.c
3407
acpi_attach_deps(sc, node->parent);
sys/dev/acpi/acpi.c
3412
if (node->parent->attached)
sys/dev/acpi/acpi.c
3418
aaa.aaa_node = node->parent;
sys/dev/acpi/acpi.c
3423
node->parent->attached = 1;
sys/dev/acpi/acpi.c
406
sta = acpi_getsta(sc, node->parent);
sys/dev/acpi/acpi.c
432
dnprintf(10, "found prt entry: %s\n", node->parent->name);
sys/dev/acpi/acpi.c
435
sta = acpi_getsta(sc, node->parent);
sys/dev/acpi/acpi.c
651
if (!node->parent || (ppci = node->parent->pci) == NULL)
sys/dev/acpi/acpiac.c
60
acpiac_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpiac.c
70
acpiac_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpiac.c
76
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpials.c
100
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpials.c
78
acpials_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpials.c
94
acpials_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpiasus.c
104
acpiasus_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpiasus.c
113
acpiasus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpiasus.c
118
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpibat.c
61
acpibat_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpibat.c
66
if (((struct acpi_softc *)parent)->sc_havesbs)
sys/dev/acpi/acpibat.c
74
acpibat_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpibat.c
80
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpibtn.c
150
acpibtn_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpibtn.c
160
acpibtn_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpibtn.c
168
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpicbkbd.c
73
acpicbkbd_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpicbkbd.c
82
acpicbkbd_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpicbkbd.c
87
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpicmos.c
53
acpicmos_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpicmos.c
62
acpicmos_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpicpu_x86.c
651
acpicpu_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpicpu_x86.c
655
struct acpi_softc *acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpicpu_x86.c
689
acpicpu_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpicpu_x86.c
700
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpidebug.c
339
for (root=aml_lastscope; root && root->pos; root=root->parent) {
sys/dev/acpi/acpidmar.c
3543
acpidmar_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpidmar.c
3563
acpidmar_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpidock.c
291
aml_walknodes(node->parent, AML_WALK_POST,
sys/dev/acpi/acpidock.c
57
acpidock_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpidock.c
72
acpidock_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpidock.c
77
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpiec.c
255
acpiec_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpiec.c
260
struct acpi_softc *acpisc = (struct acpi_softc *)parent;
sys/dev/acpi/acpiec.c
274
acpiec_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpiec.c
284
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpige.c
63
acpige_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpige.c
72
acpige_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpige.c
79
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpihid.c
80
acpihid_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpihid.c
89
acpihid_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpihid.c
96
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpihpet.c
182
acpihpet_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpihpet.c
204
acpihpet_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpihpet.c
207
struct acpi_softc *psc = (struct acpi_softc *)parent;
sys/dev/acpi/acpihve.c
49
acpihve_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpihve.c
70
acpihve_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpimadt.c
190
acpimadt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpimadt.c
192
struct acpi_softc *acpi_sc = (struct acpi_softc *)parent;
sys/dev/acpi/acpimadt.c
193
struct device *mainbus = parent->dv_parent->dv_parent;
sys/dev/acpi/acpimadt.c
59
acpimadt_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpimcfg.c
38
acpimcfg_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpimcfg.c
60
acpimcfg_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpiprt.c
103
acpiprt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpiprt.c
110
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpiprt.c
113
printf(": bus %d (%s)", sc->sc_bus, sc->sc_devnode->parent->name);
sys/dev/acpi/acpiprt.c
412
return (node->parent && node->parent->pci) ?
sys/dev/acpi/acpiprt.c
413
node->parent->pci->sub : -1;
sys/dev/acpi/acpiprt.c
88
acpiprt_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpipwrres.c
101
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpipwrres.c
216
if (!acpipwrres_hascons(sc, node->parent)) {
sys/dev/acpi/acpipwrres.c
221
cons->cs_node = node->parent;
sys/dev/acpi/acpipwrres.c
226
node->parent->name, state));
sys/dev/acpi/acpipwrres.c
233
if (pr->p_node == node->parent &&
sys/dev/acpi/acpipwrres.c
246
pr->p_node = node->parent;
sys/dev/acpi/acpipwrres.c
81
acpipwrres_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpipwrres.c
94
acpipwrres_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpisbs.c
157
acpisbs_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpisbs.c
166
acpisbs_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpisbs.c
172
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpisbs.c
187
if (aml_evalinteger(sc->sc_acpi, sc->sc_devnode->parent, "_EC", 0,
sys/dev/acpi/acpisbs.c
221
aml_register_notify(sc->sc_devnode->parent, aa->aaa_dev,
sys/dev/acpi/acpisectwo.c
53
acpisectwo_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpisectwo.c
67
acpisectwo_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpisony.c
102
acpisony_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpisony.c
107
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpisony.c
88
acpisony_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpisurface.c
79
surface_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpisurface.c
91
surface_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpisurface.c
96
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpithinkpad.c
226
thinkpad_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpithinkpad.c
235
if (aml_evalinteger((struct acpi_softc *)parent, aa->aaa_node,
sys/dev/acpi/acpithinkpad.c
315
thinkpad_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpithinkpad.c
322
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpitimer.c
62
acpitimermatch(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpitimer.c
77
acpitimerattach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpitimer.c
80
struct acpi_softc *psc = (struct acpi_softc *) parent;
sys/dev/acpi/acpitoshiba.c
203
toshiba_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpitoshiba.c
264
toshiba_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpitoshiba.c
270
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpitz.c
167
acpitz_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpitz.c
185
acpitz_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpitz.c
192
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpivideo.c
146
node = node->parent;
sys/dev/acpi/acpivideo.c
149
if (node->parent != sc->sc_devnode)
sys/dev/acpi/acpivideo.c
184
return (node->parent && node->parent->pci) ?
sys/dev/acpi/acpivideo.c
185
node->parent->pci->sub : -1;
sys/dev/acpi/acpivideo.c
69
acpivideo_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpivideo.c
82
acpivideo_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpivideo.c
87
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpivout.c
100
acpivout_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpivout.c
105
sc->sc_acpi = ((struct acpivideo_softc *)parent)->sc_acpi;
sys/dev/acpi/acpivout.c
86
acpivout_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpiwmi.c
155
acpiwmi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/acpiwmi.c
161
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/acpiwmi.c
76
acpiwmi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/ahci_acpi.c
48
ahci_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/ahci_acpi.c
59
ahci_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/ahci_acpi.c
64
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/amdgpio.c
107
amdgpio_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/amdgpio.c
118
amdgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/amdgpio.c
124
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/amdpmc.c
182
amdpmc_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/amdpmc.c
191
amdpmc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/amdpmc.c
204
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/amltypes.h
382
struct aml_node *parent;
sys/dev/acpi/aplgpio.c
103
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/aplgpio.c
85
aplgpio_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/aplgpio.c
96
aplgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/asmc.c
240
asmc_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/asmc.c
251
asmc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/asmc.c
270
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/atk0110.c
130
aibs_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/atk0110.c
139
aibs_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/atk0110.c
144
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/bytgpio.c
112
bytgpio_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/bytgpio.c
123
bytgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/bytgpio.c
131
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/ccp_acpi.c
48
ccp_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/ccp_acpi.c
59
ccp_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/ccp_acpi.c
64
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/ccpmic.c
107
ccpmic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/ccpmic.c
99
ccpmic_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/chvgpio.c
156
chvgpio_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/chvgpio.c
167
chvgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/chvgpio.c
174
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/com_acpi.c
100
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/com_acpi.c
63
com_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/com_acpi.c
94
com_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/dsdt.c
1334
if ((node = node->parent) == NULL)
sys/dev/acpi/dsdt.c
1357
relnode = relnode->parent;
sys/dev/acpi/dsdt.c
1831
scope->parent->pos = scope->end;
sys/dev/acpi/dsdt.c
1836
scope = scope->parent;
sys/dev/acpi/dsdt.c
1894
aml_pushscope(struct aml_scope *parent, struct aml_value *range,
sys/dev/acpi/dsdt.c
1917
scope->parent = parent;
sys/dev/acpi/dsdt.c
1921
if (parent)
sys/dev/acpi/dsdt.c
1922
scope->depth = parent->depth+1;
sys/dev/acpi/dsdt.c
1938
nscope = scope->parent;
sys/dev/acpi/dsdt.c
2362
pcidev = pcidev->parent;
sys/dev/acpi/dsdt.c
2519
aml_rdpciaddr(rgn->node->parent, &pi);
sys/dev/acpi/dsdt.c
281
for (root = aml_lastscope; root && root->pos; root = root->parent) {
sys/dev/acpi/dsdt.c
3842
scope = scope->parent;
sys/dev/acpi/dsdt.c
4720
aml_evalname(struct acpi_softc *sc, struct aml_node *parent, const char *name,
sys/dev/acpi/dsdt.c
4723
parent = aml_searchname(parent, name);
sys/dev/acpi/dsdt.c
4724
return aml_evalnode(sc, parent, argc, argv, res);
sys/dev/acpi/dsdt.c
4731
aml_evalinteger(struct acpi_softc *sc, struct aml_node *parent,
sys/dev/acpi/dsdt.c
4737
parent = aml_searchname(parent, name);
sys/dev/acpi/dsdt.c
4738
rc = aml_evalnode(sc, parent, argc, argv, &res);
sys/dev/acpi/dsdt.c
4792
root = root->parent;
sys/dev/acpi/dsdt.c
632
node->parent = root;
sys/dev/acpi/dsdt.c
649
aml_nodename(node->parent);
sys/dev/acpi/dsdt.c
650
if (node->parent != &aml_root)
sys/dev/acpi/dsdt.h
27
struct aml_scope *parent;
sys/dev/acpi/dwgpio.c
109
dwgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/dwgpio.c
115
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/dwgpio.c
185
struct aml_node *node = child->parent;
sys/dev/acpi/dwgpio.c
98
dwgpio_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/dwiic_acpi.c
156
dwiic_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/dwiic_acpi.c
167
dwiic_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/dwiic_acpi.c
175
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/dwiic_acpi.c
444
if (node->parent == sc->sc_devnode)
sys/dev/acpi/dwiic_acpi.c
450
if (aml_evalinteger(acpi_softc, node->parent, "_STA", 0, NULL, &sta))
sys/dev/acpi/dwiic_acpi.c
459
if (aml_evalname(acpi_softc, node->parent, "_CRS", 0, NULL, &res))
sys/dev/acpi/dwiic_acpi.c
473
acpi_attach_deps(acpi_softc, node->parent);
sys/dev/acpi/dwiic_acpi.c
486
ia.ia_cookie = node->parent;
sys/dev/acpi/dwiic_acpi.c
492
node->parent->attached = 1;
sys/dev/acpi/dwiic_acpi.c
510
if (!aml_searchname(node->parent, "_DSM")) {
sys/dev/acpi/dwiic_acpi.c
512
aml_nodename(node->parent));
sys/dev/acpi/dwiic_acpi.c
532
if (aml_evalname(acpi_softc, node->parent, "_DSM", 4, cmd, &res)) {
sys/dev/acpi/dwiic_acpi.c
534
sc->sc_dev.dv_xname, aml_nodename(node->parent));
sys/dev/acpi/dwiic_acpi.c
540
sc->sc_dev.dv_xname, aml_nodename(node->parent), res.type);
sys/dev/acpi/dwiic_acpi.c
561
node->parent->attached = 1;
sys/dev/acpi/dwiic_acpi.c
587
node->parent->attached = 1;
sys/dev/acpi/dwiic_acpi.c
601
if (aml_evalname(acpi_softc, node->parent, "GPIO", 0, NULL, &res))
sys/dev/acpi/dwiic_acpi.c
614
aml_nodename(node->parent));
sys/dev/acpi/dwiic_acpi.c
620
node->parent->attached = 1;
sys/dev/acpi/ehci_acpi.c
61
ehci_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/ehci_acpi.c
72
ehci_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/ehci_acpi.c
78
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/glkgpio.c
103
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/glkgpio.c
85
glkgpio_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/glkgpio.c
96
glkgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/if_bse_acpi.c
58
bse_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/if_bse_acpi.c
69
bse_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/if_bse_acpi.c
76
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/imxiic_acpi.c
192
if (node->parent == ac->ac_devnode)
sys/dev/acpi/imxiic_acpi.c
196
if (node->parent && node->parent->parent != ac->ac_devnode)
sys/dev/acpi/imxiic_acpi.c
202
sta = acpi_getsta(acpi_softc, node->parent);
sys/dev/acpi/imxiic_acpi.c
206
if (aml_evalname(acpi_softc, node->parent, "_CRS", 0, NULL, &res))
sys/dev/acpi/imxiic_acpi.c
220
acpi_attach_deps(acpi_softc, node->parent);
sys/dev/acpi/imxiic_acpi.c
226
ia.ia_cookie = node->parent;
sys/dev/acpi/imxiic_acpi.c
229
node->parent->attached = 1;
sys/dev/acpi/imxiic_acpi.c
65
imxiic_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/imxiic_acpi.c
76
imxiic_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/imxiic_acpi.c
83
ac->ac_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/intelpmc.c
106
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/intelpmc.c
90
intelpmc_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/intelpmc.c
99
intelpmc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/inthid.c
152
inthid_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/inthid.c
161
inthid_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/inthid.c
167
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/iosf_acpi.c
62
iosf_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/iosf_acpi.c
74
iosf_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/iosf_acpi.c
81
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/ipmi_acpi.c
64
ipmi_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/ipmi_acpi.c
74
ipmi_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/ipmi_acpi.c
83
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/ispi_acpi.c
104
sta = acpi_getsta(acpi_softc, node->parent);
sys/dev/acpi/ispi_acpi.c
111
acpi_attach_deps(acpi_softc, node->parent);
sys/dev/acpi/ispi_acpi.c
62
ispi_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/ispi_acpi.c
71
ispi_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/ispi_acpi.c
76
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/ispi_acpi.c
98
if (node->parent == sc->sc_devnode)
sys/dev/acpi/ohci_acpi.c
57
ohci_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/ohci_acpi.c
66
ohci_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/ohci_acpi.c
71
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/pchgpio.c
477
pchgpio_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/pchgpio.c
488
pchgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/pchgpio.c
495
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/pckbc_acpi.c
112
pckbc_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/pckbc_acpi.c
116
return pckbc_acpi_match_kbd(parent, match, aux);
sys/dev/acpi/pckbc_acpi.c
118
return pckbc_acpi_match_mouse(parent, match, aux, sc);
sys/dev/acpi/pckbc_acpi.c
122
pckbc_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/pckbc_acpi.c
126
return pckbc_acpi_attach_kbd(parent, self, aux);
sys/dev/acpi/pckbc_acpi.c
128
return pckbc_acpi_attach_mouse(parent, self, aux);
sys/dev/acpi/pckbc_acpi.c
144
pckbc_acpi_match_kbd(struct device *parent, void *match, void *aux)
sys/dev/acpi/pckbc_acpi.c
175
pckbc_acpi_crs_walk(parent, aaa->aaa_node, &crsdata,
sys/dev/acpi/pckbc_acpi.c
195
pckbc_acpi_match_mouse(struct device *parent, void *match, void *aux,
sys/dev/acpi/pckbc_acpi.c
216
pckbc_acpi_crs_walk(parent, aaa->aaa_node, &crsdata,
sys/dev/acpi/pckbc_acpi.c
250
pckbc_acpi_attach_kbd(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/pckbc_acpi.c
261
pckbc_acpi_crs_walk(parent, aaa->aaa_node, &crsdata,
sys/dev/acpi/pckbc_acpi.c
356
pckbc_acpi_attach_mouse(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/pckbc_acpi.c
364
pckbc_acpi_crs_walk(parent, aaa->aaa_node, &crsdata,
sys/dev/acpi/pluart_acpi.c
56
pluart_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/pluart_acpi.c
67
pluart_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/pluart_acpi.c
72
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/qcgpio.c
282
qcgpio_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/qcgpio.c
293
qcgpio_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/qcgpio.c
299
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/qciic.c
116
qciic_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/qciic.c
127
qciic_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/qciic.c
133
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/qciic.c
426
if (node->parent == sc->sc_node)
sys/dev/acpi/qciic.c
432
sta = acpi_getsta(acpi_softc, node->parent);
sys/dev/acpi/qciic.c
436
if (aml_evalname(acpi_softc, node->parent, "_CRS", 0, NULL, &res))
sys/dev/acpi/qciic.c
444
crs.node = node->parent;
sys/dev/acpi/qciic.c
452
acpi_attach_deps(acpi_softc, node->parent);
sys/dev/acpi/qciic.c
461
ia.ia_cookie = node->parent;
sys/dev/acpi/qciic.c
464
node->parent->attached = 1;
sys/dev/acpi/qciic.c
482
if (!aml_searchname(node->parent, "_DSM")) {
sys/dev/acpi/qciic.c
484
aml_nodename(node->parent));
sys/dev/acpi/qciic.c
504
if (aml_evalname(acpi_softc, node->parent, "_DSM", 4, cmd, &res)) {
sys/dev/acpi/qciic.c
506
sc->sc_dev.dv_xname, aml_nodename(node->parent));
sys/dev/acpi/qciic.c
512
sc->sc_dev.dv_xname, aml_nodename(node->parent), res.type);
sys/dev/acpi/qciic.c
530
node->parent->attached = 1;
sys/dev/acpi/qcscm_acpi.c
45
qcscm_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/qcscm_acpi.c
54
qcscm_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/qcscm_acpi.c
56
qcscm_attach(parent, self, aux);
sys/dev/acpi/qcuart_acpi.c
52
qcuart_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/qcuart_acpi.c
63
qcuart_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/qcuart_acpi.c
68
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/sdhc_acpi.c
77
sdhc_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/sdhc_acpi.c
88
sdhc_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/sdhc_acpi.c
95
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/tipmic.c
110
tipmic_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/tipmic.c
118
tipmic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/tpm.c
250
tpm_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/tpm.c
261
tpm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/tpm.c
268
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/ufshci_acpi.c
58
ufshci_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/ufshci_acpi.c
70
ufshci_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/ufshci_acpi.c
76
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/acpi/xhci_acpi.c
74
xhci_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/xhci_acpi.c
85
xhci_acpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/acpi/xhci_acpi.c
92
sc->sc_acpi = (struct acpi_softc *)parent;
sys/dev/adb/akbd.c
112
akbdattach(struct device *parent, struct device *self, void *aux)
sys/dev/adb/akbd.c
98
akbdmatch(struct device *parent, void *vcf, void *aux)
sys/dev/adb/ams.c
76
amsmatch(struct device *parent, void *cf, void *aux)
sys/dev/adb/ams.c
90
amsattach(struct device *parent, struct device *self, void *aux)
sys/dev/ata/wd.c
147
wdprobe(struct device *parent, void *match_, void *aux)
sys/dev/ata/wd.c
169
wdattach(struct device *parent, struct device *self, void *aux)
sys/dev/atapiscsi/atapiscsi.c
167
atapiscsi_match(struct device *parent, void *match, void *aux)
sys/dev/atapiscsi/atapiscsi.c
186
atapiscsi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/audio.c
1190
audio_match(struct device *parent, void *match, void *aux)
sys/dev/audio.c
1198
audio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/audio.c
1434
audio_submatch(struct device *parent, void *match, void *aux)
sys/dev/cardbus/cardbus.c
106
cardbusattach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/cardbus.c
552
cardbussubmatch(struct device *parent, void *match, void *aux)
sys/dev/cardbus/cardbus.c
566
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/dev/cardbus/cardbus.c
91
cardbusmatch(struct device *parent, void *match, void *aux)
sys/dev/cardbus/cardslot.c
163
cardslot_16_submatch(struct device *parent, void *match, void *aux)
sys/dev/cardbus/cardslot.c
171
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/dev/cardbus/cardslot.c
76
cardslotmatch(struct device *parent, void *match, void *aux)
sys/dev/cardbus/cardslot.c
89
cardslotattach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/com_cardbus.c
148
com_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/com_cardbus.c
237
com_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/ehci_cardbus.c
71
ehci_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/ehci_cardbus.c
84
ehci_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/if_acx_cardbus.c
104
acx_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/if_acx_cardbus.c
96
acx_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_ath_cardbus.c
113
ath_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/if_ath_cardbus.c
98
ath_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_athn_cardbus.c
100
athn_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_athn_cardbus.c
107
athn_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/if_atw_cardbus.c
111
atw_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_atw_cardbus.c
118
atw_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/if_bwi_cardbus.c
88
bwi_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_bwi_cardbus.c
95
bwi_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/if_dc_cardbus.c
105
dc_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_dc_cardbus.c
112
dc_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/if_fxp_cardbus.c
103
fxp_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/if_fxp_cardbus.c
96
fxp_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_malo_cardbus.c
58
int malo_cardbus_match(struct device *parent, void *match, void *aux);
sys/dev/cardbus/if_malo_cardbus.c
59
void malo_cardbus_attach(struct device *parent, struct device *self,
sys/dev/cardbus/if_malo_cardbus.c
78
malo_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_malo_cardbus.c
85
malo_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/if_pgt_cardbus.c
82
pgt_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_pgt_cardbus.c
90
pgt_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/if_ral_cardbus.c
144
ral_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_ral_cardbus.c
151
ral_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/if_re_cardbus.c
85
re_cardbus_probe(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_re_cardbus.c
96
re_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/if_rl_cardbus.c
115
rl_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_rl_cardbus.c
123
rl_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/if_rtw_cardbus.c
150
rtw_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_rtw_cardbus.c
177
rtw_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/if_xl_cardbus.c
163
xl_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_xl_cardbus.c
174
xl_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/ohci_cardbus.c
78
ohci_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/ohci_cardbus.c
91
ohci_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/puc_cardbus.c
52
puc_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/puc_cardbus.c
76
puc_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/cardbus/uhci_cardbus.c
68
uhci_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/uhci_cardbus.c
81
uhci_cardbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/dt/dt_dev.c
180
dtattach(struct device *parent, struct device *self, void *aux)
sys/dev/eisa/ahc_eisa.c
104
ahc_eisa_match(struct device *parent, void *match, void *aux)
sys/dev/eisa/ahc_eisa.c
133
ahc_eisa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/eisa/cac_eisa.c
121
cac_eisa_match(struct device *parent, void *match, void *aux)
sys/dev/eisa/cac_eisa.c
136
cac_eisa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/eisa/eisa.c
104
return ((*cf->cf_attach->ca_match)(parent, match, aux));
sys/dev/eisa/eisa.c
108
eisaattach(struct device *parent, struct device *self, void *aux)
sys/dev/eisa/eisa.c
115
eisa_attach_hook(parent, self, eba);
sys/dev/eisa/eisa.c
68
eisamatch(struct device *parent, void *match, void *aux)
sys/dev/eisa/eisa.c
96
eisasubmatch(struct device *parent, void *match, void *aux)
sys/dev/eisa/if_ep_eisa.c
107
ep_eisa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/eisa/if_ep_eisa.c
85
ep_eisa_match(struct device *parent, void *match, void *aux)
sys/dev/eisa/uha_eisa.c
101
uha_eisa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/eisa/uha_eisa.c
75
uha_eisa_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/acrtc.c
89
acrtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/acrtc.c
99
acrtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/ahci_fdt.c
53
ahci_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ahci_fdt.c
64
ahci_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/amlclock.c
165
amlclock_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlclock.c
175
amlclock_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/amldwusb.c
135
amldwusb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amldwusb.c
143
amldwusb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/amldwusb.c
197
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/dev/fdt/amliic.c
103
amliic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/amliic.c
95
amliic_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlmmc.c
198
amlmmc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlmmc.c
207
amlmmc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/amlpciephy.c
78
amlpciephy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlpciephy.c
86
amlpciephy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/amlpinctrl.c
373
amlpinctrl_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlpinctrl.c
383
amlpinctrl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/amlpwm.c
84
amlpwm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlpwm.c
94
amlpwm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/amlpwrc.c
81
amlpwrc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlpwrc.c
90
amlpwrc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/amlreset.c
66
amlreset_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlreset.c
74
amlreset_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/amlrng.c
57
amlrng_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlrng.c
65
amlrng_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/amlsm.c
65
amlsm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlsm.c
73
amlsm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/amltemp.c
88
amltemp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amltemp.c
96
amltemp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/amluart.c
131
amluart_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amluart.c
139
amluart_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/amlusbphy.c
114
amlusbphy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlusbphy.c
122
amlusbphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/axppmic.c
444
axppmic_i2c_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/axppmic.c
454
axppmic_i2c_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/axppmic.c
521
axppmic_rsb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/axppmic.c
531
axppmic_rsb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcm2711_pcie.c
215
bcmpcie_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2711_pcie.c
262
bcmpcie_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcm2711_pcie.c
855
bcmpcie_attach_hook(struct device *parent, struct device *self,
sys/dev/fdt/bcm2711_rng.c
64
bcmirng_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2711_rng.c
73
bcmirng_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcm2711_tmon.c
67
bcmtmon_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2711_tmon.c
80
bcmtmon_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcm2835_aux.c
64
bcmaux_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_aux.c
72
bcmaux_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcm2835_bsc.c
106
bcmbsc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcm2835_bsc.c
98
bcmbsc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_clock.c
107
bcmclock_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcm2835_clock.c
98
bcmclock_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_dmac.c
128
bcmdmac_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_dmac.c
136
bcmdmac_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcm2835_dog.c
77
bcmdog_match(struct device *parent, void *cfdata, void *aux)
sys/dev/fdt/bcm2835_dog.c
85
bcmdog_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcm2835_dwctwo.c
89
bcm_dwctwo_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_dwctwo.c
98
bcm_dwctwo_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcm2835_gpio.c
100
bcmgpio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_gpio.c
109
bcmgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcm2835_gpio.c
353
bcmgpio_attach_gpio(struct device *parent)
sys/dev/fdt/bcm2835_gpio.c
355
struct bcmgpio_softc *sc = (struct bcmgpio_softc *)parent;
sys/dev/fdt/bcm2835_mbox.c
102
bcmmbox_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_mbox.c
110
bcmmbox_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcm2835_rng.c
63
bcmrng_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_rng.c
71
bcmrng_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcm2835_sdhost.c
197
bcmsdhost_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_sdhost.c
205
bcmsdhost_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcm2835_temp.c
66
bcmtemp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_temp.c
75
bcmtemp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcmstbgpio.c
101
bcmstbgpio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcmstbgpio.c
109
bcmstbgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcmstbintc.c
86
bcmstbintc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcmstbintc.c
94
bcmstbintc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcmstbpinctrl.c
125
bcmstbpinctrl_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcmstbpinctrl.c
136
bcmstbpinctrl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcmstbrescal.c
69
bcmstbrescal_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcmstbrescal.c
77
bcmstbrescal_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bcmstbreset.c
63
bcmstbreset_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcmstbreset.c
71
bcmstbreset_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/bd718x7.c
74
bdpmic_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bd718x7.c
83
bdpmic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/ccp_fdt.c
43
ccp_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ccp_fdt.c
51
ccp_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/cdpcie.c
106
cdpcie_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/cdpcie.c
137
cdpcie_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/cdpcie.c
421
cdpcie_attach_hook(struct device *parent, struct device *self,
sys/dev/fdt/cdsdhc.c
86
cdsdhc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/cdsdhc.c
96
cdsdhc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/cduart.c
188
cduart_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/cduart.c
197
cduart_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/com_fdt.c
110
com_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/com_fdt.c
95
com_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/cwfg.c
132
cwfg_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/cwfg.c
143
cwfg_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/dapmic.c
120
dapmic_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/dapmic.c
128
dapmic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/dwdog.c
70
dwdog_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/dwdog.c
78
dwdog_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/dwiic_fdt.c
56
dwiic_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/dwiic_fdt.c
64
dwiic_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/dwmmc.c
274
dwmmc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/dwmmc.c
288
dwmmc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/dwmshc.c
228
dwmshc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/dwmshc.c
243
dwmshc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/dwpcie.c
1802
dwpcie_attach_hook(struct device *parent, struct device *self,
sys/dev/fdt/dwpcie.c
311
dwpcie_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/dwpcie.c
386
dwpcie_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/ehci_fdt.c
68
ehci_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ehci_fdt.c
77
ehci_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/es8316ac.c
150
escodec_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/es8316ac.c
161
escodec_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/exrtc.c
68
exrtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/exrtc.c
76
exrtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/exuart.c
181
exuart_match(struct device *parent, void *self, void *aux)
sys/dev/fdt/exuart.c
190
exuart_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/fanpwr.c
104
fanpwr_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/fanpwr.c
91
fanpwr_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/fusbtc.c
249
fusbtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/fusbtc.c
260
fusbtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/gfrtc.c
90
gfrtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/gfrtc.c
98
gfrtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/gpiobl.c
62
gpiobl_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/gpiobl.c
71
gpiobl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/gpiocharger.c
57
gpiocharger_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/gpiocharger.c
65
gpiocharger_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/gpiokeys.c
106
gpiokeys_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/gpiokeys.c
97
gpiokeys_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/gpioleds.c
50
gpioleds_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/gpioleds.c
58
gpioleds_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/gpiorestart.c
54
gpiorestart_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/gpiorestart.c
62
gpiorestart_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/graphaudio.c
101
graphaudio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/graphaudio.c
93
graphaudio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/hiclock.c
114
hiclock_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/hiclock.c
128
hiclock_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/hidwusb.c
54
hidwusb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/hidwusb.c
62
hidwusb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/hidwusb.c
86
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/dev/fdt/hireset.c
52
hireset_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/hireset.c
60
hireset_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/hitemp.c
102
hitemp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/hitemp.c
88
hitemp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/if_bse_fdt.c
44
bse_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/if_bse_fdt.c
53
bse_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/if_cad.c
376
cad_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/if_cad.c
387
cad_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/if_dwge.c
374
dwge_match(struct device *parent, void *cfdata, void *aux)
sys/dev/fdt/if_dwge.c
389
dwge_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/if_dwqe_fdt.c
90
dwqe_fdt_match(struct device *parent, void *cfdata, void *aux)
sys/dev/fdt/if_dwqe_fdt.c
99
dwqe_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/if_dwxe.c
363
dwxe_match(struct device *parent, void *cfdata, void *aux)
sys/dev/fdt/if_dwxe.c
373
dwxe_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/if_fec.c
281
fec_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/if_fec.c
291
fec_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/if_mvneta.c
428
mvneta_match(struct device *parent, void *cfdata, void *aux)
sys/dev/fdt/if_mvneta.c
437
mvneta_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/if_mvpp.c
1311
mvpp2_port_match(struct device *parent, void *cfdata, void *aux)
sys/dev/fdt/if_mvpp.c
1319
mvpp2_port_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/if_mvpp.c
1332
sc->sc = (void *)parent;
sys/dev/fdt/if_mvpp.c
427
mvpp2_match(struct device *parent, void *cfdata, void *aux)
sys/dev/fdt/if_mvpp.c
435
mvpp2_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/iicmux.c
76
iicmux_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/iicmux.c
84
iicmux_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxanatop.c
141
imxanatop_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxanatop.c
152
imxanatop_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxccm.c
1332
imxccm_enable_parent(struct imxccm_softc *sc, uint32_t parent, int on)
sys/dev/fdt/imxccm.c
1335
imxccm_enable(sc, &parent, on);
sys/dev/fdt/imxccm.c
1342
uint32_t idx = cells[0], parent;
sys/dev/fdt/imxccm.c
1464
if (idx < sc->sc_ngates && sc->sc_gates[idx].parent) {
sys/dev/fdt/imxccm.c
1465
parent = sc->sc_gates[idx].parent;
sys/dev/fdt/imxccm.c
1466
imxccm_enable(sc, &parent, on);
sys/dev/fdt/imxccm.c
1469
if (idx < sc->sc_ndivs && sc->sc_divs[idx].parent) {
sys/dev/fdt/imxccm.c
1470
parent = sc->sc_divs[idx].parent;
sys/dev/fdt/imxccm.c
1471
imxccm_enable(sc, &parent, on);
sys/dev/fdt/imxccm.c
1497
uint32_t div, pre, reg, parent;
sys/dev/fdt/imxccm.c
1504
if (idx < sc->sc_ngates && sc->sc_gates[idx].parent) {
sys/dev/fdt/imxccm.c
1505
parent = sc->sc_gates[idx].parent;
sys/dev/fdt/imxccm.c
1506
return imxccm_get_frequency(sc, &parent);
sys/dev/fdt/imxccm.c
1509
if (idx < sc->sc_ndivs && sc->sc_divs[idx].parent) {
sys/dev/fdt/imxccm.c
1513
parent = sc->sc_divs[idx].parent;
sys/dev/fdt/imxccm.c
1514
return imxccm_get_frequency(sc, &parent) / (div + 1);
sys/dev/fdt/imxccm.c
1520
parent = IMX8MM_ARM_PLL;
sys/dev/fdt/imxccm.c
1521
return imxccm_get_frequency(sc, &parent);
sys/dev/fdt/imxccm.c
1621
parent = IMX8MQ_ARM_PLL;
sys/dev/fdt/imxccm.c
1622
return imxccm_get_frequency(sc, &parent);
sys/dev/fdt/imxccm.c
1750
uint32_t reg, div, parent, parent_freq;
sys/dev/fdt/imxccm.c
1757
parent = IMX8MM_CLK_A53_SRC;
sys/dev/fdt/imxccm.c
1758
return imxccm_set_frequency(cookie, &parent, freq);
sys/dev/fdt/imxccm.c
1773
parent = sc->sc_gates[idx].parent;
sys/dev/fdt/imxccm.c
1774
return imxccm_set_frequency(sc, &parent, freq);
sys/dev/fdt/imxccm.c
1796
parent = IMX8MQ_CLK_A53_SRC;
sys/dev/fdt/imxccm.c
1797
return imxccm_set_frequency(cookie, &parent, freq);
sys/dev/fdt/imxccm.c
1825
parent = sc->sc_gates[idx].parent;
sys/dev/fdt/imxccm.c
1826
return imxccm_set_frequency(sc, &parent, freq);
sys/dev/fdt/imxccm.c
1830
parent = sc->sc_divs[idx].parent;
sys/dev/fdt/imxccm.c
1831
parent_freq = imxccm_get_frequency(sc, &parent);
sys/dev/fdt/imxccm.c
188
uint16_t parent;
sys/dev/fdt/imxccm.c
195
uint16_t parent;
sys/dev/fdt/imxccm.c
228
void imxccm_attach(struct device *parent, struct device *self, void *args);
sys/dev/fdt/imxccm.c
269
imxccm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxccm.c
284
imxccm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxdog.c
67
imxdog_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxdog.c
75
imxdog_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxdwusb.c
55
imxdwusb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxdwusb.c
63
imxdwusb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxdwusb.c
72
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/dev/fdt/imxehci.c
109
imxehci_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxehci.c
118
imxehci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxesdhc.c
283
imxesdhc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxesdhc.c
294
imxesdhc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxgpc.c
55
imxgpc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxgpc.c
67
imxgpc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxgpio.c
107
imxgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxgpio.c
99
imxgpio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxiic_fdt.c
48
imxiic_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxiic_fdt.c
57
imxiic_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxiomuxc.c
63
imxiomuxc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxiomuxc.c
79
imxiomuxc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxpciephy.c
47
imxpciephy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxpciephy.c
59
imxpciephy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxpwm.c
87
imxpwm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxpwm.c
95
imxpwm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxrtc.c
66
imxrtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxrtc.c
74
imxrtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxspi.c
140
imxspi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxspi.c
148
imxspi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxsrc.c
123
imxsrc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxsrc.c
135
imxsrc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxtmu.c
89
imxtmu_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxtmu.c
98
imxtmu_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/imxuart.c
146
imxuart_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxuart.c
155
imxuart_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/ipmi_fdt.c
39
ipmi_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ipmi_fdt.c
47
ipmi_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/moxtet.c
68
moxtet_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/moxtet.c
79
moxtet_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mtintc.c
59
mtintc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mtintc.c
67
mtintc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mtrng.c
58
mtrng_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mtrng.c
66
mtrng_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mtxhci.c
106
mtxhci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mtxhci.c
95
mtxhci_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvclock.c
174
uint32_t parent[2] = { 0, 0 };
sys/dev/fdt/mvclock.c
203
parent[1] = CP110_CORE_PPV2;
sys/dev/fdt/mvclock.c
206
parent[1] = CP110_CORE_SDIO;
sys/dev/fdt/mvclock.c
209
parent[1] = CP110_CORE_X2CORE;
sys/dev/fdt/mvclock.c
215
if (parent[1] != 0)
sys/dev/fdt/mvclock.c
216
return cp110_get_frequency(sc, parent);
sys/dev/fdt/mvclock.c
70
mvclock_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvclock.c
88
mvclock_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mvdog.c
64
mvdog_match(struct device *parent, void *cfdata, void *aux)
sys/dev/fdt/mvdog.c
72
mvdog_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mvgicp.c
64
mvgicp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvgicp.c
72
mvgicp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mvgpio.c
70
mvgpio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvgpio.c
78
mvgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mvicu.c
102
mvicu_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvicu.c
110
mvicu_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mviic.c
102
mviic_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mviic.c
110
mviic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mvkpcie.c
219
mvkpcie_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvkpcie.c
264
mvkpcie_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mvkpcie.c
576
mvkpcie_attach_hook(struct device *parent, struct device *self,
sys/dev/fdt/mvmdio.c
116
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/dev/fdt/mvmdio.c
80
mvmdio_match(struct device *parent, void *cfdata, void *aux)
sys/dev/fdt/mvmdio.c
88
mvmdio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mvpinctrl.c
137
mvpinctrl_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvpinctrl.c
155
mvpinctrl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mvrng.c
79
mvrng_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvrng.c
87
mvrng_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mvrtc.c
73
mvrtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvrtc.c
81
mvrtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mvspi.c
107
mvspi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mvspi.c
99
mvspi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvsw.c
103
mvsw_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvsw.c
111
mvsw_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mvtemp.c
112
mvtemp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvtemp.c
126
mvtemp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/mvuart.c
147
mvuart_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvuart.c
155
mvuart_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/ociic.c
115
ociic_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ociic.c
123
ociic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/ohci_fdt.c
64
ohci_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ohci_fdt.c
72
ohci_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/pciecam.c
132
pciecam_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/pciecam.c
141
pciecam_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/pciecam.c
275
pciecam_attach_hook(struct device *parent, struct device *self,
sys/dev/fdt/pinctrl.c
65
pinctrl_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/pinctrl.c
74
pinctrl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/plgpio.c
67
plgpio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/plgpio.c
75
plgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/plrtc.c
87
plrtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/plrtc.c
95
plrtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/pluart_fdt.c
55
pluart_fdt_match(struct device *parent, void *self, void *aux)
sys/dev/fdt/pluart_fdt.c
63
pluart_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/psci.c
81
psci_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/psci.c
91
psci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/pwmbl.c
67
pwmbl_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/pwmbl.c
75
pwmbl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/pwmfan.c
59
pwmfan_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/pwmfan.c
67
pwmfan_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/pwmleds.c
62
pwmleds_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/pwmleds.c
70
pwmleds_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/pwmreg.c
58
pwmreg_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/pwmreg.c
66
pwmreg_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcaoss.c
83
qcaoss_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcaoss.c
91
qcaoss_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qccpu.c
103
qccpu_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qccpu.c
95
qccpu_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qccpucp.c
82
qccpucp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qccpucp.c
90
qccpucp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcdpc.c
105
qcdpc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcdpc.c
95
qcdpc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcdrm.c
107
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/dev/fdt/qcdrm.c
66
qcdrm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcdrm.c
75
qcdrm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcdwusb.c
48
qcdwusb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcdwusb.c
56
qcdwusb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcdwusb.c
65
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/dev/fdt/qcgpio_fdt.c
108
qcgpio_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcgpio_fdt.c
117
qcgpio_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qciic_fdt.c
88
qciic_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qciic_fdt.c
96
qciic_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcipcc.c
105
qcipcc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcipcc.c
97
qcipcc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcmtx.c
62
qcmtx_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcmtx.c
70
qcmtx_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcpas.c
146
qcpas_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcpas.c
155
qcpas_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcpdc.c
90
qcpdc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcpdc.c
98
qcpdc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcpmic.c
66
qcpmic_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcpmic.c
74
qcpmic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcpmicgpio.c
100
qcpmicgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcpmicgpio.c
92
qcpmicgpio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcpon.c
63
qcpon_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcpon.c
72
qcpon_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcpwm.c
106
qcpwm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcpwm.c
115
qcpwm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcrng.c
58
qcrng_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcrng.c
67
qcrng_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcrtc.c
67
qcrtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcrtc.c
75
qcrtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcscm.c
124
void qcscm_attach(struct device *parent, struct device *self, void *args);
sys/dev/fdt/qcscm.c
170
qcscm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcscm.c
178
qcscm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcsdam.c
55
qcsdam_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcsdam.c
63
qcsdam_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcsmem.c
146
qcsmem_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcsmem.c
154
qcsmem_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcsmptp.c
127
qcsmptp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcsmptp.c
135
qcsmptp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcspmi.c
186
qcspmi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcspmi.c
195
qcspmi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qctsens.c
77
qctsens_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qctsens.c
85
qctsens_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/qcuart_fdt.c
53
qcuart_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcuart_fdt.c
61
qcuart_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkanxdp.c
90
rkanxdp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkanxdp.c
98
rkanxdp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkclock.c
2221
uint32_t parent;
sys/dev/fdt/rkclock.c
2224
parent = pcells[1];
sys/dev/fdt/rkclock.c
2236
parent = RK3328_XIN24M;
sys/dev/fdt/rkclock.c
2238
parent = RK3328_GMAC_CLKIN;
sys/dev/fdt/rkclock.c
2245
if (parent == RK3328_GMAC_CLKIN) {
sys/dev/fdt/rkclock.c
2255
if (parent == RK3328_GMAC_CLKIN) {
sys/dev/fdt/rkclock.c
2266
return rkclock_set_parent(sc, idx, parent);
sys/dev/fdt/rkclock.c
2848
rk3399_get_frac(struct rkclock_softc *sc, uint32_t parent, bus_size_t base)
sys/dev/fdt/rkclock.c
2858
parent_freq = sc->sc_cd.cd_get_frequency(sc, &parent);
sys/dev/fdt/rkclock.c
2863
rk3399_set_frac(struct rkclock_softc *sc, uint32_t parent, bus_size_t base,
sys/dev/fdt/rkclock.c
2872
d = sc->sc_cd.cd_get_frequency(sc, &parent);
sys/dev/fdt/rkclock.c
434
rkclock_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkclock.c
448
rkclock_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkclock.c
610
uint32_t parent;
sys/dev/fdt/rkclock.c
634
parent = clk->parents[mux];
sys/dev/fdt/rkclock.c
635
sc->sc_cd.cd_set_frequency(sc, &parent, freq);
sys/dev/fdt/rkclock.c
649
parent = clk->parents[mux];
sys/dev/fdt/rkclock.c
650
best_freq = sc->sc_cd.cd_get_frequency(sc, &parent);
sys/dev/fdt/rkclock.c
656
parent = clk->parents[i];
sys/dev/fdt/rkclock.c
657
f = sc->sc_cd.cd_get_frequency(sc, &parent);
sys/dev/fdt/rkclock.c
703
rkclock_set_parent(struct rkclock_softc *sc, uint32_t idx, uint32_t parent)
sys/dev/fdt/rkclock.c
716
if (clk->parents[mux] == parent)
sys/dev/fdt/rkclock.c
719
if (mux == nitems(clk->parents) || parent == 0) {
sys/dev/fdt/rkclock.c
720
printf("%s: 0x%08x parent 0x%08x\n", __func__, idx, parent);
sys/dev/fdt/rkcomphy.c
136
rkcomphy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkcomphy.c
147
rkcomphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkdrm.c
87
rkdrm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkdrm.c
95
rkdrm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkdwhdmi.c
113
rkdwhdmi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkdwhdmi.c
121
rkdwhdmi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkdwusb.c
46
rkdwusb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkdwusb.c
54
rkdwusb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkdwusb.c
62
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/dev/fdt/rkemmcphy.c
89
rkemmcphy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkemmcphy.c
97
rkemmcphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkgpio.c
132
rkgpio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkgpio.c
140
rkgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkgrf.c
50
rkgrf_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkgrf.c
63
rkgrf_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkgrf.c
85
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/dev/fdt/rkiic.c
109
rkiic_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkiic.c
119
rkiic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkiis.c
222
rkiis_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkiis.c
230
rkiis_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkiovd.c
76
rkiovd_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkiovd.c
85
rkiovd_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkpcie.c
125
rkpcie_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkpcie.c
191
rkpcie_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkpcie.c
484
rkpcie_attach_hook(struct device *parent, struct device *self,
sys/dev/fdt/rkpciephy.c
84
rkpciephy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkpciephy.c
93
rkpciephy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkpinctrl.c
158
rkpinctrl_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkpinctrl.c
173
rkpinctrl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkpinctrl.c
204
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/dev/fdt/rkpmic.c
429
rkpmic_i2c_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkpmic.c
441
rkpmic_i2c_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkpmic.c
452
rkpmic_attach(parent, self, aux);
sys/dev/fdt/rkpmic.c
456
rkpmic_spi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkpmic.c
464
rkpmic_spi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkpmic.c
479
rkpmic_attach(parent, self, aux);
sys/dev/fdt/rkpmic.c
483
rkpmic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkpwm.c
77
rkpwm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkpwm.c
86
rkpwm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkrng.c
153
rkrng_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkrng.c
167
rkrng_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkspi.c
137
rkspi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkspi.c
145
rkspi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rktcphy.c
140
rktcphy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rktcphy.c
148
rktcphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rktemp.c
307
rktemp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rktemp.c
320
rktemp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkusbdpphy.c
88
rkusbdpphy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkusbdpphy.c
97
rkusbdpphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkusbphy.c
307
rkusbphy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkusbphy.c
315
rkusbphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/rkvop.c
197
rkvop_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkvop.c
206
rkvop_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/scmi.c
171
scmi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/scmi.c
180
scmi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sdhc_fdt.c
126
sdhc_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sdhc_fdt.c
141
sdhc_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sfp.c
64
sfp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sfp.c
73
sfp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/simpleamp.c
63
simpleamp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/simpleamp.c
71
simpleamp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/simpleaudio.c
103
simpleaudio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/simpleaudio.c
95
simpleaudio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/simplefb.c
116
simplefb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/simplefb.c
132
simplefb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/simplepanel.c
73
simplepanel_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/simplepanel.c
82
simplepanel_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sncodec.c
117
sncodec_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sncodec.c
125
sncodec_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/ssdfb.c
184
ssdfb_i2c_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ssdfb.c
196
ssdfb_i2c_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/ssdfb.c
220
ssdfb_spi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ssdfb.c
231
ssdfb_spi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sxiccmu.c
1007
uint32_t parent;
sys/dev/fdt/sxiccmu.c
1029
parent = A10S_CLK_LOSC;
sys/dev/fdt/sxiccmu.c
1032
parent = A10S_CLK_HOSC;
sys/dev/fdt/sxiccmu.c
1035
parent = A10S_CLK_PLL_CORE;
sys/dev/fdt/sxiccmu.c
1040
return sxiccmu_ccu_get_frequency(sc, &parent);
sys/dev/fdt/sxiccmu.c
1044
parent = A10S_CLK_CPU;
sys/dev/fdt/sxiccmu.c
1045
return sxiccmu_ccu_get_frequency(sc, &parent) / div;
sys/dev/fdt/sxiccmu.c
1049
parent = A10S_CLK_AXI;
sys/dev/fdt/sxiccmu.c
1050
return sxiccmu_ccu_get_frequency(sc, &parent) / div;
sys/dev/fdt/sxiccmu.c
1075
uint32_t parent;
sys/dev/fdt/sxiccmu.c
1094
parent = A23_CLK_LOSC;
sys/dev/fdt/sxiccmu.c
1097
parent = A23_CLK_HOSC;
sys/dev/fdt/sxiccmu.c
1100
parent = A23_CLK_AXI;
sys/dev/fdt/sxiccmu.c
1103
parent = A23_CLK_PLL_PERIPH;
sys/dev/fdt/sxiccmu.c
1109
return sxiccmu_ccu_get_frequency(sc, &parent) / div;
sys/dev/fdt/sxiccmu.c
1137
uint32_t parent;
sys/dev/fdt/sxiccmu.c
1153
parent = A64_CLK_LOSC;
sys/dev/fdt/sxiccmu.c
1156
parent = A64_CLK_HOSC;
sys/dev/fdt/sxiccmu.c
1159
parent = A64_CLK_PLL_CPUX;
sys/dev/fdt/sxiccmu.c
1164
return sxiccmu_ccu_get_frequency(sc, &parent);
sys/dev/fdt/sxiccmu.c
1182
parent = A64_CLK_LOSC;
sys/dev/fdt/sxiccmu.c
1185
parent = A64_CLK_HOSC;
sys/dev/fdt/sxiccmu.c
1188
parent = A64_CLK_AXI;
sys/dev/fdt/sxiccmu.c
1191
parent = A64_CLK_PLL_PERIPH0;
sys/dev/fdt/sxiccmu.c
1197
return sxiccmu_ccu_get_frequency(sc, &parent) / div;
sys/dev/fdt/sxiccmu.c
1202
parent = A64_CLK_AHB1;
sys/dev/fdt/sxiccmu.c
1206
parent = A64_CLK_PLL_PERIPH0;
sys/dev/fdt/sxiccmu.c
1212
return sxiccmu_ccu_get_frequency(sc, &parent) / div;
sys/dev/fdt/sxiccmu.c
122
sxiccmu_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxiccmu.c
1228
uint32_t parent;
sys/dev/fdt/sxiccmu.c
1240
parent = A80_CLK_GTBUS;
sys/dev/fdt/sxiccmu.c
1243
parent = A80_CLK_PLL_PERIPH0;
sys/dev/fdt/sxiccmu.c
1246
parent = A80_CLK_PLL_PERIPH1;
sys/dev/fdt/sxiccmu.c
1249
return sxiccmu_ccu_get_frequency(sc, &parent) / div;
sys/dev/fdt/sxiccmu.c
1275
uint32_t parent;
sys/dev/fdt/sxiccmu.c
1297
parent = D1_CLK_HOSC;
sys/dev/fdt/sxiccmu.c
1300
parent = D1_CLK_PLL_CPU;
sys/dev/fdt/sxiccmu.c
1306
return sxiccmu_ccu_get_frequency(sc, &parent) / m;
sys/dev/fdt/sxiccmu.c
1347
uint32_t parent;
sys/dev/fdt/sxiccmu.c
1370
parent = H3_CLK_LOSC;
sys/dev/fdt/sxiccmu.c
1373
parent = H3_CLK_HOSC;
sys/dev/fdt/sxiccmu.c
1376
parent = H3_CLK_PLL_CPUX;
sys/dev/fdt/sxiccmu.c
1381
return sxiccmu_ccu_get_frequency(sc, &parent);
sys/dev/fdt/sxiccmu.c
1390
parent = H3_CLK_LOSC;
sys/dev/fdt/sxiccmu.c
1393
parent = H3_CLK_HOSC;
sys/dev/fdt/sxiccmu.c
1396
parent = H3_CLK_AXI;
sys/dev/fdt/sxiccmu.c
1399
parent = H3_CLK_PLL_PERIPH0;
sys/dev/fdt/sxiccmu.c
1405
return sxiccmu_ccu_get_frequency(sc, &parent) / div;
sys/dev/fdt/sxiccmu.c
1410
parent = H3_CLK_AHB1;
sys/dev/fdt/sxiccmu.c
1414
parent = H3_CLK_PLL_PERIPH0;
sys/dev/fdt/sxiccmu.c
1420
return sxiccmu_ccu_get_frequency(sc, &parent) / div;
sys/dev/fdt/sxiccmu.c
1441
uint32_t parent;
sys/dev/fdt/sxiccmu.c
1467
parent = H3_R_CLK_AHB0;
sys/dev/fdt/sxiccmu.c
1468
return sxiccmu_ccu_get_frequency(sc, &parent) / div;
sys/dev/fdt/sxiccmu.c
1570
uint32_t parent;
sys/dev/fdt/sxiccmu.c
1588
parent = R40_CLK_LOSC;
sys/dev/fdt/sxiccmu.c
1591
parent = R40_CLK_HOSC;
sys/dev/fdt/sxiccmu.c
1594
parent = R40_CLK_AXI;
sys/dev/fdt/sxiccmu.c
1597
parent = R40_CLK_PLL_PERIPH0;
sys/dev/fdt/sxiccmu.c
1601
return sxiccmu_ccu_get_frequency(sc, &parent) / div;
sys/dev/fdt/sxiccmu.c
1614
uint32_t parent;
sys/dev/fdt/sxiccmu.c
1633
parent = V3S_CLK_LOSC;
sys/dev/fdt/sxiccmu.c
1636
parent = V3S_CLK_HOSC;
sys/dev/fdt/sxiccmu.c
1639
parent = V3S_CLK_AXI;
sys/dev/fdt/sxiccmu.c
1642
parent = V3S_CLK_PLL_PERIPH0;
sys/dev/fdt/sxiccmu.c
1648
return sxiccmu_ccu_get_frequency(sc, &parent) / div;
sys/dev/fdt/sxiccmu.c
1653
parent = V3S_CLK_AHB1;
sys/dev/fdt/sxiccmu.c
1657
parent = V3S_CLK_PLL_PERIPH0;
sys/dev/fdt/sxiccmu.c
1663
return sxiccmu_ccu_get_frequency(sc, &parent) / div;
sys/dev/fdt/sxiccmu.c
168
sxiccmu_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sxiccmu.c
1690
uint32_t parent, parent_freq;
sys/dev/fdt/sxiccmu.c
1737
parent = A10_CLK_PLL_PERIPH;
sys/dev/fdt/sxiccmu.c
1738
parent_freq = sxiccmu_ccu_get_frequency(sc, &parent);
sys/dev/fdt/sxiccmu.c
1751
uint32_t parent, parent_freq;
sys/dev/fdt/sxiccmu.c
1797
parent = A10S_CLK_PLL_PERIPH;
sys/dev/fdt/sxiccmu.c
1798
parent_freq = sxiccmu_ccu_get_frequency(sc, &parent);
sys/dev/fdt/sxiccmu.c
1810
uint32_t parent, parent_freq;
sys/dev/fdt/sxiccmu.c
1819
parent = A23_CLK_PLL_PERIPH;
sys/dev/fdt/sxiccmu.c
1820
parent_freq = sxiccmu_ccu_get_frequency(sc, &parent);
sys/dev/fdt/sxiccmu.c
1832
uint32_t parent, parent_freq;
sys/dev/fdt/sxiccmu.c
1882
parent = A64_CLK_PLL_PERIPH0_2X;
sys/dev/fdt/sxiccmu.c
1883
parent_freq = sxiccmu_ccu_get_frequency(sc, &parent);
sys/dev/fdt/sxiccmu.c
1895
uint32_t parent, parent_freq;
sys/dev/fdt/sxiccmu.c
1904
parent = A80_CLK_PLL_PERIPH0;
sys/dev/fdt/sxiccmu.c
1905
parent_freq = sxiccmu_ccu_get_frequency(sc, &parent);
sys/dev/fdt/sxiccmu.c
1987
uint32_t parent, parent_freq;
sys/dev/fdt/sxiccmu.c
2048
parent = H3_CLK_PLL_PERIPH0;
sys/dev/fdt/sxiccmu.c
2049
parent_freq = sxiccmu_ccu_get_frequency(sc, &parent);
sys/dev/fdt/sxiccmu.c
2162
uint32_t parent, parent_freq;
sys/dev/fdt/sxiccmu.c
2172
parent = R40_CLK_PLL_PERIPH0_2X;
sys/dev/fdt/sxiccmu.c
2173
parent_freq = sxiccmu_ccu_get_frequency(sc, &parent);
sys/dev/fdt/sxiccmu.c
2185
uint32_t parent, parent_freq;
sys/dev/fdt/sxiccmu.c
2194
parent = V3S_CLK_PLL_PERIPH0;
sys/dev/fdt/sxiccmu.c
2195
parent_freq = sxiccmu_ccu_get_frequency(sc, &parent);
sys/dev/fdt/sxiccmu.c
50
uint8_t parent;
sys/dev/fdt/sxiccmu.c
912
uint32_t parent;
sys/dev/fdt/sxiccmu.c
914
if (idx < sc->sc_ngates && sc->sc_gates[idx].parent) {
sys/dev/fdt/sxiccmu.c
915
parent = sc->sc_gates[idx].parent;
sys/dev/fdt/sxiccmu.c
916
return sxiccmu_ccu_get_frequency(sc, &parent);
sys/dev/fdt/sxiccmu.c
948
uint32_t parent;
sys/dev/fdt/sxiccmu.c
973
parent = A10_CLK_LOSC;
sys/dev/fdt/sxiccmu.c
976
parent = A10_CLK_HOSC;
sys/dev/fdt/sxiccmu.c
979
parent = A10_CLK_PLL_CORE;
sys/dev/fdt/sxiccmu.c
984
return sxiccmu_ccu_get_frequency(sc, &parent);
sys/dev/fdt/sxiccmu.c
988
parent = A10_CLK_CPU;
sys/dev/fdt/sxiccmu.c
989
return sxiccmu_ccu_get_frequency(sc, &parent) / div;
sys/dev/fdt/sxiccmu.c
993
parent = A10_CLK_AXI;
sys/dev/fdt/sxiccmu.c
994
return sxiccmu_ccu_get_frequency(sc, &parent) / div;
sys/dev/fdt/sxidog.c
79
sxidog_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxidog.c
89
sxidog_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sximmc.c
292
sximmc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sximmc.c
345
sximmc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sxipio.c
220
sxipio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxipio.c
234
sxipio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sxipio.c
540
sxipio_attach_gpio(struct device *parent)
sys/dev/fdt/sxipio.c
542
struct sxipio_softc *sc = (struct sxipio_softc *)parent;
sys/dev/fdt/sxipwm.c
102
sxipwm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sxipwm.c
94
sxipwm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxirintc.c
61
sxirintc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxirintc.c
69
sxirintc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sxirsb.c
103
sxirsb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sxirsb.c
95
sxirsb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxirtc.c
81
sxirtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxirtc.c
95
sxirtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sxisid.c
67
sxisid_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxisid.c
81
sxisid_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sxisyscon.c
47
sxisyscon_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxisyscon.c
63
sxisyscon_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sxitemp.c
104
sxitemp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxitemp.c
115
sxitemp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sxits.c
80
sxits_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxits.c
89
sxits_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sxitwi.c
169
sxitwi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxitwi.c
181
sxitwi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/sypwr.c
62
sypwr_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sypwr.c
70
sypwr_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/syscon.c
100
simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
sys/dev/fdt/syscon.c
62
syscon_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/syscon.c
72
syscon_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/tascodec.c
109
tascodec_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/tascodec.c
117
tascodec_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/tcpci.c
207
tcpci_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/tcpci.c
218
tcpci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/tipd.c
89
tipd_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/tipd.c
97
tipd_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/ufshci_fdt.c
45
ufshci_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ufshci_fdt.c
53
ufshci_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/virtio_mmio.c
249
virtio_mmio_match(struct device *parent, void *cfdata, void *aux)
sys/dev/fdt/virtio_mmio.c
257
virtio_mmio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/fdt/xhci_fdt.c
74
xhci_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/xhci_fdt.c
88
xhci_fdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/gpio/gpio.c
127
gpio_search(struct device *parent, void *arg, void *aux)
sys/dev/gpio/gpio.c
137
if (cf->cf_attach->ca_match(parent, cf, &ga) > 0)
sys/dev/gpio/gpio.c
138
config_attach(parent, cf, &ga, gpio_print);
sys/dev/gpio/gpio.c
70
gpio_match(struct device *parent, void *match, void *aux)
sys/dev/gpio/gpio.c
79
gpio_submatch(struct device *parent, void *match, void *aux)
sys/dev/gpio/gpio.c
87
return ((*cf->cf_attach->ca_match)(parent, match, aux));
sys/dev/gpio/gpio.c
91
gpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/gpio/gpiodcf.c
118
gpiodcf_match(struct device *parent, void *match, void *aux)
sys/dev/gpio/gpiodcf.c
130
gpiodcf_attach(struct device *parent, struct device *self, void *aux)
sys/dev/gpio/gpioiic.c
108
gpioiic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/gpio/gpioiic.c
96
gpioiic_match(struct device *parent, void *match, void *aux)
sys/dev/gpio/gpioow.c
82
gpioow_match(struct device *parent, void *match, void *aux)
sys/dev/gpio/gpioow.c
94
gpioow_attach(struct device *parent, struct device *self, void *aux)
sys/dev/gpio/gpiosim.c
66
gpiosim_match(struct device *parent, void *match, void *aux)
sys/dev/gpio/gpiosim.c
72
gpiosim_attach(struct device *parent, struct device *self, void *aux)
sys/dev/hil/hil.c
184
hilsubmatch(struct device *parent, void *vcf, void *aux)
sys/dev/hil/hil.c
193
return ((*cf->cf_attach->ca_match)(parent, vcf, aux));
sys/dev/hil/hilid.c
61
hilidprobe(struct device *parent, void *match, void *aux)
sys/dev/hil/hilid.c
72
hilidattach(struct device *parent, struct device *self, void *aux)
sys/dev/hil/hilkbd.c
128
hilkbdprobe(struct device *parent, void *match, void *aux)
sys/dev/hil/hilkbd.c
140
hilkbdattach(struct device *parent, struct device *self, void *aux)
sys/dev/hil/hilms.c
100
hilmsattach(struct device *parent, struct device *self, void *aux)
sys/dev/hil/hilms.c
82
hilmsprobe(struct device *parent, void *match, void *aux)
sys/dev/i2c/abx80x.c
104
abcrtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/abx80x.c
93
abcrtc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ad741x.c
68
adc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ad741x.c
79
adc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/adm1021.c
66
admtemp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adm1021.c
84
admtemp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/adm1024.c
83
admlc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adm1024.c
93
admlc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/adm1025.c
83
admtm_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adm1025.c
95
admtm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/adm1026.c
109
admcts_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/adm1026.c
99
admcts_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adm1030.c
62
admtmp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adm1030.c
72
admtmp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/adm1031.c
67
admtt_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adm1031.c
77
admtt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/adt7460.c
142
adt_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adt7460.c
154
adt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/adt7462.c
89
adtfsm_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adt7462.c
99
adtfsm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/asb100.c
129
asbtm_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/asb100.c
166
asbtm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/asc7611.c
107
andl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/asc7611.c
97
andl_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/asc7621.c
135
adl_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/asc7621.c
145
adl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/bmc150.c
73
bgw_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/bmc150.c
90
bgw_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/ds1307.c
104
maxrtc_attach(struct device *parent, struct device *self, void *arg)
sys/dev/i2c/ds1307.c
91
maxrtc_match(struct device *parent, void *v, void *arg)
sys/dev/i2c/ds1631.c
60
maxds_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ds1631.c
72
maxds_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/ds3231.c
69
dsxrtc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ds3231.c
81
dsxrtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/fcu.c
71
fcu_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/fcu.c
81
fcu_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/fintek.c
113
fintek_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/fintek.c
87
fintek_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/gl518sm.c
81
glenv_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/gl518sm.c
91
glenv_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/i2c.c
106
if (cf->cf_attach->ca_match(parent, cf, &ia) > 0)
sys/dev/i2c/i2c.c
107
config_attach(parent, cf, &ia, iic_print);
sys/dev/i2c/i2c.c
113
iic_match(struct device *parent, void *arg, void *aux)
sys/dev/i2c/i2c.c
123
iic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/i2c.c
93
iic_search(struct device *parent, void *arg, void *aux)
sys/dev/i2c/i2c.c
95
struct iic_softc *sc = (void *) parent;
sys/dev/i2c/iasuskbd.c
111
sc->sc_hdev.sc_parent = iha->parent;
sys/dev/i2c/iasuskbd.c
114
ihidev_get_report_desc(iha->parent, &desc, &size);
sys/dev/i2c/iasuskbd.c
125
ihidev_set_report(parent, I2C_HID_REPORT_TYPE_FEATURE,
sys/dev/i2c/iasuskbd.c
127
error = ihidev_get_report(parent, I2C_HID_REPORT_TYPE_FEATURE,
sys/dev/i2c/iasuskbd.c
141
ihidev_set_report(parent, I2C_HID_REPORT_TYPE_FEATURE,
sys/dev/i2c/iasuskbd.c
79
iasuskbd_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/iasuskbd.c
85
if (iha->parent->hid_desc.wVendorID != USB_VENDOR_ASUS ||
sys/dev/i2c/iasuskbd.c
86
iha->parent->hid_desc.wProductID != I2C_HID_PRODUCT_ASUS_S5507QA)
sys/dev/i2c/iasuskbd.c
89
ihidev_get_report_desc(iha->parent, &desc, &size);
sys/dev/i2c/iasuskbd.c
98
iasuskbd_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/iatp.c
234
iatp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/iatp.c
245
iatp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/icc.c
55
icc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/icc.c
64
ihidev_get_report_desc(iha->parent, &desc, &size);
sys/dev/i2c/icc.c
74
icc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/icc.c
82
sc->sc_hdev.sc_parent = iha->parent;
sys/dev/i2c/icc.c
85
ihidev_get_report_desc(iha->parent, &desc, &size);
sys/dev/i2c/ietp.c
128
ietp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ietp.c
149
ietp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/ihidev.c
103
ihidev_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ihidev.c
133
ihidev_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/ihidev.c
198
iha.parent = sc;
sys/dev/i2c/ihidev.c
77
int ihidev_submatch(struct device *parent, void *cf, void *aux);
sys/dev/i2c/ihidev.c
824
ihidev_submatch(struct device *parent, void *match, void *aux)
sys/dev/i2c/ihidev.c
833
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/dev/i2c/ihidev.h
115
struct ihidev_softc *parent;
sys/dev/i2c/ikbd.c
106
sc->sc_hdev.sc_parent = iha->parent;
sys/dev/i2c/ikbd.c
109
ihidev_get_report_desc(iha->parent, &desc, &dlen);
sys/dev/i2c/ikbd.c
82
ikbd_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ikbd.c
88
ihidev_get_report_desc(iha->parent, &desc, &size);
sys/dev/i2c/ikbd.c
97
ikbd_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/ims.c
107
sc->sc_hdev.sc_parent = iha->parent;
sys/dev/i2c/ims.c
110
ihidev_get_report_desc(iha->parent, &desc, &size);
sys/dev/i2c/ims.c
68
ims_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ims.c
74
ihidev_get_report_desc(iha->parent, &desc, &size);
sys/dev/i2c/ims.c
98
ims_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/imt.c
108
sc->sc_hdev.sc_parent = iha->parent;
sys/dev/i2c/imt.c
110
ihidev_get_report_desc(iha->parent, &desc, &size);
sys/dev/i2c/imt.c
76
imt_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/imt.c
84
ihidev_get_report_desc(iha->parent, &desc, &size);
sys/dev/i2c/imt.c
99
imt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/ipmi_i2c.c
67
ipmi_i2c_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ipmi_i2c.c
76
ipmi_i2c_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/isl1208.c
68
islrtc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/isl1208.c
80
islrtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/lis331dl.c
72
lisa_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/lis331dl.c
82
lisa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/lm75.c
138
lmtemp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/lm75.c
152
lmtemp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/lm78_i2c.c
43
lm_i2c_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/lm78_i2c.c
68
lm_i2c_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/lm87.c
84
lmenv_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/lm87.c
98
lmenv_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/lm93.c
143
lmn_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/lm93.c
153
lmn_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/m41t8x.c
55
m41t8xrtc_match(struct device *parent, void *vcf, void *aux)
sys/dev/i2c/m41t8x.c
67
m41t8xrtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/maxim6690.c
74
maxtmp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/maxim6690.c
95
maxtmp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/mcp794xx.c
73
mcprtc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/mcp794xx.c
85
mcprtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/pca9532.c
63
pcaled_match(struct device *parent, void *v, void *arg)
sys/dev/i2c/pca9532.c
88
pcaled_attach(struct device *parent, struct device *self, void *arg)
sys/dev/i2c/pca9548.c
107
pcamux_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/pca9548.c
120
pcamux_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/pca9548.c
211
if (node->parent != sc->sc_devnode)
sys/dev/i2c/pca9548.c
266
if (node->parent == pb->pb_devnode)
sys/dev/i2c/pca9548.c
270
if (node->parent && node->parent->parent != pb->pb_devnode)
sys/dev/i2c/pca9548.c
276
sta = acpi_getsta(acpi_softc, node->parent);
sys/dev/i2c/pca9548.c
280
if (aml_evalname(acpi_softc, node->parent, "_CRS", 0, NULL, &res))
sys/dev/i2c/pca9548.c
294
acpi_attach_deps(acpi_softc, node->parent);
sys/dev/i2c/pca9548.c
300
ia.ia_cookie = node->parent;
sys/dev/i2c/pca9548.c
303
node->parent->attached = 1;
sys/dev/i2c/pca9554.c
101
pcagpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/pca9554.c
89
pcagpio_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/pcf85063.c
105
pcyrtc_attach(struct device *parent, struct device *self, void *arg)
sys/dev/i2c/pcf85063.c
94
pcyrtc_match(struct device *parent, void *v, void *arg)
sys/dev/i2c/pcf8523.c
109
pcfrtc_match(struct device *parent, void *v, void *arg)
sys/dev/i2c/pcf8523.c
121
pcfrtc_attach(struct device *parent, struct device *self, void *arg)
sys/dev/i2c/pcf8563.c
108
pcxrtc_attach(struct device *parent, struct device *self, void *arg)
sys/dev/i2c/pcf8563.c
96
pcxrtc_match(struct device *parent, void *v, void *arg)
sys/dev/i2c/pijuice.c
109
pijuice_match(struct device *parent, void *v, void *arg)
sys/dev/i2c/pijuice.c
120
pijuice_attach(struct device *parent, struct device *self, void *arg)
sys/dev/i2c/rs5c372.c
112
ricohrtc_match(struct device *parent, void *v, void *arg)
sys/dev/i2c/rs5c372.c
175
ricohrtc_attach(struct device *parent, struct device *self, void *arg)
sys/dev/i2c/sdtemp.c
55
sdtemp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/sdtemp.c
90
sdtemp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/spdmem_i2c.c
76
spdmem_iic_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/spdmem_i2c.c
97
spdmem_iic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/thmc50.c
59
thmc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/thmc50.c
71
thmc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/tmp451.c
63
titmp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/tmp451.c
71
titmp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/tsl2560.c
62
tsl_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/tsl2560.c
72
tsl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/w83793g.c
108
wbng_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/w83793g.c
98
wbng_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/w83795g.c
104
nvt_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/w83795g.c
114
nvt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/i2c/w83l784r.c
148
wbenv_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/w83l784r.c
160
wbenv_attach(struct device *parent, struct device *self, void *aux)
sys/dev/ic/cy.c
185
cy_attach(struct device *parent, struct device *self)
sys/dev/ic/i82365.c
550
pcic_submatch(struct device *parent, void *match, void *aux)
sys/dev/ic/i82365.c
605
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/dev/ic/pckbc.c
243
pckbc_submatch_locators(struct device *parent, void *match, void *aux)
sys/dev/ic/pckbc.c
255
pckbc_submatch(struct device *parent, void *match, void *aux)
sys/dev/ic/pckbc.c
259
if (pckbc_submatch_locators(parent, match, aux) == 0)
sys/dev/ic/pckbc.c
261
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/dev/ic/psp.c
111
psp_match(struct device *parent, void *match, void *aux)
sys/dev/ic/psp.c
117
psp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/ic/psp.c
966
pspsubmatch(struct device *parent, void *match, void *aux)
sys/dev/ic/psp.c
973
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/dev/ic/tcic2.c
524
tcic_submatch(struct device *parent, void *match, void *aux)
sys/dev/ic/tcic2.c
558
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/dev/ic/z8530tty.c
242
zstty_match(struct device *parent, void *vcf, void *aux)
sys/dev/ic/z8530tty.c
259
zstty_attach(struct device *parent, struct device *self, void *aux)
sys/dev/ic/z8530tty.c
261
struct zsc_softc *zsc = (struct zsc_softc *)parent;
sys/dev/ipmi.c
1885
ipmi_match(struct device *parent, void *match, void *aux)
sys/dev/ipmi.c
1928
ipmi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/ad1848var.h
55
void *parent;
sys/dev/isa/addcom_isa.c
123
addcomprobe(struct device *parent, void *self, void *aux)
sys/dev/isa/addcom_isa.c
187
addcomattach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/aic_isa.c
117
aic_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/aic_isa.c
91
aic_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/aic_isapnp.c
66
aic_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/aic_isapnp.c
76
aic_isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/aps.c
240
aps_match(struct device *parent, void *match, void *aux)
sys/dev/isa/aps.c
292
aps_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/ast.c
137
astattach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/ast.c
77
astprobe(struct device *parent, void *self, void *aux)
sys/dev/isa/boca.c
137
bocaattach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/boca.c
77
bocaprobe(struct device *parent, void *self, void *aux)
sys/dev/isa/com_commulti.c
106
com_commulti_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/com_commulti.c
83
com_commulti_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/com_isa.c
114
com_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/com_isa.c
83
com_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/com_isapnp.c
102
com_isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/com_isapnp.c
83
com_isapnp_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/cy_isa.c
103
cy_attach(parent, self);
sys/dev/isa/cy_isa.c
60
cy_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/cy_isa.c
88
cy_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/ess_isapnp.c
61
ess_isapnp_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/ess_isapnp.c
67
ess_isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/ess_isapnp.c
84
sc->sc_isa = parent->dv_parent;
sys/dev/isa/fd.c
184
fdprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/fd.c
186
struct fdc_softc *fdc = (void *)parent;
sys/dev/isa/fd.c
244
fdattach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/fd.c
246
struct fdc_softc *fdc = (void *)parent;
sys/dev/isa/fdc.c
137
fdcattach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/fdc.c
97
fdcprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/fins.c
211
fins_match(struct device *parent, void *match, void *aux)
sys/dev/isa/fins.c
260
fins_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/gscsio.c
115
gscsio_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/gscsio.c
143
gscsio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/gus.c
1419
struct gus_softc *sc = ac->parent;
sys/dev/isa/gus.c
1483
struct gus_softc *sc = ac->parent;
sys/dev/isa/gus.c
1555
struct gus_softc *sc = ac->parent;
sys/dev/isa/gus.c
2053
sc->sc_codec.parent = sc;
sys/dev/isa/gus.c
2093
return gus_dma_input(sc->parent, buf, size, callback, arg);
sys/dev/isa/gus.c
2177
return gus_halt_out_dma(sc->parent);
sys/dev/isa/gus.c
2185
return gus_halt_in_dma(sc->parent);
sys/dev/isa/gus.c
2278
struct gus_softc *sc = ac->parent;
sys/dev/isa/gus.c
2475
struct gus_softc *sc = ac->parent;
sys/dev/isa/gus.c
349
return gusopen(ac->parent, flags);
sys/dev/isa/gus.c
410
return gus_dma_output(ac->parent, buf, size, intr, arg);
sys/dev/isa/gus.c
540
struct gus_softc *sc = ac->parent;
sys/dev/isa/gus_isa.c
133
gus_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/gus_isa.c
175
if ((ia->ia_drq != -1 && !isa_drq_isfree(parent, ia->ia_drq)) ||
sys/dev/isa/gus_isa.c
176
(recdrq != -1 && !isa_drq_isfree(parent, recdrq)))
sys/dev/isa/gus_isa.c
190
gus_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/gus_isa.c
218
sc->sc_isa = parent;
sys/dev/isa/gus_isapnp.c
132
gus_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/gus_isapnp.c
138
gus_isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/gus_isapnp.c
154
sc->sc_isa = parent->dv_parent;
sys/dev/isa/hsq.c
123
hsqprobe(struct device *parent, void *self, void *aux)
sys/dev/isa/hsq.c
185
hsqattach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/i82365_isa.c
151
pcic_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/i82365_isa.c
87
pcic_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/i82365_isapnp.c
93
pcic_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/i82365_isapnp.c
99
pcic_isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_an_isapnp.c
61
an_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_an_isapnp.c
67
an_isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_ec.c
131
ec_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ec.c
236
ec_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_ef_isapnp.c
136
ef_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ef_isapnp.c
142
ef_isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_eg.c
280
egprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_eg.c
343
egattach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_el.c
100
elprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_el.c
160
elattach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_ep_isa.c
131
ep_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ep_isa.c
139
int bus = parent->dv_unit;
sys/dev/isa/if_ep_isa.c
150
if (er->er_bus == parent->dv_unit)
sys/dev/isa/if_ep_isa.c
173
elink_reset(iot, ioh, parent->dv_unit);
sys/dev/isa/if_ep_isa.c
248
ep_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_ep_isapnp.c
90
ep_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ep_isapnp.c
97
ep_isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_ex.c
169
ex_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ex.c
239
ex_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_ie.c
356
ieprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ie.c
751
ieattach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_lc_isa.c
169
lemac_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_lc_isa.c
182
lemac_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_le_isa.c
296
le_isa_attach(struct device *parent, struct device *self,
sys/dev/isa/if_le_isa.c
85
le_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_le_isapnp.c
77
le_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_le_isapnp.c
83
le_isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_ne_isa.c
132
ne_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_ne_isa.c
84
ne_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ne_isapnp.c
86
ne_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ne_isapnp.c
92
ne_isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_sm_isa.c
145
sm_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_sm_isa.c
82
sm_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_we.c
181
we_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_we.c
185
return (we_match(parent, cf, aux));
sys/dev/isa/if_we.c
189
we_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_we.c
214
if (!strcmp(parent->dv_cfdata->cf_driver->cd_name, "isapnp") && ia->ia_ioh)
sys/dev/isa/if_we.c
274
if (!strcmp(parent->dv_cfdata->cf_driver->cd_name, "isapnp") && ia->ia_memh)
sys/dev/isa/if_we.c
332
we_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/if_we.c
349
if (!strcmp(parent->dv_cfdata->cf_driver->cd_name, "isapnp") && ia->ia_ioh)
sys/dev/isa/if_we.c
376
if (!strcmp(parent->dv_cfdata->cf_driver->cd_name, "isapnp") && ia->ia_memh)
sys/dev/isa/isa.c
108
isaattach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/isa.c
113
isa_attach_hook(parent, self, iba);
sys/dev/isa/isa.c
198
isascan(struct device *parent, void *match)
sys/dev/isa/isa.c
200
struct isa_softc *sc = (struct isa_softc *)parent;
sys/dev/isa/isa.c
232
while ((*cf->cf_attach->ca_match)(parent, dev, &ia2) > 0) {
sys/dev/isa/isa.c
253
config_attach(parent, dev, &ia2, isaprint);
sys/dev/isa/isa.c
254
dev = config_make_softc(parent, cf);
sys/dev/isa/isa.c
273
if ((*cf->cf_attach->ca_match)(parent, dev, &ia) > 0) {
sys/dev/isa/isa.c
285
config_attach(parent, dev, &ia, isaprint);
sys/dev/isa/isa.c
92
isamatch(struct device *parent, void *match, void *aux)
sys/dev/isa/isadma.c
106
isadmaattach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/isadma.c
110
struct isa_softc *sc = (struct isa_softc *)parent;
sys/dev/isa/isadma.c
113
isa_dev = parent;
sys/dev/isa/isadma.c
96
isadmamatch(struct device *parent, void *match, void *aux)
sys/dev/isa/isagpio.c
72
isagpio_match(struct device *parent, void *match, void *aux)
sys/dev/isa/isagpio.c
92
isagpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/isapnp.c
539
isapnp_com_submatch(struct device *parent, void *match, void *aux)
sys/dev/isa/isapnp.c
553
return ((*cf->cf_attach->ca_match)(parent, match, ipa));
sys/dev/isa/isapnp.c
562
isapnp_submatch(struct device *parent, void *match, void *aux)
sys/dev/isa/isapnp.c
588
return ((*cf->cf_attach->ca_match)(parent, match, ipa));
sys/dev/isa/isapnp.c
800
isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/isapnp.c
830
isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/isapnp.c
865
(lpa = isapnp_bestconfig(parent, sc, &ipa)) != NULL; d++) {
sys/dev/isa/isavar.h
385
void isascan(struct device *parent, void *match);
sys/dev/isa/it.c
131
it_match(struct device *parent, void *match, void *aux)
sys/dev/isa/it.c
203
it_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/lm78_isa.c
115
lm_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/lm78_isa.c
187
lm_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/lm78_isa.c
68
lm_wbsio_match(struct device *parent, void *match, void *aux)
sys/dev/isa/lpt_isa.c
171
lpt_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/lpt_isa.c
96
lpt_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/lpt_isa.c
99
struct isa_softc *sc = (struct isa_softc *)parent;
sys/dev/isa/mpu_isa.c
117
mpu_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/mpu_isa.c
130
mpu_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/mpu_isapnp.c
39
mpu_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/mpu_isapnp.c
49
mpu_isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/nsclpcsio_isa.c
246
nsclpcsio_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/nsclpcsio_isa.c
277
nsclpcsio_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/pas.c
238
pasprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/pas.c
377
pasattach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/pas.c
383
sc->sc_sbdsp.sc_isa = parent;
sys/dev/isa/pcdisplay.c
212
pcdisplay_match(struct device *parent, void *match, void *aux)
sys/dev/isa/pcdisplay.c
248
pcdisplay_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/pckbc_isa.c
126
pckbc_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/pckbc_isa.c
52
pckbc_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/pcppi.c
149
pcppi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/pcppi.c
85
pcppi_match(struct device *parent, void *match, void *aux)
sys/dev/isa/sb_isa.c
111
if ((sc->sc_drq8 != -1 && !isa_drq_isfree(parent, sc->sc_drq8)) ||
sys/dev/isa/sb_isa.c
112
(sc->sc_drq16 != -1 && !isa_drq_isfree(parent, sc->sc_drq16)))
sys/dev/isa/sb_isa.c
138
sb_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/sb_isa.c
143
if (!sbfind(parent, sc, ia) ||
sys/dev/isa/sb_isa.c
150
sc->sc_isa = parent;
sys/dev/isa/sb_isa.c
76
sb_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/sb_isa.c
83
return sbfind(parent, sc, aux);
sys/dev/isa/sb_isa.c
87
sbfind(struct device *parent, struct sbdsp_softc *sc,
sys/dev/isa/sb_isapnp.c
121
sc->sc_isa = parent->dv_parent;
sys/dev/isa/sb_isapnp.c
72
sb_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/sb_isapnp.c
86
sb_isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/sch311x.c
224
schsio_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/sch311x.c
261
schsio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/skgpio.c
109
skgpio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/skgpio.c
84
skgpio_match(struct device *parent, void *match, void *aux)
sys/dev/isa/spkr.c
388
spkrprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/spkr.c
394
spkrattach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/tcic2_isa.c
140
tcic_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/tcic2_isa.c
190
tcic_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/uguru.c
656
uguru_match(struct device *parent, void *match, void *aux)
sys/dev/isa/uguru.c
693
uguru_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/uha_isa.c
106
uha_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/uha_isa.c
74
uha_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/vga_isa.c
64
vga_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/vga_isa.c
88
vga_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/viasio.c
143
viasio_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/viasio.c
172
viasio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/wbsio.c
131
wbsio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/wbsio.c
88
wbsio_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/wdc_isa.c
116
wdc_isa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/wdc_isa.c
126
sc->sc_isa = parent;
sys/dev/isa/wdc_isa.c
81
wdc_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/wdc_isapnp.c
65
wdc_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/wdc_isapnp.c
80
wdc_isapnp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/isa/wds.c
221
wdsprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/wds.c
256
wdsattach(struct device *parent, struct device *self, void *aux)
sys/dev/microcode/aic7xxx/aicasm_gram.y
1596
*p_symbol = symbol->info.ainfo->parent;
sys/dev/microcode/aic7xxx/aicasm_gram.y
519
$2->info.ainfo->parent = cur_symbol;
sys/dev/microcode/aic7xxx/aicasm_gram.y
678
symbol = $1->info.ainfo->parent;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
583
regname = curnode->symbol->info.ainfo->parent->name;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
608
symbol_t *parent;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
610
parent = curnode->symbol->info.ainfo->parent;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
611
value = parent->info.rinfo->address;
sys/dev/microcode/aic7xxx/aicasm_symbol.h
99
struct symbol *parent;
sys/dev/midi.c
490
midiprobe(struct device *parent, void *match, void *aux)
sys/dev/midi.c
498
midiattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/acphy.c
101
acphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/acphy.c
90
acphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/amphy.c
104
amphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/amphy.c
93
amphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/atphy.c
105
atphy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/atphy.c
116
atphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/bmtphy.c
83
bmtphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/bmtphy.c
94
bmtphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/brgphy.c
196
brgphy_probe(struct device *parent, void *match, void *aux)
sys/dev/mii/brgphy.c
207
brgphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/brswphy.c
184
brswphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/brswphy.c
195
brswphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/ciphy.c
110
ciphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/ciphy.c
99
ciphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/dcphy.c
105
dcphy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/dcphy.c
121
dcphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/eephy.c
135
eephy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/eephy.c
146
eephy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/etphy.c
141
etphy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/etphy.c
152
etphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/exphy.c
103
if ((strcmp(parent->dv_cfdata->cf_driver->cd_name, "xl") == 0) &&
sys/dev/mii/exphy.c
114
exphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/exphy.c
94
exphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/gentbi.c
111
bmsr = (*mii->mii_readreg)(parent, ma->mii_phyno, MII_BMSR);
sys/dev/mii/gentbi.c
115
extsr = (*mii->mii_readreg)(parent, ma->mii_phyno, MII_EXTSR);
sys/dev/mii/gentbi.c
132
gentbiattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/gentbi.c
99
gentbimatch(struct device *parent, void *match, void *aux)
sys/dev/mii/icsphy.c
112
icsphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/icsphy.c
123
icsphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/inphy.c
112
inphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/inphy.c
123
inphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/iophy.c
107
iophymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/iophy.c
118
iophyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/ipgphy.c
101
ipgphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/ipgphy.c
90
ipgphy_probe(struct device *parent, void *match, void *aux)
sys/dev/mii/jmphy.c
81
jmphy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/jmphy.c
92
jmphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/luphy.c
83
luphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/luphy.c
94
luphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/lxtphy.c
113
lxtphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/lxtphy.c
124
lxtphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/mii.c
107
bmsr = (*mii->mii_readreg)(parent, ma.mii_phyno, MII_BMSR);
sys/dev/mii/mii.c
128
ma.mii_id1 = (*mii->mii_readreg)(parent, ma.mii_phyno,
sys/dev/mii/mii.c
130
ma.mii_id2 = (*mii->mii_readreg)(parent, ma.mii_phyno,
sys/dev/mii/mii.c
137
if ((child = (struct mii_softc *)config_found_sm(parent, &ma,
sys/dev/mii/mii.c
194
mii_submatch(struct device *parent, void *match, void *aux)
sys/dev/mii/mii.c
203
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/dev/mii/mii.c
62
mii_attach(struct device *parent, struct mii_data *mii, int capmask,
sys/dev/mii/mlphy.c
150
mlphy_probe(struct device *parent, void *match, void *aux)
sys/dev/mii/mlphy.c
165
if (strcmp(parent->dv_cfdata->cf_driver->cd_name, "tl") != 0)
sys/dev/mii/mlphy.c
172
mlphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/mlphy.c
186
msc->ml_dev = parent;
sys/dev/mii/mtdphy.c
74
mtdphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/mtdphy.c
85
mtdphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/nsgphy.c
110
nsgphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/nsgphy.c
99
nsgphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/nsphy.c
107
nsphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/nsphy.c
118
nsphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/nsphyter.c
111
nsphytermatch(struct device *parent, void *match, void *aux)
sys/dev/mii/nsphyter.c
122
nsphyterattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/qsphy.c
106
qsphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/qsphy.c
117
qsphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/rdcphy.c
121
rdcphy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/rdcphy.c
132
rdcphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/rgephy.c
101
rgephymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/rgephy.c
112
rgephyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/rlphy.c
114
rlphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/rlphy.c
88
rlphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/rlphy.c
93
devname = parent->dv_cfdata->cf_driver->cd_name;
sys/dev/mii/sqphy.c
109
sqphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/sqphy.c
120
sqphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/tlphy.c
122
tlphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/tlphy.c
133
tlphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/tqphy.c
106
tqphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/tqphy.c
117
tqphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/txphy.c
74
txphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/txphy.c
85
txphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/ukphy.c
103
ukphyattach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/ukphy.c
93
ukphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/urlphy.c
101
urlphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/urlphy.c
80
urlphy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/urlphy.c
94
if (strcmp(parent->dv_cfdata->cf_driver->cd_name, "url") != 0)
sys/dev/mii/xmphy.c
100
xmphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/mii/xmphy.c
89
xmphy_probe(struct device *parent, void *match, void *aux)
sys/dev/mii/ytphy.c
112
ytphy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/ytphy.c
132
ytphy_attach(struct device *parent, struct device *self, void *aux)
sys/dev/ofw/fdt.c
605
void *parent;
sys/dev/ofw/fdt.c
607
parent = fdt_parent_node(node);
sys/dev/ofw/fdt.c
608
if (parent == NULL)
sys/dev/ofw/fdt.c
611
fdt_get_cells(parent, ac, sc);
sys/dev/ofw/fdt.c
639
void *parent;
sys/dev/ofw/fdt.c
644
parent = fdt_parent_node(node);
sys/dev/ofw/fdt.c
645
if (parent == NULL)
sys/dev/ofw/fdt.c
657
return fdt_translate_reg(parent, reg);
sys/dev/ofw/fdt.c
663
fdt_get_cells(parent, &pac, &psc);
sys/dev/ofw/fdt.c
701
return fdt_translate_reg(parent, reg);
sys/dev/ofw/fdt.c
714
void *parent;
sys/dev/ofw/fdt.c
720
parent = fdt_parent_node(node);
sys/dev/ofw/fdt.c
721
if (parent == NULL)
sys/dev/ofw/fdt.c
728
fdt_get_cells(parent, &ac, &sc);
sys/dev/ofw/fdt.c
746
return fdt_translate_reg(parent, reg);
sys/dev/ofw/ofw_clock.c
289
uint32_t *clock, *parent, *rate;
sys/dev/ofw/ofw_clock.c
302
parent = parents = NULL;
sys/dev/ofw/ofw_clock.c
304
parent = parents = malloc(plen, M_TEMP, M_WAITOK);
sys/dev/ofw/ofw_clock.c
314
if (parent && parent < parents + (plen / sizeof(uint32_t)))
sys/dev/ofw/ofw_clock.c
315
if (*parent != 0)
sys/dev/ofw/ofw_clock.c
316
clock_set_parent_cells(clock, parent);
sys/dev/ofw/ofw_clock.c
323
if (parent)
sys/dev/ofw/ofw_clock.c
324
parent = clock_next_clock(parent);
sys/dev/onewire/onewire.c
87
onewire_match(struct device *parent, void *match, void *aux)
sys/dev/onewire/onewire.c
95
onewire_attach(struct device *parent, struct device *self, void *aux)
sys/dev/onewire/owctr.c
90
owctr_match(struct device *parent, void *match, void *aux)
sys/dev/onewire/owctr.c
96
owctr_attach(struct device *parent, struct device *self, void *aux)
sys/dev/onewire/owid.c
66
owid_match(struct device *parent, void *match, void *aux)
sys/dev/onewire/owid.c
72
owid_attach(struct device *parent, struct device *self, void *aux)
sys/dev/onewire/owsbm.c
105
owsbm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/onewire/owsbm.c
99
owsbm_match(struct device *parent, void *match, void *aux)
sys/dev/onewire/owtemp.c
86
owtemp_match(struct device *parent, void *match, void *aux)
sys/dev/onewire/owtemp.c
92
owtemp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/aac_pci.c
201
aac_pci_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/aac_pci.c
220
aac_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/adv_pci.c
103
adv_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/adv_pci.c
111
adv_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/adw_pci.c
89
adw_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/adw_pci.c
97
adw_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/agp.c
108
agp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/agp.c
116
sc->sc_chipc = parent;
sys/dev/pci/agp.c
98
agp_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/agp_ali.c
84
agp_ali_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/agp_ali.c
97
agp_ali_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/agp_amd.c
155
agp_amd_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/agp_amd.c
170
agp_amd_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/agp_apple.c
70
agp_apple_match(struct device *parent, void *match, void *aux)
sys/dev/pci/agp_apple.c
96
agp_apple_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/agp_i810.c
213
agp_i810_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/agp_i810.c
225
agp_i810_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/agp_i810.c
230
struct drm_i915_private *psc = (struct drm_i915_private *)parent;
sys/dev/pci/agp_intel.c
129
agp_intel_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/agp_intel.c
96
agp_intel_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/agp_sis.c
82
agp_sis_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/agp_sis.c
97
agp_sis_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/agp_via.c
111
agp_via_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/agp_via.c
94
agp_via_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/ahc_pci.c
680
ahc_pci_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/ahc_pci.c
692
ahc_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ahci_pci.c
307
ahci_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ahci_pci.c
330
ahci_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ahd_pci.c
325
ahd_pci_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/ahd_pci.c
337
ahd_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/alipm.c
127
alipm_match(struct device *parent, void *match, void *aux)
sys/dev/pci/alipm.c
138
alipm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/amas.c
141
amas_match(struct device *parent, void *match, void *aux)
sys/dev/pci/amas.c
151
amas_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/amdiic.c
127
amdiic_match(struct device *parent, void *match, void *aux)
sys/dev/pci/amdiic.c
134
amdiic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/amdpcib.c
109
amdpcib_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/amdpcib.c
149
pcibattach(parent, self, aux);
sys/dev/pci/amdpcib.c
89
void pcibattach(struct device *parent, struct device *self, void *aux);
sys/dev/pci/amdpcib.c
99
amdpcib_match(struct device *parent, void *match, void *aux)
sys/dev/pci/amdpm.c
204
amdpm_match(struct device *parent, void *match, void *aux)
sys/dev/pci/amdpm.c
211
amdpm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ami_pci.c
157
ami_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ami_pci.c
187
ami_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/arc.c
760
arc_match(struct device *parent, void *match, void *aux)
sys/dev/pci/arc.c
766
arc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/auacer.c
202
auacer_match(struct device *parent, void *match, void *aux)
sys/dev/pci/auacer.c
209
auacer_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/auglx.c
273
auglx_match(struct device *parent, void *match, void *aux)
sys/dev/pci/auglx.c
280
auglx_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/auich.c
343
auich_match(struct device *parent, void *match, void *aux)
sys/dev/pci/auich.c
357
auich_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/auixp.c
930
auixp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/autri.c
439
autri_match(struct device *parent, void *match, void *aux)
sys/dev/pci/autri.c
460
autri_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/auvia.c
213
auvia_match(struct device *parent, void *match, void *aux)
sys/dev/pci/auvia.c
230
auvia_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/azalia.c
2460
w->parent == this->input_mixer ||
sys/dev/pci/azalia.c
2959
this->parent = codec->audiofunc;
sys/dev/pci/azalia.c
3239
codec->w[i].parent = j;
sys/dev/pci/azalia.c
519
azalia_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/azalia.c
532
azalia_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/azalia.h
560
nid_t parent;
sys/dev/pci/berkwdt.c
171
berkwdt_match(struct device *parent, void *match, void *aux)
sys/dev/pci/berkwdt.c
178
berkwdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/bktr/bktr_os.c
134
bktr_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/bktr/bktr_os.c
153
bktr_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/cac_pci.c
145
cac_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/cac_pci.c
152
cac_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ccp_pci.c
57
ccp_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ccp_pci.c
63
ccp_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ciss_pci.c
124
ciss_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ciss_pci.c
132
ciss_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/cmpci.c
327
cmpci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/cmpci.c
334
cmpci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/com_pci.c
71
com_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/com_pci.c
77
com_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/cs4280.c
268
cs4280_match(struct device *parent, void *ma, void *aux)
sys/dev/pci/cs4280.c
547
cs4280_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/cs4281.c
237
cs4281_match(struct device *parent, void *match, void *aux)
sys/dev/pci/cs4281.c
249
cs4281_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/cy_pci.c
150
cy_attach(parent, self);
sys/dev/pci/cy_pci.c
83
cy_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/cy_pci.c
90
cy_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/cz.c
269
cz_match(struct device *parent, void *match, void *aux)
sys/dev/pci/cz.c
285
cz_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/drm/amd/amdgpu/amdgpu_acp.c
105
adev->acp.parent = adev->dev;
sys/dev/pci/drm/amd/amdgpu/amdgpu_acp.c
315
r = mfd_add_hotplug_devices(adev->acp.parent, adev->acp.acp_cell, 2);
sys/dev/pci/drm/amd/amdgpu/amdgpu_acp.c
318
r = device_for_each_child(adev->acp.parent, &adev->acp.acp_genpd->gpd,
sys/dev/pci/drm/amd/amdgpu/amdgpu_acp.c
436
r = mfd_add_hotplug_devices(adev->acp.parent, adev->acp.acp_cell, ACP_DEVS);
sys/dev/pci/drm/amd/amdgpu/amdgpu_acp.c
440
r = device_for_each_child(adev->acp.parent, &adev->acp.acp_genpd->gpd,
sys/dev/pci/drm/amd/amdgpu/amdgpu_acp.c
551
device_for_each_child(adev->acp.parent, NULL,
sys/dev/pci/drm/amd/amdgpu/amdgpu_acp.c
554
mfd_remove_devices(adev->acp.parent);
sys/dev/pci/drm/amd/amdgpu/amdgpu_acp.h
32
struct device *parent;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
358
(*bo_out)->parent = amdgpu_bo_ref(mem->bo);
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
1723
while (root->parent)
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
1724
root = root->parent;
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
2805
struct pci_dev *parent;
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
2890
parent = pcie_find_root_port(adev->pdev);
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
2891
adev->has_pr3 = parent ? pci_pr3_present(parent) : false;
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
6800
struct pci_dev *parent = adev->pdev;
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
6809
while ((parent = pci_upstream_bridge(parent))) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
6811
if (parent->vendor == PCI_VENDOR_ID_ATI)
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
6813
*speed = pcie_get_speed_cap(parent);
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
6814
*width = pcie_get_width_cap(parent);
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
6837
struct pci_dev *parent = adev->pdev;
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
6842
parent = pci_upstream_bridge(parent);
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
6843
if (parent && parent->vendor == PCI_VENDOR_ID_ATI) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
6845
*speed = pcie_get_speed_cap(parent);
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
6846
*width = pcie_get_width_cap(parent);
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
6847
while ((parent = pci_upstream_bridge(parent))) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
6848
if (parent->vendor == PCI_VENDOR_ID_ATI) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
6850
*speed = pcie_get_speed_cap(parent);
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
6851
*width = pcie_get_width_cap(parent);
sys/dev/pci/drm/amd/amdgpu/amdgpu_discovery.c
1253
die_kset->kobj.parent = &adev->ip_top->kobj;
sys/dev/pci/drm/amd/amdgpu/amdgpu_drv.c
3288
amdgpu_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/amd/amdgpu/amdgpu_drv.c
3357
amdgpu_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/drm/amd/amdgpu/amdgpu_gem.c
584
abo->parent = amdgpu_bo_ref(vm->root.bo);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
273
i2c->adapter.dev.parent = dev->dev;
sys/dev/pci/drm/amd/amdgpu/amdgpu_isp.c
119
isp->parent = adev->dev;
sys/dev/pci/drm/amd/amdgpu/amdgpu_isp.c
199
ret = is_valid_isp_device(ispdev->dev.parent, adev->dev);
sys/dev/pci/drm/amd/amdgpu/amdgpu_isp.c
279
ret = is_valid_isp_device(ispdev->dev.parent, adev->dev);
sys/dev/pci/drm/amd/amdgpu/amdgpu_isp.h
44
struct device *parent;
sys/dev/pci/drm/amd/amdgpu/amdgpu_job.c
116
amdgpu_ring_soft_recovery(ring, job->vmid, s_job->s_fence->parent)) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_object.c
69
amdgpu_bo_unref(&bo->parent);
sys/dev/pci/drm/amd/amdgpu/amdgpu_object.h
114
struct amdgpu_bo *parent;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm.c
138
struct rb_node *parent = NULL;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm.c
142
parent = *iter;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm.c
151
rb_link_node(&node->rb, parent, iter);
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm.c
298
if (vm_bo->bo->parent) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm.c
347
else if (bo->parent)
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm.c
493
if (bo->tbo.type == ttm_bo_type_kernel && bo->parent)
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
139
struct amdgpu_bo *parent = pt->bo->parent;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
141
if (!parent)
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
144
return parent->vm_bo;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
162
cursor->parent = NULL;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
191
cursor->parent = cursor->entry;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
211
struct amdgpu_bo_vm *parent;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
214
if (!cursor->parent)
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
220
parent = to_amdgpu_bo_vm(cursor->parent->bo);
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
222
if (cursor->entry == &parent->entries[num_entries - 1])
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
242
if (!cursor->parent)
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
246
cursor->entry = cursor->parent;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
247
cursor->parent = amdgpu_vm_pt_parent(cursor->parent);
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
329
if (!cursor->parent)
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
36
struct amdgpu_vm_bo_base *parent;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
373
if (ancestor->parent) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
375
while (ancestor->parent->parent) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
377
ancestor = ancestor->parent;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
519
pt_bo->parent = amdgpu_bo_ref(cursor->parent->bo);
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
632
struct amdgpu_vm_bo_base *parent = amdgpu_vm_pt_parent(entry);
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
638
if (WARN_ON(!parent))
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
641
bo = parent->bo;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
642
for (level = 0, pbo = bo->parent; pbo; ++level)
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
643
pbo = pbo->parent;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vm_pt.c
647
pde = (entry - to_amdgpu_bo_vm(parent->bo)->entries) * 8;
sys/dev/pci/drm/amd/amdgpu/amdgpu_xgmi.c
622
if (hive->kobj.parent != (&adev->dev->kobj)) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_xgmi.c
674
if (hive->kobj.parent != (&adev->dev->kobj))
sys/dev/pci/drm/amd/amdgpu/isp_v4_1_0.c
150
r = mfd_add_hotplug_devices(isp->parent, isp->isp_cell, 3);
sys/dev/pci/drm/amd/amdgpu/isp_v4_1_0.c
172
mfd_remove_devices(isp->parent);
sys/dev/pci/drm/amd/amdgpu/isp_v4_1_1.c
321
r = mfd_add_hotplug_devices(isp->parent, isp->isp_cell, 2);
sys/dev/pci/drm/amd/amdgpu/isp_v4_1_1.c
327
r = device_for_each_child(isp->parent, &isp->ispgpd,
sys/dev/pci/drm/amd/amdgpu/isp_v4_1_1.c
334
r = mfd_add_hotplug_devices(isp->parent, &isp->isp_cell[2], 1);
sys/dev/pci/drm/amd/amdgpu/isp_v4_1_1.c
355
device_for_each_child(isp->parent, NULL,
sys/dev/pci/drm/amd/amdgpu/isp_v4_1_1.c
358
mfd_remove_devices(isp->parent);
sys/dev/pci/drm/amd/amdgpu/smu_v11_0_i2c.c
737
control->dev.parent = &adev->pdev->dev;
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
2465
svm_range_unmap_split(struct svm_range *parent, struct svm_range *prange, unsigned long start,
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
2486
svm_range_add_child(parent, head, SVM_OP_UNMAP_RANGE);
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
2487
svm_range_add_child(parent, tail, SVM_OP_ADD_RANGE);
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
2489
svm_range_add_child(parent, tail, SVM_OP_UNMAP_RANGE);
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
2491
svm_range_add_child(parent, head, SVM_OP_UNMAP_RANGE);
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
2492
} else if (parent != prange) {
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
2660
struct svm_range **parent)
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
2675
if (parent)
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
2676
*parent = prange;
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
2683
if (parent)
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
2684
*parent = prange;
sys/dev/pci/drm/amd/amdkfd/kfd_svm.h
170
struct svm_range **parent);
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm.c
8929
i2c->base.dev.parent = &adev->pdev->dev;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
148
int mstb_lct = sort_connector[j]->mst_output_port->parent->lct;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
149
int next_mstb_lct = sort_connector[j + 1]->mst_output_port->parent->lct;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
162
rad = sort_connector[j]->mst_output_port->parent->rad;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
163
next_rad = sort_connector[j + 1]->mst_output_port->parent->rad;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
204
dm->secure_display_ctx.phy_id_mapping[idx].lct = aconnector->mst_output_port->parent->lct;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
207
aconnector->mst_output_port->parent->rad, sizeof(aconnector->mst_output_port->parent->rad));
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
254
if (aconnector->mst_output_port->parent->lct == dm->secure_display_ctx.phy_id_mapping[idx].lct &&
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
256
if (aconnector->mst_output_port->parent->lct == 1) {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
259
} else if (aconnector->mst_output_port->parent->lct > 1) {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
261
for (idx_2 = 0; idx_2 < aconnector->mst_output_port->parent->lct - 1; idx_2++) {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
263
int port_num = (aconnector->mst_output_port->parent->rad[idx_2 / 2] >> shift) & 0xf;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
270
if (idx_2 == aconnector->mst_output_port->parent->lct - 1) {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c
1927
if (aconnector->mst_output_port->parent->port_parent)
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c
1928
immediate_upstream_port = aconnector->mst_output_port->parent->port_parent;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c
287
if (!aconnector->dsc_aux && !port->parent->port_parent &&
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c
341
if (!port->parent)
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c
344
port_parent = port->parent->port_parent;
sys/dev/pci/drm/amd/pm/swsmu/smu11/arcturus_ppt.c
1743
control->dev.parent = &adev->pdev->dev;
sys/dev/pci/drm/amd/pm/swsmu/smu11/navi10_ppt.c
3140
control->dev.parent = &adev->pdev->dev;
sys/dev/pci/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
2646
control->dev.parent = &adev->pdev->dev;
sys/dev/pci/drm/amd/pm/swsmu/smu13/aldebaran_ppt.c
1639
control->dev.parent = &adev->pdev->dev;
sys/dev/pci/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c
2830
control->dev.parent = &adev->pdev->dev;
sys/dev/pci/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c
2507
control->dev.parent = &adev->pdev->dev;
sys/dev/pci/drm/amd/pm/swsmu/smu14/smu_v14_0_2_ppt.c
2086
control->dev.parent = &adev->pdev->dev;
sys/dev/pci/drm/apple/apldcp.c
54
apldcp_match(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/apple/apldcp.c
63
apldcp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/drm/apple/apldrm.c
74
apldrm_match(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/apple/apldrm.c
82
apldrm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/drm/display/drm_dp_helper.c
2404
aux->ddc.dev.parent = aux->dev;
sys/dev/pci/drm/display/drm_dp_mst_topology.c
1489
drm_dp_mst_put_mstb_malloc(port->parent);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
2038
int parent_lct = port->parent->lct;
sys/dev/pci/drm/display/drm_dp_mst_topology.c
2043
memcpy(rad, port->parent->rad, idx + 1);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
2319
port->parent->num_ports--;
sys/dev/pci/drm/display/drm_dp_mst_topology.c
2337
port->parent = mstb;
sys/dev/pci/drm/display/drm_dp_mst_topology.c
3088
return drm_dp_get_last_connected_port_to_mstb(mstb->port_parent->parent);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
3116
if (drm_dp_mst_topology_try_get_mstb(found_port->parent)) {
sys/dev/pci/drm/display/drm_dp_mst_topology.c
3117
rmstb = found_port->parent;
sys/dev/pci/drm/display/drm_dp_mst_topology.c
3121
mstb = found_port->parent;
sys/dev/pci/drm/display/drm_dp_mst_topology.c
3141
mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
3144
port->parent,
sys/dev/pci/drm/display/drm_dp_mst_topology.c
3204
txmsg->dst = port->parent;
sys/dev/pci/drm/display/drm_dp_mst_topology.c
3208
ret = drm_dp_mst_wait_tx_reply(port->parent, txmsg);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
3479
mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
3490
txmsg->dst = port->parent;
sys/dev/pci/drm/display/drm_dp_mst_topology.c
3530
mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5200
while (port->parent) {
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5201
if (port->parent == branch)
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5204
if (port->parent->port_parent)
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5205
port = port->parent->port_parent;
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5215
struct drm_dp_mst_port *parent)
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5225
if (!parent)
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5228
parent = drm_dp_mst_topology_get_port_validated_locked(mgr->mst_primary,
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5229
parent);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5230
if (!parent)
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5233
if (!parent->mstb)
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5236
return drm_dp_mst_port_downstream_of_branch(port, parent->mstb);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5252
struct drm_dp_mst_port *parent)
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5257
ret = drm_dp_mst_port_downstream_of_parent_locked(mgr, port, parent);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5296
mstb->port_parent->parent, mstb->port_parent, mstb);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5334
port->parent, port);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5351
port->parent, port, pbn_used, port->full_pbn);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5357
port->parent, port, pbn_used, port->full_pbn);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5942
mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
5992
aux->ddc.dev.parent = parent_dev;
sys/dev/pci/drm/display/drm_dp_mst_topology.c
6071
if (!port->parent || !port->parent->port_parent)
sys/dev/pci/drm/display/drm_dp_mst_topology.c
6074
return &port->parent->port_parent->aux;
sys/dev/pci/drm/display/drm_dp_mst_topology.c
6107
if (port->parent->port_parent)
sys/dev/pci/drm/display/drm_dp_mst_topology.c
6108
immediate_upstream_port = port->parent->port_parent;
sys/dev/pci/drm/display/drm_dp_mst_topology.c
6122
fec_port = fec_port->parent->port_parent;
sys/dev/pci/drm/drm_buddy.c
1010
struct drm_buddy_block *parent;
sys/dev/pci/drm/drm_buddy.c
1060
parent = block->parent;
sys/dev/pci/drm/drm_buddy.c
1061
block->parent = NULL;
sys/dev/pci/drm/drm_buddy.c
1073
block->parent = parent;
sys/dev/pci/drm/drm_buddy.c
178
struct drm_buddy_block *parent;
sys/dev/pci/drm/drm_buddy.c
180
parent = block->parent;
sys/dev/pci/drm/drm_buddy.c
181
if (!parent)
sys/dev/pci/drm/drm_buddy.c
184
if (parent->left == block)
sys/dev/pci/drm/drm_buddy.c
185
return parent->right;
sys/dev/pci/drm/drm_buddy.c
187
return parent->left;
sys/dev/pci/drm/drm_buddy.c
194
struct drm_buddy_block *parent;
sys/dev/pci/drm/drm_buddy.c
197
while ((parent = block->parent)) {
sys/dev/pci/drm/drm_buddy.c
215
mark_cleared(parent);
sys/dev/pci/drm/drm_buddy.c
225
block = parent;
sys/dev/pci/drm/drm_buddy.c
259
if (!block || !block->parent)
sys/dev/pci/drm/drm_buddy.c
29
struct drm_buddy_block *parent,
sys/dev/pci/drm/drm_buddy.c
47
block->parent = parent;
sys/dev/pci/drm/drm_debugfs.c
671
struct dentry *parent)
sys/dev/pci/drm/drm_debugfs.c
675
file = debugfs_create_file("audio", 0400, parent, connector, &audio_infoframe_fops);
sys/dev/pci/drm/drm_debugfs.c
725
struct dentry *parent) \
sys/dev/pci/drm/drm_debugfs.c
729
file = debugfs_create_file(#_f, 0400, parent, connector, &_f ## _infoframe_fops); \
sys/dev/pci/drm/drm_debugfs.c
742
struct dentry *parent)
sys/dev/pci/drm/drm_debugfs.c
746
ret = create_hdmi_audio_infoframe_file(connector, parent);
sys/dev/pci/drm/drm_debugfs.c
750
ret = create_hdmi_avi_infoframe_file(connector, parent);
sys/dev/pci/drm/drm_debugfs.c
754
ret = create_hdmi_hdmi_infoframe_file(connector, parent);
sys/dev/pci/drm/drm_debugfs.c
758
ret = create_hdmi_hdr_drm_infoframe_file(connector, parent);
sys/dev/pci/drm/drm_debugfs.c
762
ret = create_hdmi_spd_infoframe_file(connector, parent);
sys/dev/pci/drm/drm_drv.c
1107
ret = sysfs_create_link(minor->kdev->kobj.parent,
sys/dev/pci/drm/drm_drv.c
1132
sysfs_remove_link(minor->kdev->kobj.parent, name);
sys/dev/pci/drm/drm_drv.c
1449
drmsubmatch(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/drm_drv.c
1456
return ((*cf->cf_attach->ca_match)(parent, match, aux));
sys/dev/pci/drm/drm_drv.c
1474
drm_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/drm_drv.c
1498
drm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/drm/drm_drv.c
1522
dev->dev_private = parent;
sys/dev/pci/drm/drm_drv.c
1568
dev->pdev->pci = (struct pci_softc *)parent->dv_parent;
sys/dev/pci/drm/drm_drv.c
1569
dev->pdev->_dev = parent;
sys/dev/pci/drm/drm_drv.c
795
struct device *parent)
sys/dev/pci/drm/drm_drv.c
805
if (WARN_ON(!parent))
sys/dev/pci/drm/drm_drv.c
809
dev->dev = get_device(parent);
sys/dev/pci/drm/drm_drv.c
873
dev->unique = drmm_kstrdup(dev, dev_name(parent), GFP_KERNEL);
sys/dev/pci/drm/drm_drv.c
894
static int devm_drm_dev_init(struct device *parent,
sys/dev/pci/drm/drm_drv.c
900
ret = drm_dev_init(dev, driver, parent);
sys/dev/pci/drm/drm_drv.c
904
return devm_add_action_or_reset(parent,
sys/dev/pci/drm/drm_drv.c
910
void *__devm_drm_dev_alloc(struct device *parent,
sys/dev/pci/drm/drm_drv.c
926
ret = devm_drm_dev_init(parent, drm, driver);
sys/dev/pci/drm/drm_drv.c
957
void *__drm_dev_alloc(struct device *parent,
sys/dev/pci/drm/drm_drv.c
970
ret = drm_dev_init(drm, driver, parent);
sys/dev/pci/drm/drm_drv.c
994
struct device *parent)
sys/dev/pci/drm/drm_drv.c
996
return __drm_dev_alloc(parent, driver, sizeof(struct drm_device), 0);
sys/dev/pci/drm/drm_linux.c
3153
struct rb_node *parent = NULL;
sys/dev/pci/drm/drm_linux.c
3157
parent = *iter;
sys/dev/pci/drm/drm_linux.c
3166
rb_link_node(&node->rb, parent, iter);
sys/dev/pci/drm/drm_linux.c
3653
pdev->parent = pdev->dev.dv_parent;
sys/dev/pci/drm/drm_linux.c
3959
struct device *parent)
sys/dev/pci/drm/drm_linux.c
3965
pdev->parent = parent;
sys/dev/pci/drm/drm_linux.c
4001
bus_dma_tag_t dmat = dma_tag_lookup(pdev->parent);
sys/dev/pci/drm/drm_mipi_dsi.c
145
dsi->dev.parent = host->dev;
sys/dev/pci/drm/drm_mm.c
196
struct drm_mm_node *parent;
sys/dev/pci/drm/drm_mm.c
204
parent = rb_entry(rb, struct drm_mm_node, rb);
sys/dev/pci/drm/drm_mm.c
205
if (parent->__subtree_last >= node->__subtree_last)
sys/dev/pci/drm/drm_mm.c
208
parent->__subtree_last = node->__subtree_last;
sys/dev/pci/drm/drm_mm.c
223
parent = rb_entry(rb, struct drm_mm_node, rb);
sys/dev/pci/drm/drm_mm.c
224
if (parent->__subtree_last < node->__subtree_last)
sys/dev/pci/drm/drm_mm.c
225
parent->__subtree_last = node->__subtree_last;
sys/dev/pci/drm/drm_mm.c
226
if (node->start < parent->start) {
sys/dev/pci/drm/drm_mm.c
227
link = &parent->rb.rb_left;
sys/dev/pci/drm/drm_mm.c
229
link = &parent->rb.rb_right;
sys/dev/pci/drm/drm_privacy_screen.c
392
struct device *parent, const struct drm_privacy_screen_ops *ops,
sys/dev/pci/drm/drm_privacy_screen.c
407
priv->dev.parent = parent;
sys/dev/pci/drm/drm_privacy_screen.c
409
dev_set_name(&priv->dev, "privacy_screen-%s", dev_name(parent));
sys/dev/pci/drm/drm_vma_manager.c
248
struct rb_node *parent = NULL;
sys/dev/pci/drm/drm_vma_manager.c
263
parent = *iter;
sys/dev/pci/drm/drm_vma_manager.c
284
rb_link_node(&new->vm_rb, parent, iter);
sys/dev/pci/drm/i915/display/intel_display_debugfs_params.c
125
struct dentry *parent, int *value)
sys/dev/pci/drm/i915/display/intel_display_debugfs_params.c
127
return debugfs_create_file_unsafe(name, mode, parent, value,
sys/dev/pci/drm/i915/display/intel_display_debugfs_params.c
134
struct dentry *parent, unsigned int *value)
sys/dev/pci/drm/i915/display/intel_display_debugfs_params.c
136
return debugfs_create_file_unsafe(name, mode, parent, value,
sys/dev/pci/drm/i915/display/intel_display_debugfs_params.c
141
#define _intel_display_param_create_file(parent, name, mode, valp) \
sys/dev/pci/drm/i915/display/intel_display_debugfs_params.c
150
(name, mode, parent, valp); \
sys/dev/pci/drm/i915/display/intel_fbc.c
2222
struct dentry *parent)
sys/dev/pci/drm/i915/display/intel_fbc.c
2224
debugfs_create_file("i915_fbc_status", 0444, parent,
sys/dev/pci/drm/i915/display/intel_fbc.c
2228
debugfs_create_file_unsafe("i915_fbc_false_color", 0644, parent,
sys/dev/pci/drm/i915/display/intel_gmbus.c
1055
bus->adapter.dev.parent = &pdev->dev;
sys/dev/pci/drm/i915/display/intel_lpe_audio.c
116
pinfo.parent = display->drm->dev;
sys/dev/pci/drm/i915/display/intel_sdvo.c
3360
ddc->ddc.dev.parent = &pdev->dev;
sys/dev/pci/drm/i915/gem/selftests/i915_gem_context.c
788
struct i915_gem_context *parent;
sys/dev/pci/drm/i915/gem/selftests/i915_gem_context.c
806
parent = live_context(i915, file);
sys/dev/pci/drm/i915/gem/selftests/i915_gem_context.c
807
if (IS_ERR(parent)) {
sys/dev/pci/drm/i915/gem/selftests/i915_gem_context.c
808
err = PTR_ERR(parent);
sys/dev/pci/drm/i915/gem/selftests/i915_gem_context.c
812
if (!parent->vm) { /* not full-ppgtt; nothing to share */
sys/dev/pci/drm/i915/gem/selftests/i915_gem_context.c
837
ctx = kernel_context(i915, parent->vm);
sys/dev/pci/drm/i915/gem/selftests/i915_gem_context.c
847
obj = create_test_object(parent->vm,
sys/dev/pci/drm/i915/gt/intel_context.c
566
struct intel_context *parent = intel_context_to_parent(ce);
sys/dev/pci/drm/i915/gt/intel_context.c
578
spin_lock_irqsave(&parent->guc_state.lock, flags);
sys/dev/pci/drm/i915/gt/intel_context.c
579
list_for_each_entry_reverse(rq, &parent->guc_state.requests,
sys/dev/pci/drm/i915/gt/intel_context.c
590
spin_unlock_irqrestore(&parent->guc_state.lock, flags);
sys/dev/pci/drm/i915/gt/intel_context.c
595
void intel_context_bind_parent_child(struct intel_context *parent,
sys/dev/pci/drm/i915/gt/intel_context.c
602
GEM_BUG_ON(intel_context_is_pinned(parent));
sys/dev/pci/drm/i915/gt/intel_context.c
603
GEM_BUG_ON(intel_context_is_child(parent));
sys/dev/pci/drm/i915/gt/intel_context.c
608
parent->parallel.child_index = parent->parallel.number_children++;
sys/dev/pci/drm/i915/gt/intel_context.c
610
&parent->parallel.child_list);
sys/dev/pci/drm/i915/gt/intel_context.c
611
child->parallel.parent = parent;
sys/dev/pci/drm/i915/gt/intel_context.h
54
return !!ce->parallel.parent;
sys/dev/pci/drm/i915/gt/intel_context.h
75
GEM_BUG_ON(!intel_context_is_pinned(ce->parallel.parent));
sys/dev/pci/drm/i915/gt/intel_context.h
77
return ce->parallel.parent;
sys/dev/pci/drm/i915/gt/intel_context.h
88
void intel_context_bind_parent_child(struct intel_context *parent,
sys/dev/pci/drm/i915/gt/intel_context.h
91
#define for_each_child(parent, ce)\
sys/dev/pci/drm/i915/gt/intel_context.h
92
list_for_each_entry(ce, &(parent)->parallel.child_list,\
sys/dev/pci/drm/i915/gt/intel_context.h
94
#define for_each_child_safe(parent, ce, cn)\
sys/dev/pci/drm/i915/gt/intel_context.h
95
list_for_each_entry_safe(ce, cn, &(parent)->parallel.child_list,\
sys/dev/pci/drm/i915/gt/intel_context_types.h
267
struct intel_context *parent;
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
2660
struct intel_context *parent = NULL, *ce, *err;
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
2673
parent = ce;
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
2675
intel_context_bind_parent_child(parent, ce);
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
2678
parent->parallel.fence_context = dma_fence_context_alloc(1);
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
2680
intel_context_set_nopreempt(parent);
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
2681
for_each_child(parent, ce)
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
2684
return parent;
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
2687
if (parent)
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
2688
intel_context_put(parent);
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
3835
struct rb_node **parent, *rb;
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
3868
parent = &sibling->execlists.virtual.rb_root.rb_node;
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
3869
while (*parent) {
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
3872
rb = *parent;
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
3875
parent = &rb->rb_left;
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
3877
parent = &rb->rb_right;
sys/dev/pci/drm/i915/gt/intel_execlists_submission.c
3882
rb_link_node(&node->rb, rb, parent);
sys/dev/pci/drm/i915/gt/intel_gsc.c
239
adev->bar.parent = &pdev->resource[0];
sys/dev/pci/drm/i915/gt/intel_gsc.c
250
aux_dev->dev.parent = &pdev->dev;
sys/dev/pci/drm/i915/gt/intel_gt_sysfs_pm.c
799
struct intel_gt *gt = kobj_to_gt(kobj->parent);
sys/dev/pci/drm/i915/gt/intel_gt_sysfs_pm.c
810
struct intel_gt *gt = kobj_to_gt(kobj->parent);
sys/dev/pci/drm/i915/gt/intel_gt_sysfs_pm.c
823
struct intel_gt *gt = kobj_to_gt(kobj->parent);
sys/dev/pci/drm/i915/gt/intel_gt_sysfs_pm.c
836
struct intel_gt *gt = kobj_to_gt(kobj->parent);
sys/dev/pci/drm/i915/gt/intel_region_lmem.c
100
root = root->parent;
sys/dev/pci/drm/i915/gt/intel_region_lmem.c
99
while (root->parent)
sys/dev/pci/drm/i915/gt/sysfs_engines.c
451
static void add_defaults(struct kobj_engine *parent)
sys/dev/pci/drm/i915/gt/sysfs_engines.c
468
ke->engine = parent->engine;
sys/dev/pci/drm/i915/gt/sysfs_engines.c
470
if (kobject_add(&ke->base, &parent->base, "%s", ".defaults")) {
sys/dev/pci/drm/i915/gt/uc/intel_guc_log.c
249
struct dentry *parent,
sys/dev/pci/drm/i915/gt/uc/intel_guc_log.c
264
if (!parent)
sys/dev/pci/drm/i915/gt/uc/intel_guc_log.c
268
parent, buf, &relay_file_operations);
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
1864
struct intel_context *parent = ce;
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
1909
__unwind_incomplete_requests(parent);
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
1910
intel_context_put(parent);
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4105
__intel_context_pin(ce->parallel.parent);
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4135
GEM_BUG_ON(!intel_context_is_pinned(ce->parallel.parent));
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4139
intel_context_unpin(ce->parallel.parent);
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4222
struct intel_context *parent = NULL, *ce, *err;
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4243
parent = ce;
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4244
parent->ops = &virtual_parent_context_ops;
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4247
intel_context_bind_parent_child(parent, ce);
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4251
parent->parallel.fence_context = dma_fence_context_alloc(1);
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4253
parent->engine->emit_bb_start =
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4255
parent->engine->emit_fini_breadcrumb =
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4257
parent->engine->emit_fini_breadcrumb_dw =
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4258
12 + 4 * parent->parallel.number_children;
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4259
for_each_child(parent, ce) {
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4268
return parent;
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4271
if (parent)
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
4272
intel_context_put(parent);
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
5690
struct intel_context *parent = intel_context_to_parent(ce);
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
5702
get_children_join_addr(parent,
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
5712
*cs++ = get_children_go_addr(parent);
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
5828
struct intel_context *parent = intel_context_to_parent(ce);
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
5839
get_children_join_addr(parent,
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
5849
*cs++ = get_children_go_addr(parent);
sys/dev/pci/drm/i915/gt/uc/selftest_guc_multi_lrc.c
113
struct intel_context *parent;
sys/dev/pci/drm/i915/gt/uc/selftest_guc_multi_lrc.c
117
parent = multi_lrc_create_parent(gt, class, 0);
sys/dev/pci/drm/i915/gt/uc/selftest_guc_multi_lrc.c
118
if (IS_ERR(parent)) {
sys/dev/pci/drm/i915/gt/uc/selftest_guc_multi_lrc.c
119
gt_err(gt, "Failed creating contexts: %pe\n", parent);
sys/dev/pci/drm/i915/gt/uc/selftest_guc_multi_lrc.c
120
return PTR_ERR(parent);
sys/dev/pci/drm/i915/gt/uc/selftest_guc_multi_lrc.c
121
} else if (!parent) {
sys/dev/pci/drm/i915/gt/uc/selftest_guc_multi_lrc.c
126
rq = multi_lrc_nop_request(parent);
sys/dev/pci/drm/i915/gt/uc/selftest_guc_multi_lrc.c
146
multi_lrc_context_unpin(parent);
sys/dev/pci/drm/i915/gt/uc/selftest_guc_multi_lrc.c
147
multi_lrc_context_put(parent);
sys/dev/pci/drm/i915/gvt/gvt.h
342
struct mdev_parent parent;
sys/dev/pci/drm/i915/gvt/kvmgt.c
1451
vgpu->gvt = kdev_to_i915(mdev->type->parent->dev)->gvt;
sys/dev/pci/drm/i915/gvt/kvmgt.c
1523
struct intel_gvt *gvt = kdev_to_i915(mtype->parent->dev)->gvt;
sys/dev/pci/drm/i915/gvt/kvmgt.c
1823
mdev_unregister_parent(&gvt->parent);
sys/dev/pci/drm/i915/gvt/kvmgt.c
1923
ret = mdev_register_parent(&gvt->parent, i915->drm.dev,
sys/dev/pci/drm/i915/gvt/kvmgt.c
250
struct rb_node **link, *parent = NULL;
sys/dev/pci/drm/i915/gvt/kvmgt.c
265
parent = *link;
sys/dev/pci/drm/i915/gvt/kvmgt.c
266
itr = rb_entry(parent, struct gvt_dma, gfn_node);
sys/dev/pci/drm/i915/gvt/kvmgt.c
269
link = &parent->rb_left;
sys/dev/pci/drm/i915/gvt/kvmgt.c
271
link = &parent->rb_right;
sys/dev/pci/drm/i915/gvt/kvmgt.c
273
rb_link_node(&new->gfn_node, parent, link);
sys/dev/pci/drm/i915/gvt/kvmgt.c
277
parent = NULL;
sys/dev/pci/drm/i915/gvt/kvmgt.c
280
parent = *link;
sys/dev/pci/drm/i915/gvt/kvmgt.c
281
itr = rb_entry(parent, struct gvt_dma, dma_addr_node);
sys/dev/pci/drm/i915/gvt/kvmgt.c
284
link = &parent->rb_left;
sys/dev/pci/drm/i915/gvt/kvmgt.c
286
link = &parent->rb_right;
sys/dev/pci/drm/i915/gvt/kvmgt.c
288
rb_link_node(&new->dma_addr_node, parent, link);
sys/dev/pci/drm/i915/i915_active.c
295
struct rb_node **p, *parent;
sys/dev/pci/drm/i915/i915_active.c
304
parent = NULL;
sys/dev/pci/drm/i915/i915_active.c
307
parent = *p;
sys/dev/pci/drm/i915/i915_active.c
309
node = rb_entry(parent, struct active_node, node);
sys/dev/pci/drm/i915/i915_active.c
314
p = &parent->rb_right;
sys/dev/pci/drm/i915/i915_active.c
316
p = &parent->rb_left;
sys/dev/pci/drm/i915/i915_active.c
335
rb_link_node(&node->node, parent, p);
sys/dev/pci/drm/i915/i915_active.c
960
struct rb_node **p, *parent;
sys/dev/pci/drm/i915/i915_active.c
964
parent = NULL;
sys/dev/pci/drm/i915/i915_active.c
969
parent = *p;
sys/dev/pci/drm/i915/i915_active.c
971
it = rb_entry(parent, struct active_node, node);
sys/dev/pci/drm/i915/i915_active.c
973
p = &parent->rb_right;
sys/dev/pci/drm/i915/i915_active.c
975
p = &parent->rb_left;
sys/dev/pci/drm/i915/i915_active.c
977
rb_link_node(&node->node, parent, p);
sys/dev/pci/drm/i915/i915_debugfs_params.c
212
struct dentry *parent, int *value)
sys/dev/pci/drm/i915/i915_debugfs_params.c
214
return debugfs_create_file_unsafe(name, mode, parent, value,
sys/dev/pci/drm/i915/i915_debugfs_params.c
221
struct dentry *parent, unsigned int *value)
sys/dev/pci/drm/i915/i915_debugfs_params.c
223
return debugfs_create_file_unsafe(name, mode, parent, value,
sys/dev/pci/drm/i915/i915_debugfs_params.c
230
struct dentry *parent, char **value)
sys/dev/pci/drm/i915/i915_debugfs_params.c
232
return debugfs_create_file(name, mode, parent, value,
sys/dev/pci/drm/i915/i915_debugfs_params.c
237
#define _i915_param_create_file(parent, name, mode, valp) \
sys/dev/pci/drm/i915/i915_debugfs_params.c
245
char **: i915_debugfs_create_charp)(name, mode, parent, valp); \
sys/dev/pci/drm/i915/i915_driver.c
1897
intagpsubmatch(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/i915/i915_driver.c
1904
return ((*cf->cf_attach->ca_match)(parent, match, aux));
sys/dev/pci/drm/i915/i915_driver.c
2219
inteldrm_match(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/i915/i915_driver.c
2244
inteldrm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/drm/i915/i915_pmu.c
544
drm_WARN_ON(&i915->drm, event->parent);
sys/dev/pci/drm/i915/i915_pmu.c
649
if (!event->parent) {
sys/dev/pci/drm/i915/i915_scheduler.c
117
rb_link_node(&p->node, rb, parent);
sys/dev/pci/drm/i915/i915_scheduler.c
63
struct rb_node **parent, *rb;
sys/dev/pci/drm/i915/i915_scheduler.c
75
parent = &sched_engine->queue.rb_root.rb_node;
sys/dev/pci/drm/i915/i915_scheduler.c
76
while (*parent) {
sys/dev/pci/drm/i915/i915_scheduler.c
77
rb = *parent;
sys/dev/pci/drm/i915/i915_scheduler.c
80
parent = &rb->rb_left;
sys/dev/pci/drm/i915/i915_scheduler.c
82
parent = &rb->rb_right;
sys/dev/pci/drm/i915/i915_syncmap.c
165
p = p->parent;
sys/dev/pci/drm/i915/i915_syncmap.c
196
__sync_alloc_leaf(struct i915_syncmap *parent, u64 id)
sys/dev/pci/drm/i915/i915_syncmap.c
204
p->parent = parent;
sys/dev/pci/drm/i915/i915_syncmap.c
245
if (!p->parent)
sys/dev/pci/drm/i915/i915_syncmap.c
248
p = p->parent;
sys/dev/pci/drm/i915/i915_syncmap.c
294
if (p->parent) {
sys/dev/pci/drm/i915/i915_syncmap.c
295
idx = __sync_branch_idx(p->parent, id);
sys/dev/pci/drm/i915/i915_syncmap.c
296
__sync_child(p->parent)[idx] = next;
sys/dev/pci/drm/i915/i915_syncmap.c
297
GEM_BUG_ON(!(p->parent->bitmap & BIT(idx)));
sys/dev/pci/drm/i915/i915_syncmap.c
299
next->parent = p->parent;
sys/dev/pci/drm/i915/i915_syncmap.c
304
p->parent = next;
sys/dev/pci/drm/i915/i915_syncmap.c
400
while (p->parent)
sys/dev/pci/drm/i915/i915_syncmap.c
401
p = p->parent;
sys/dev/pci/drm/i915/i915_syncmap.c
77
struct i915_syncmap *parent;
sys/dev/pci/drm/i915/i915_vma_resource.c
85
struct rb_node *parent = NULL;
sys/dev/pci/drm/i915/i915_vma_resource.c
89
parent = *iter;
sys/dev/pci/drm/i915/i915_vma_resource.c
98
rb_link_node(&node->rb, parent, iter);
sys/dev/pci/drm/i915/selftests/i915_syncmap.c
177
if ((*sync)->parent) {
sys/dev/pci/drm/i915/selftests/i915_syncmap.c
304
join = sync->parent;
sys/dev/pci/drm/i915/selftests/i915_syncmap.c
484
sync = sync->parent;
sys/dev/pci/drm/i915/selftests/i915_syncmap.c
485
if (sync->parent) {
sys/dev/pci/drm/i915/selftests/i915_syncmap.c
516
if (leaf->parent != sync) {
sys/dev/pci/drm/i915/selftests/i915_syncmap.c
94
while (p->parent)
sys/dev/pci/drm/i915/selftests/i915_syncmap.c
95
p = p->parent;
sys/dev/pci/drm/include/drm/display/drm_dp_mst_helper.h
139
struct drm_dp_mst_branch *parent;
sys/dev/pci/drm/include/drm/display/drm_dp_mst_helper.h
932
struct drm_dp_mst_port *parent);
sys/dev/pci/drm/include/drm/drm_buddy.h
38
struct drm_buddy_block *parent;
sys/dev/pci/drm/include/drm/drm_drv.h
449
void *__devm_drm_dev_alloc(struct device *parent,
sys/dev/pci/drm/include/drm/drm_drv.h
483
#define devm_drm_dev_alloc(parent, driver, type, member) \
sys/dev/pci/drm/include/drm/drm_drv.h
484
((type *) __devm_drm_dev_alloc(parent, driver, sizeof(type), \
sys/dev/pci/drm/include/drm/drm_drv.h
488
struct device *parent);
sys/dev/pci/drm/include/drm/drm_drv.h
490
void *__drm_dev_alloc(struct device *parent,
sys/dev/pci/drm/include/drm/drm_privacy_screen_driver.h
89
struct device *parent, const struct drm_privacy_screen_ops *ops,
sys/dev/pci/drm/include/drm/gpu_scheduler.h
298
struct dma_fence *parent;
sys/dev/pci/drm/include/drm/ttm/ttm_resource.h
510
struct dentry * parent,
sys/dev/pci/drm/include/linux/backlight.h
64
devm_backlight_device_register(void *dev, const char *name, void *parent,
sys/dev/pci/drm/include/linux/kobject.h
31
struct kobject *parent, const char *fmt, ...)
sys/dev/pci/drm/include/linux/platform_device.h
14
struct device *parent;
sys/dev/pci/drm/include/linux/rbtree.h
102
return parent;
sys/dev/pci/drm/include/linux/rbtree.h
108
struct rb_node *parent = RB_PARENT(node, __entry);
sys/dev/pci/drm/include/linux/rbtree.h
110
if (parent != NULL &&
sys/dev/pci/drm/include/linux/rbtree.h
111
(node == RB_LEFT(parent, __entry)) &&
sys/dev/pci/drm/include/linux/rbtree.h
112
(RB_RIGHT(parent, __entry)))
sys/dev/pci/drm/include/linux/rbtree.h
113
return __rb_deepest_left(RB_RIGHT(parent, __entry));
sys/dev/pci/drm/include/linux/rbtree.h
115
return parent;
sys/dev/pci/drm/include/linux/rbtree.h
126
rb_link_node(struct rb_node *node, struct rb_node *parent,
sys/dev/pci/drm/include/linux/rbtree.h
129
rb_set_parent(node, parent);
sys/dev/pci/drm/include/linux/rbtree.h
161
struct rb_node *parent = NULL;
sys/dev/pci/drm/include/linux/rbtree.h
164
parent = *iter;
sys/dev/pci/drm/include/linux/rbtree.h
166
if (less(node, parent))
sys/dev/pci/drm/include/linux/rbtree.h
172
rb_link_node(node, parent, iter);
sys/dev/pci/drm/include/linux/rbtree.h
181
struct rb_node *parent = NULL;
sys/dev/pci/drm/include/linux/rbtree.h
184
parent = *iter;
sys/dev/pci/drm/include/linux/rbtree.h
186
if (less(node, parent))
sys/dev/pci/drm/include/linux/rbtree.h
192
rb_link_node(node, parent, iter);
sys/dev/pci/drm/include/linux/rbtree.h
94
struct rb_node *parent = NULL;
sys/dev/pci/drm/include/linux/rbtree.h
96
parent = node;
sys/dev/pci/drm/radeon/radeon_drv.c
700
radeondrm_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/radeon/radeon_drv.c
946
radeondrm_attach_kms(struct device *parent, struct device *self, void *aux)
sys/dev/pci/drm/radeon/radeon_i2c.c
1021
i2c->adapter.dev.parent = dev->dev;
sys/dev/pci/drm/scheduler/sched_entity.c
218
WARN_ON(job->s_fence->parent);
sys/dev/pci/drm/scheduler/sched_fence.c
155
dma_fence_put(fence->parent);
sys/dev/pci/drm/scheduler/sched_fence.c
177
struct dma_fence *parent;
sys/dev/pci/drm/scheduler/sched_fence.c
199
parent = smp_load_acquire(&fence->parent);
sys/dev/pci/drm/scheduler/sched_fence.c
200
if (parent)
sys/dev/pci/drm/scheduler/sched_fence.c
201
dma_fence_set_deadline(parent, deadline);
sys/dev/pci/drm/scheduler/sched_fence.c
70
smp_store_release(&s_fence->parent, dma_fence_get(fence));
sys/dev/pci/drm/scheduler/sched_fence.c
77
struct dma_fence *parent)
sys/dev/pci/drm/scheduler/sched_fence.c
85
if (!IS_ERR_OR_NULL(parent))
sys/dev/pci/drm/scheduler/sched_fence.c
86
drm_sched_fence_set_parent(fence, parent);
sys/dev/pci/drm/scheduler/sched_internal.h
33
struct dma_fence *parent);
sys/dev/pci/drm/scheduler/sched_main.c
635
if (s_job->s_fence->parent &&
sys/dev/pci/drm/scheduler/sched_main.c
636
dma_fence_remove_callback(s_job->s_fence->parent,
sys/dev/pci/drm/scheduler/sched_main.c
638
dma_fence_put(s_job->s_fence->parent);
sys/dev/pci/drm/scheduler/sched_main.c
639
s_job->s_fence->parent = NULL;
sys/dev/pci/drm/scheduler/sched_main.c
705
struct dma_fence *fence = s_job->s_fence->parent;
sys/dev/pci/drm/scheduler/sched_main.c
765
s_job->s_fence->parent = NULL;
sys/dev/pci/drm/scheduler/sched_main.c
768
s_job->s_fence->parent = dma_fence_get(fence);
sys/dev/pci/drm/ttm/ttm_resource.c
970
struct dentry * parent,
sys/dev/pci/drm/ttm/ttm_resource.c
974
debugfs_create_file(name, 0444, parent, man, &ttm_resource_manager_fops);
sys/dev/pci/dwiic_pci.c
205
dwiic_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/dwiic_pci.c
211
dwiic_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/eap.c
246
eap_match(struct device *parent, void *match, void *aux)
sys/dev/pci/eap.c
411
eap_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ehci_pci.c
100
ehci_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ehci_pci.c
87
ehci_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/emuxki.c
402
emuxki_match(struct device *parent, void *match, void *aux)
sys/dev/pci/emuxki.c
409
emuxki_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/envy.c
1692
envymatch(struct device *parent, void *match, void *aux)
sys/dev/pci/envy.c
1699
envyattach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/esa.c
1030
sc->voice[i].parent = (struct device *)sc;
sys/dev/pci/esa.c
1443
struct esa_softc *sc = (struct esa_softc *)vc->parent;
sys/dev/pci/esa.c
1456
struct esa_softc *sc = (struct esa_softc *)vc->parent;
sys/dev/pci/esa.c
255
struct esa_softc *sc = (struct esa_softc *)vc->parent;
sys/dev/pci/esa.c
330
struct esa_softc *sc = (struct esa_softc *)vc->parent;
sys/dev/pci/esa.c
370
struct esa_softc *sc = (struct esa_softc *)vc->parent;
sys/dev/pci/esa.c
409
struct esa_softc *sc = (struct esa_softc *)vc->parent;
sys/dev/pci/esa.c
433
struct esa_softc *sc = (struct esa_softc *)vc->parent;
sys/dev/pci/esa.c
450
struct esa_softc *sc = (struct esa_softc *)vc->parent;
sys/dev/pci/esa.c
459
struct esa_softc *sc = (struct esa_softc *)vc->parent;
sys/dev/pci/esa.c
468
struct esa_softc *sc = (struct esa_softc *)vc->parent;
sys/dev/pci/esa.c
492
struct esa_softc *sc = (struct esa_softc *)vc->parent;
sys/dev/pci/esa.c
624
struct esa_softc *sc = (struct esa_softc *)vc->parent;
sys/dev/pci/esa.c
910
esa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/esavar.h
91
struct device *parent; /* pointer to our parent */
sys/dev/pci/eso.c
173
eso_match(struct device *parent, void *match, void *aux)
sys/dev/pci/eso.c
185
eso_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/fms.c
122
fms_match(struct device *parent, void *match, void *aux)
sys/dev/pci/fms.c
133
fms_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/gcu.c
49
gcu_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/gcu.c
56
gcu_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/gdt_pci.c
148
gdt_pci_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/gdt_pci.c
166
gdt_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/glxpcib.c
231
void pcibattach(struct device *parent, struct device *self, void *aux);
sys/dev/pci/glxpcib.c
259
glxpcib_match(struct device *parent, void *match, void *aux)
sys/dev/pci/glxpcib.c
271
glxpcib_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/glxpcib.c
409
pcibattach(parent, self, aux);
sys/dev/pci/glxpcib.c
724
glxpcib_search(struct device *parent, void *gcf, void *args)
sys/dev/pci/glxpcib.c
726
struct glxpcib_softc *sc = (struct glxpcib_softc *)parent;
sys/dev/pci/glxpcib.c
745
if (cf->cf_attach->ca_match(parent, cf, &gaa) == 0)
sys/dev/pci/glxpcib.c
748
config_attach(parent, cf, &gaa, glxpcib_print);
sys/dev/pci/i82365_pci.c
85
pcic_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/i82365_pci.c
96
pcic_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ichiic.c
150
ichiic_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ichiic.c
157
ichiic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ichwdt.c
88
ichwdt_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ichwdt.c
95
ichwdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_acx_pci.c
89
acx_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_acx_pci.c
96
acx_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_age.c
132
age_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_alc.c
1196
alc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_ale.c
360
ale_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_an_pci.c
105
an_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_an_pci.c
98
an_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_aq_pci.c
1264
aq_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_ath_pci.c
109
ath_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_ath_pci.c
92
ath_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_athn_pci.c
106
athn_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_athn_pci.c
99
athn_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_atw_pci.c
127
atw_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_atw_pci.c
93
atw_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_bce.c
176
bce_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_bce.c
183
bce_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_bge.c
2580
bge_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_bge.c
2586
bge_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_bnx.c
412
bnx_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_bnx.c
642
bnx_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_bnxt.c
514
bnxt_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_bnxt.c
520
bnxt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_bwfm_pci.c
350
bwfm_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_bwfm_pci.c
357
bwfm_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_bwi_pci.c
131
bwi_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_bwi_pci.c
90
bwi_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_cas.c
151
cas_match(struct device *parent, void *cf, void *aux)
sys/dev/pci/if_cas.c
296
cas_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_dc_pci.c
120
dc_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_dc_pci.c
157
dc_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_de.c
107
(sc)->tulip_pci_busno = parent; \
sys/dev/pci/if_de.c
118
int tulip_probe(struct device *parent, void *match, void *aux);
sys/dev/pci/if_de.c
119
void tulip_attach(struct device * const parent, struct device * const self, void * const aux);
sys/dev/pci/if_de.c
4328
tulip_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_de.c
4344
tulip_attach(struct device * const parent, struct device * const self, void * const aux)
sys/dev/pci/if_dwqe_pci.c
61
dwqe_pci_match(struct device *parent, void *cfdata, void *aux)
sys/dev/pci/if_dwqe_pci.c
68
dwqe_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_em.c
358
em_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_em.c
412
em_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_ep_pci.c
79
ep_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ep_pci.c
86
ep_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_epic_pci.c
117
epic_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_epic_pci.c
124
epic_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_et.c
173
et_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_fxp_pci.c
130
fxp_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_fxp_pci.c
137
fxp_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_gem_pci.c
187
gem_attach_pci(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_gem_pci.c
97
gem_match_pci(struct device *parent, void *cf, void *aux)
sys/dev/pci/if_hme_pci.c
190
hmeattach_pci(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_hme_pci.c
76
hmematch_pci(struct device *parent, void *vcf, void *aux)
sys/dev/pci/if_iavf.c
827
iavf_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_iavf.c
934
iavf_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_ice.c
10344
struct ice_sched_node *parent;
sys/dev/pci/if_ice.c
10371
parent = ice_sched_get_free_qparent(pi, vsi_handle, tc,
sys/dev/pci/if_ice.c
10373
if (!parent) {
sys/dev/pci/if_ice.c
10378
buf->parent_teid = parent->info.node_teid;
sys/dev/pci/if_ice.c
10379
node.parent_teid = parent->info.node_teid;
sys/dev/pci/if_ice.c
153
ice_match(struct device *parent, ice_match_t match __unused, void *aux)
sys/dev/pci/if_ice.c
21805
struct ice_sched_node *parent, uint8_t layer, uint16_t num_nodes,
sys/dev/pci/if_ice.c
21822
buf->hdr.parent_teid = parent->info.node_teid;
sys/dev/pci/if_ice.c
21825
buf->generic[i].parent_teid = parent->info.node_teid;
sys/dev/pci/if_ice.c
21869
new_node = ice_sched_find_node_by_teid(parent, teid);
sys/dev/pci/if_ice.c
21916
struct ice_sched_node *parent, uint8_t layer,
sys/dev/pci/if_ice.c
21927
if (!parent || layer < pi->hw->sw_entry_point_layer)
sys/dev/pci/if_ice.c
21931
max_child_nodes = pi->hw->max_children[parent->tx_sched_layer];
sys/dev/pci/if_ice.c
21934
if ((parent->num_children + num_nodes) > max_child_nodes) {
sys/dev/pci/if_ice.c
21936
if (parent == tc_node)
sys/dev/pci/if_ice.c
21941
return ice_sched_add_elems(pi, tc_node, parent, layer, num_nodes,
sys/dev/pci/if_ice.c
21960
struct ice_sched_node *parent, uint8_t layer,
sys/dev/pci/if_ice.c
21973
status = ice_sched_add_nodes_to_hw_layer(pi, tc_node, parent,
sys/dev/pci/if_ice.c
21993
max_child_nodes = pi->hw->max_children[parent->tx_sched_layer];
sys/dev/pci/if_ice.c
21995
if (parent->num_children < max_child_nodes) {
sys/dev/pci/if_ice.c
21996
new_num_nodes = max_child_nodes - parent->num_children;
sys/dev/pci/if_ice.c
21999
parent = parent->sibling;
sys/dev/pci/if_ice.c
22029
struct ice_sched_node *parent = tc_node;
sys/dev/pci/if_ice.c
22041
status = ice_sched_add_nodes_to_layer(pi, tc_node, parent,
sys/dev/pci/if_ice.c
22052
parent = ice_sched_find_node_by_teid(tc_node,
sys/dev/pci/if_ice.c
22055
parent = parent->children[0];
sys/dev/pci/if_ice.c
22057
if (!parent)
sys/dev/pci/if_ice.c
22061
parent->vsi_handle = vsi_handle;
sys/dev/pci/if_ice.c
22183
struct ice_sched_node *parent, *node;
sys/dev/pci/if_ice.c
22191
parent = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
sys/dev/pci/if_ice.c
22195
if (!parent)
sys/dev/pci/if_ice.c
22198
status = ice_sched_add_nodes_to_layer(pi, tc_node, parent, i,
sys/dev/pci/if_ice.c
22209
parent = ice_sched_find_node_by_teid(tc_node,
sys/dev/pci/if_ice.c
22211
node = parent;
sys/dev/pci/if_ice.c
22217
parent = parent->children[0];
sys/dev/pci/if_ice.c
30754
ice_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_ice.c
5859
struct ice_sched_node *parent;
sys/dev/pci/if_ice.c
5870
parent = ice_sched_find_node_by_teid(pi->root,
sys/dev/pci/if_ice.c
5872
if (!parent) {
sys/dev/pci/if_ice.c
5903
node->parent = parent;
sys/dev/pci/if_ice.c
5905
parent->children[parent->num_children++] = node;
sys/dev/pci/if_ice.c
5941
ice_sched_remove_elems(struct ice_hw *hw, struct ice_sched_node *parent,
sys/dev/pci/if_ice.c
5954
buf->hdr.parent_teid = parent->info.node_teid;
sys/dev/pci/if_ice.c
5979
struct ice_sched_node *parent, uint8_t layer)
sys/dev/pci/if_ice.c
5981
return pi->sib_head[parent->tc_num][layer];
sys/dev/pci/if_ice.c
5996
struct ice_sched_node *parent;
sys/dev/pci/if_ice.c
6014
ice_sched_remove_elems(hw, node->parent, 1, &teid);
sys/dev/pci/if_ice.c
6016
parent = node->parent;
sys/dev/pci/if_ice.c
6018
if (parent) {
sys/dev/pci/if_ice.c
6022
for (i = 0; i < parent->num_children; i++)
sys/dev/pci/if_ice.c
6023
if (parent->children[i] == node) {
sys/dev/pci/if_ice.c
6024
for (j = i + 1; j < parent->num_children; j++)
sys/dev/pci/if_ice.c
6025
parent->children[j - 1] =
sys/dev/pci/if_ice.c
6026
parent->children[j];
sys/dev/pci/if_ice.c
6027
parent->num_children--;
sys/dev/pci/if_ice.c
6075
status = ice_sched_remove_elems(pi->hw, node->parent, 1, &teid);
sys/dev/pci/if_icevar.h
1166
struct ice_sched_node *parent;
sys/dev/pci/if_igc.c
178
igc_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_igc.c
194
igc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_ipw.c
138
ipw_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ipw.c
153
ipw_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_iwi.c
143
iwi_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_iwi.c
153
iwi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_iwm.c
11633
iwm_match(struct device *parent, iwm_match_t match __unused, void *aux)
sys/dev/pci/if_iwm.c
11709
iwm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_iwn.c
322
iwn_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_iwn.c
329
iwn_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_iwx.c
11552
iwx_match(struct device *parent, iwx_match_t match __unused, void *aux)
sys/dev/pci/if_iwx.c
12169
iwx_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_ix.c
224
ixgbe_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ix.c
243
ixgbe_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_ixgb.c
148
ixgb_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ixgb.c
166
ixgb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_ixl.c
1630
ixl_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ixl.c
1636
ixl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_ixv.c
151
ixv_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ixv.c
195
ixv_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_jme.c
532
jme_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_lge.c
368
lge_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_lge.c
379
lge_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_lii.c
193
lii_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_lii.c
200
lii_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_malo_pci.c
79
malo_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_malo_pci.c
86
malo_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_mcx.c
2733
mcx_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_mcx.c
2739
mcx_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_msk.c
1205
mskc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_msk.c
738
mskc_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_msk.c
919
msk_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_msk.c
961
msk_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_msk.c
964
struct sk_softc *sc = (struct sk_softc *)parent;
sys/dev/pci/if_mtd_pci.c
68
mtd_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_mtd_pci.c
76
mtd_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_mwx.c
1170
mwx_match(struct device *parent, void *match __unused, void *aux)
sys/dev/pci/if_mwx.c
1178
mwx_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_myx.c
257
myx_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_myx.c
263
myx_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_ne_pci.c
151
ne_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ne_pci.c
162
ne_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_nep.c
523
nep_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_nep.c
534
nep_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_nfe.c
181
nfe_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_ngbe.c
226
ngbe_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ngbe.c
233
ngbe_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_nge.c
651
nge_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_nge.c
667
nge_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_nxe.c
853
nxe_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_nxe.c
864
nxe_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_oce.c
510
oce_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_oce.c
516
oce_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_pcn.c
537
pcn_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_pcn.c
557
pcn_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_pgt_pci.c
75
pgt_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_pgt_pci.c
82
pgt_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_qwx_pci.c
528
qwx_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_qwx_pci.c
752
qwx_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_qwz_pci.c
506
qwz_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_qwz_pci.c
677
qwz_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_ral_pci.c
144
ral_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ral_pci.c
151
ral_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_re_pci.c
119
re_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_re_pci.c
92
re_pci_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_rge.c
170
rge_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_rge.c
177
rge_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_rl_pci.c
101
rl_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_rl_pci.c
115
rl_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_rtw_pci.c
105
rtw_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_rtw_pci.c
139
rtw_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_rtwn.c
294
rtwn_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_rtwn.c
301
rtwn_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_se.c
509
se_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_se.c
520
se_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_sf_pci.c
79
sf_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_sf_pci.c
86
sf_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_sis.c
952
sis_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_sis.c
963
sis_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_sk.c
1158
skc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_sk.c
745
skc_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_sk.c
824
sk_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_sk.c
847
sk_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_sk.c
850
struct sk_softc *sc = (struct sk_softc *)parent;
sys/dev/pci/if_ste.c
800
ste_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ste.c
811
ste_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_stge.c
143
stge_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_stge.c
150
stge_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_tht.c
665
thtc_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_tht.c
676
thtc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_tht.c
739
tht_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_tht.c
745
tht_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_tht.c
747
struct thtc_softc *csc = (struct thtc_softc *)parent;
sys/dev/pci/if_ti_pci.c
109
ti_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ti_pci.c
115
ti_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_tl.c
1772
tl_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_tl.c
1813
tl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_txp.c
137
txp_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_txp.c
232
txp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_vge.c
708
vge_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_vic.c
350
vic_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_vic.c
377
vic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_vmx.c
249
vmxnet3_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_vmx.c
255
vmxnet3_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_vr.c
454
vr_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_vr.c
527
vr_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_vte.c
270
vte_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_wb.c
655
wb_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_wb.c
666
wb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_wi_pci.c
133
wi_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_wi_pci.c
139
wi_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_wpi.c
165
wpi_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_wpi.c
172
wpi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_xge.c
356
xge_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_xge.c
363
xge_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/if_xl_pci.c
123
xl_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_xl_pci.c
130
xl_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/iha_pci.c
63
iha_pci_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/iha_pci.c
85
iha_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/iosf_pci.c
86
iosf_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/iosf_pci.c
99
iosf_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ips.c
568
ips_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ips.c
575
ips_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ispi_pci.c
51
ispi_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ispi_pci.c
57
ispi_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/itherm.c
115
itherm_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/itherm.c
122
itherm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/jmb.c
100
jmb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/jmb.c
91
jmb_match(struct device *parent, void *match, void *aux)
sys/dev/pci/kate.c
135
kate_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/kate.c
93
kate_match(struct device *parent, void *match, void *aux)
sys/dev/pci/km.c
81
km_match(struct device *parent, void *match, void *aux)
sys/dev/pci/km.c
89
km_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ksmn.c
114
ksmn_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ksmn.c
122
ksmn_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/maestro.c
578
maestro_match(struct device *parent, void *match, void *aux)
sys/dev/pci/maestro.c
589
maestro_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/mbg.c
167
mbg_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/mbg.c
174
mbg_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/mfi_pci.c
91
mfi_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/mfi_pci.c
97
mfi_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/mfii.c
633
mfii_match(struct device *parent, void *match, void *aux)
sys/dev/pci/mfii.c
639
mfii_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/mmuagp.c
133
mmuagp_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/mmuagp.c
230
mmuagp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/mpi_pci.c
89
mpi_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/mpi_pci.c
95
mpi_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/mpii.c
451
mpii_match(struct device *parent, void *match, void *aux)
sys/dev/pci/mpii.c
457
mpii_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/neo.c
526
neo_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/neo.c
605
neo_match(struct device *parent, void *match, void *aux)
sys/dev/pci/nhi.c
193
nhi_match(struct device *parent, void *match, void *aux)
sys/dev/pci/nhi.c
199
nhi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/nviic.c
132
nviic_match(struct device *parent, void *match, void *aux)
sys/dev/pci/nviic.c
139
nviic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/nvme_pci.c
59
nvme_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/nvme_pci.c
77
nvme_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ohci_pci.c
75
ohci_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ohci_pci.c
88
ohci_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/pccbb.c
219
pcicbbmatch(struct device *parent, void *match, void *aux)
sys/dev/pci/pccbb.c
357
pccbbattach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/pccbb.c
367
pccbb_attach_hook(parent, self, pa);
sys/dev/pci/pchtemp.c
74
pchtemp_match(struct device *parent, void *match, void *aux)
sys/dev/pci/pchtemp.c
80
pchtemp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/pci.c
143
pcimatch(struct device *parent, void *match, void *aux)
sys/dev/pci/pci.c
168
pciattach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/pci.c
173
pci_attach_hook(parent, self, pba);
sys/dev/pci/pci.c
397
pcisubmatch(struct device *parent, void *match, void *aux)
sys/dev/pci/pci.c
409
return ((*cf->cf_attach->ca_match)(parent, match, aux));
sys/dev/pci/pciide.c
1450
pciide_match(struct device *parent, void *match, void *aux)
sys/dev/pci/pciide.c
1501
pciide_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/pcscp.c
134
pcscp_match(struct device *parent, void *match, void *aux)
sys/dev/pci/pcscp.c
152
pcscp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/piixpm.c
117
piixpm_match(struct device *parent, void *match, void *aux)
sys/dev/pci/piixpm.c
124
piixpm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ppb.c
130
ppbmatch(struct device *parent, void *match, void *aux)
sys/dev/pci/ppb.c
153
ppbattach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/puc.c
150
puc_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/puc.c
319
puc_submatch(struct device *parent, void *vcf, void *aux)
sys/dev/pci/puc.c
326
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/dev/pci/puc.c
98
puc_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/pwdog.c
58
pwdog_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/pwdog.c
65
pwdog_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/qla_pci.c
76
qla_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/qla_pci.c
82
qla_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/qle.c
331
qle_match(struct device *parent, void *match, void *aux)
sys/dev/pci/qle.c
337
qle_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/qlw_pci.c
79
qlw_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/qlw_pci.c
96
qlw_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/rtsx_pci.c
47
rtsx_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/rtsx_pci.c
75
rtsx_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/sdhc_pci.c
106
sdhc_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/sdhc_pci.c
78
sdhc_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/sili_pci.c
92
sili_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/sili_pci.c
98
sili_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/siop_pci.c
57
siop_pci_match( struct device *parent, void *match, void *aux)
sys/dev/pci/siop_pci.c
70
siop_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/sti_pci.c
68
sti_pci_match(struct device *parent, void *cf, void *aux)
sys/dev/pci/sti_pci.c
77
sti_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/sv.c
221
sv_match(struct device *parent, void *match, void *aux)
sys/dev/pci/sv.c
233
sv_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/tcpcib.c
115
void pcibattach(struct device *parent, struct device *self, void *aux);
sys/dev/pci/tcpcib.c
173
tcpcib_match(struct device *parent, void *match, void *aux)
sys/dev/pci/tcpcib.c
183
tcpcib_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/tcpcib.c
265
pcibattach(parent, self, aux);
sys/dev/pci/tga.c
187
tgamatch(struct device *parent, struct cfdata *match, void *aux)
sys/dev/pci/tga.c
401
tgaattach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/trm_pci.c
108
trm_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/trm_pci.c
87
trm_pci_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/twe_pci.c
60
twe_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/twe_pci.c
67
twe_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/ufshci_pci.c
54
ufshci_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ufshci_pci.c
67
ufshci_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/uhci_pci.c
105
uhci_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/uhci_pci.c
70
uhci_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/vga_pci.c
162
vga_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/vga_pci.c
189
vga_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/viapm.c
296
viapm_match(struct device *parent, void *match, void *aux)
sys/dev/pci/viapm.c
302
viapm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/virtio_pci.c
349
virtio_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/virtio_pci.c
591
virtio_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/vmwpvs.c
382
vmwpvs_match(struct device *parent, void *match, void *aux)
sys/dev/pci/vmwpvs.c
394
vmwpvs_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/wdt.c
102
wdt_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/wdt.c
109
wdt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/xhci_pci.c
124
xhci_pci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/xhci_pci.c
76
xhci_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/xspd.c
124
xspd_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/xspd.c
58
xspd_match(struct device *parent, void *match, void *aux)
sys/dev/pci/xspd.c
65
xspd_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pci/yds.c
517
yds_match(struct device *parent, void *match, void *aux)
sys/dev/pci/yds.c
642
yds_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pckbc/pckbd.c
343
pckbdprobe(struct device *parent, void *match, void *aux)
sys/dev/pckbc/pckbd.c
413
struct cfdata *cf = parent->dv_cfdata;
sys/dev/pckbc/pckbd.c
432
pckbdattach(struct device *parent, struct device *self, void *aux)
sys/dev/pckbc/pms.c
711
pmsprobe(struct device *parent, void *match, void *aux)
sys/dev/pckbc/pms.c
738
pmsattach(struct device *parent, struct device *self, void *aux)
sys/dev/pcmcia/aic_pcmcia.c
83
aic_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/aic_pcmcia.c
97
aic_pcmcia_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pcmcia/cfxga.c
262
cfxga_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/cfxga.c
332
cfxga_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pcmcia/com_pcmcia.c
144
com_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/com_pcmcia.c
220
com_pcmcia_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pcmcia/if_an_pcmcia.c
71
an_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/if_an_pcmcia.c
92
an_pcmcia_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pcmcia/if_ep_pcmcia.c
156
ep_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/if_ep_pcmcia.c
237
ep_pcmcia_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pcmcia/if_ep_pcmcia.c
318
if (pcmcia_scan_cis(parent, ep_pcmcia_get_enaddr, myla))
sys/dev/pcmcia/if_malo.c
141
malo_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/if_malo.c
153
malo_pcmcia_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pcmcia/if_ne_pcmcia.c
589
ne_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/if_ne_pcmcia.c
603
ne_pcmcia_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pcmcia/if_sm_pcmcia.c
102
sm_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/if_sm_pcmcia.c
116
sm_pcmcia_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pcmcia/if_sm_pcmcia.c
166
if (sm_pcmcia_funce_enaddr(parent, myla))
sys/dev/pcmcia/if_sm_pcmcia.c
282
sm_pcmcia_funce_enaddr(struct device *parent, u_int8_t *myla)
sys/dev/pcmcia/if_sm_pcmcia.c
285
return (pcmcia_scan_cis(parent, sm_pcmcia_lannid_ciscallback, myla));
sys/dev/pcmcia/if_wi_pcmcia.c
359
wi_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/if_wi_pcmcia.c
369
wi_pcmcia_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pcmcia/if_xe.c
183
xe_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/if_xe.c
206
xe_pcmcia_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pcmcia/if_xe.c
225
sc->sc_flags = xe_pcmcia_interpret_manfid(parent);
sys/dev/pcmcia/if_xe.c
301
sc->sc_flags = xe_pcmcia_interpret_manfid(parent);
sys/dev/pcmcia/if_xe.c
342
if (xe_pcmcia_funce_enaddr(parent, myla))
sys/dev/pcmcia/if_xe.c
483
xe_pcmcia_funce_enaddr(struct device *parent, u_int8_t *myla)
sys/dev/pcmcia/if_xe.c
486
return (pcmcia_scan_cis(parent, xe_pcmcia_lan_nid_ciscallback, myla));
sys/dev/pcmcia/if_xe.c
534
xe_pcmcia_interpret_manfid(struct device *parent)
sys/dev/pcmcia/if_xe.c
537
struct pcmcia_softc *psc = (struct pcmcia_softc *)parent;
sys/dev/pcmcia/if_xe.c
540
if (!pcmcia_scan_cis(parent, xe_pcmcia_manfid_ciscallback, &flags))
sys/dev/pcmcia/pcmcia.c
102
pcmcia_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pcmcia/pcmcia.c
294
pcmcia_submatch(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/pcmcia.c
304
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/dev/pcmcia/pcmcia.c
89
pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/wdc_pcmcia.c
198
wdc_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/wdc_pcmcia.c
222
wdc_pcmcia_attach(struct device *parent, struct device *self, void *aux)
sys/dev/puc/com_puc.c
64
com_puc_match(struct device *parent, void *match, void *aux)
sys/dev/puc/com_puc.c
75
com_puc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/puc/lpt_puc.c
59
lpt_puc_probe(struct device *parent, void *match, void *aux)
sys/dev/puc/lpt_puc.c
73
lpt_puc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/hvs.c
251
hvs_match(struct device *parent, void *match, void *aux)
sys/dev/pv/hvs.c
263
hvs_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/hvs.c
270
sc->sc_hvsc = (struct hv_softc *)parent;
sys/dev/pv/hyperv.c
264
hv_match(struct device *parent, void *match, void *aux)
sys/dev/pv/hyperv.c
276
hv_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/if_hvn.c
215
hvn_match(struct device *parent, void *match, void *aux)
sys/dev/pv/if_hvn.c
226
hvn_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/if_hvn.c
232
sc->sc_hvsc = (struct hv_softc *)parent;
sys/dev/pv/if_vio.c
380
vio_match(struct device *parent, void *match, void *aux)
sys/dev/pv/if_vio.c
626
vio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/if_vio.c
629
struct virtio_softc *vsc = (struct virtio_softc *)parent;
sys/dev/pv/if_vio.c
638
parent->dv_xname);
sys/dev/pv/if_xnf.c
229
xnf_match(struct device *parent, void *match, void *aux)
sys/dev/pv/if_xnf.c
240
xnf_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/if_xnf.c
246
sc->sc_parent = parent;
sys/dev/pv/if_xnf.c
318
xen_unplug_emulated(parent, XEN_UNPLUG_NIC);
sys/dev/pv/pvbus.c
120
pvbus_match(struct device *parent, void *match, void *aux)
sys/dev/pv/pvbus.c
127
pvbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/pvbus.c
220
pvbus_search(struct device *parent, void *arg, void *aux)
sys/dev/pv/pvbus.c
230
if (cf->cf_attach->ca_match(parent, cf, &pva) > 0)
sys/dev/pv/pvbus.c
231
config_attach(parent, cf, &pva, pvbus_print);
sys/dev/pv/pvclock.c
143
pvclock_match(struct device *parent, void *match, void *aux)
sys/dev/pv/pvclock.c
181
pvclock_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/vioblk.c
157
vioblk_match(struct device *parent, void *match, void *aux)
sys/dev/pv/vioblk.c
169
vioblk_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/vioblk.c
172
struct virtio_softc *vsc = (struct virtio_softc *)parent;
sys/dev/pv/viocon.c
163
viocon_match(struct device *parent, void *match, void *aux)
sys/dev/pv/viocon.c
172
viocon_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/viocon.c
175
struct virtio_softc *vsc = (struct virtio_softc *)parent;
sys/dev/pv/viogpu.c
138
viogpu_match(struct device *parent, void *match, void *aux)
sys/dev/pv/viogpu.c
149
viogpu_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/viogpu.c
152
struct virtio_softc *vsc = (struct virtio_softc *)parent;
sys/dev/pv/viogpu.c
160
printf(": child already attached for %s\n", parent->dv_xname);
sys/dev/pv/viomb.c
125
viomb_match(struct device *parent, void *match, void *aux)
sys/dev/pv/viomb.c
134
viomb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/viomb.c
137
struct virtio_softc *vsc = (struct virtio_softc *)parent;
sys/dev/pv/viomb.c
143
parent->dv_xname);
sys/dev/pv/viornd.c
73
viornd_match(struct device *parent, void *match, void *aux)
sys/dev/pv/viornd.c
82
viornd_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/viornd.c
85
struct virtio_softc *vsc = (struct virtio_softc *)parent;
sys/dev/pv/vioscsi.c
104
vioscsi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/vioscsi.c
106
struct virtio_softc *vsc = (struct virtio_softc *)parent;
sys/dev/pv/vioscsi.c
94
vioscsi_match(struct device *parent, void *self, void *aux)
sys/dev/pv/vmmci.c
79
vmmci_match(struct device *parent, void *match, void *aux)
sys/dev/pv/vmmci.c
88
vmmci_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/vmmci.c
91
struct virtio_softc *vsc = (struct virtio_softc *)parent;
sys/dev/pv/vmt.c
417
vmt_match(struct device *parent, void *match, void *aux)
sys/dev/pv/vmt.c
431
vmt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/xbf.c
253
xbf_match(struct device *parent, void *match, void *aux)
sys/dev/pv/xbf.c
264
xbf_attach(struct device *parent, struct device *self, void *aux)
sys/dev/pv/xbf.c
270
sc->sc_parent = parent;
sys/dev/pv/xbf.c
311
xen_unplug_emulated(parent, XEN_UNPLUG_IDE | XEN_UNPLUG_IDESEC);
sys/dev/pv/xen.c
130
xen_match(struct device *parent, void *match, void *aux)
sys/dev/pv/xen.c
142
xen_attach(struct device *parent, struct device *self, void *aux)
sys/dev/radio.c
61
radioprobe(struct device *parent, void *match, void *aux)
sys/dev/radio.c
68
radioattach(struct device *parent, struct device *self, void *aux)
sys/dev/radio.c
76
sc->sc_dev = parent;
sys/dev/rd.c
120
rd_match(struct device *parent, void *match, void *aux)
sys/dev/rd.c
126
rd_attach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/agten.c
133
agtenmatch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/agten.c
144
agtenattach(struct device *parent, struct device *self, void *args)
sys/dev/sbus/apio.c
194
lpt_apio_match(struct device *parent, void *match, void *aux)
sys/dev/sbus/apio.c
200
lpt_apio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/apio.c
215
apio_intr_enable(parent, aaa->aaa_inten);
sys/dev/sbus/apio.c
89
apio_match(struct device *parent, void *match, void *aux)
sys/dev/sbus/apio.c
99
apio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/asio.c
106
asio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/asio.c
197
com_asio_match(struct device *parent, void *match, void *aux)
sys/dev/sbus/asio.c
203
com_asio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/asio.c
221
asio_intr_enable(parent, aaa->aaa_inten);
sys/dev/sbus/asio.c
96
asio_match(struct device *parent, void *match, void *aux)
sys/dev/sbus/be.c
188
bematch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/be.c
197
beattach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/be.c
200
struct qec_softc *qec = (struct qec_softc *)parent;
sys/dev/sbus/bpp.c
112
bppmatch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/bpp.c
120
bppattach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/bpp.c
158
sbusburst = ((struct sbus_softc *)parent)->sc_burst;
sys/dev/sbus/bwtwo.c
129
bwtwomatch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/bwtwo.c
138
bwtwoattach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/cgsix.c
103
cgsixattach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/cgsix.c
94
cgsixmatch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/cgthree.c
187
cgthreematch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/cgthree.c
196
cgthreeattach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/cgtwelve.c
123
cgtwelvematch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/cgtwelve.c
138
cgtwelveattach(struct device *parent, struct device *self, void *args)
sys/dev/sbus/cs4231.c
179
cs4231_match(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/cs4231.c
187
cs4231_attach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/cs4231.c
227
sbusburst = ((struct sbus_softc *)parent)->sc_burst;
sys/dev/sbus/dma_sbus.c
130
dmamatch_sbus(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/dma_sbus.c
140
dmaattach_sbus(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/dma_sbus.c
179
sbusburst = ((struct sbus_softc *)parent)->sc_burst;
sys/dev/sbus/dma_sbus.c
227
sbus_setup_attach_args((struct sbus_softc *)parent,
sys/dev/sbus/dma_sbus.c
255
for (t = t->parent; t; t = t->parent) {
sys/dev/sbus/dma_sbus.c
277
sbt->parent = sc->sc_lsi64854.sc_bustag;
sys/dev/sbus/dma_sbus.c
278
sbt->asi = sbt->parent->asi;
sys/dev/sbus/dma_sbus.c
279
sbt->sasi = sbt->parent->sasi;
sys/dev/sbus/esp_sbus.c
130
espmatch_sbus(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/esp_sbus.c
145
espattach_sbus(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/esp_sbus.c
214
sbusburst = ((struct sbus_softc *)parent)->sc_burst;
sys/dev/sbus/esp_sbus.c
328
espattach_dma(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/esp_sbus.c
344
esc->sc_dma = (struct lsi64854_softc *)parent;
sys/dev/sbus/if_gem_sbus.c
76
gemmatch_sbus(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/if_gem_sbus.c
84
gemattach_sbus(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/if_hme_sbus.c
156
sbusburst = ((struct sbus_softc *)parent)->sc_burst;
sys/dev/sbus/if_hme_sbus.c
73
hmematch_sbus(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/if_hme_sbus.c
84
hmeattach_sbus(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/if_le.c
134
lematch_sbus(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/if_le.c
143
leattach_sbus(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/if_le_lebuffer.c
137
lematch_lebuffer(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/if_le_lebuffer.c
147
leattach_lebuffer(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/if_le_lebuffer.c
152
struct lebuf_softc *lebuf = (struct lebuf_softc *)parent;
sys/dev/sbus/if_le_ledma.c
298
lematch_ledma(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/if_le_ledma.c
308
leattach_ledma(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/if_le_ledma.c
312
struct lsi64854_softc *lsi = (struct lsi64854_softc *)parent;
sys/dev/sbus/if_ti_sbus.c
52
ti_sbus_match(struct device *parent, void *match, void *aux)
sys/dev/sbus/if_ti_sbus.c
60
ti_sbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/lebuffer.c
113
sbusburst = ((struct sbus_softc *)parent)->sc_burst;
sys/dev/sbus/lebuffer.c
135
sbt->parent = sc->sc_bustag;
sys/dev/sbus/lebuffer.c
136
sbt->asi = sbt->parent->asi;
sys/dev/sbus/lebuffer.c
137
sbt->sasi = sbt->parent->sasi;
sys/dev/sbus/lebuffer.c
142
sbus_setup_attach_args((struct sbus_softc *)parent,
sys/dev/sbus/lebuffer.c
69
lebufmatch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/lebuffer.c
81
lebufattach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/magma.c
1350
mbpp_match(struct device *parent, void *vcf, void *args)
sys/dev/sbus/magma.c
1352
struct magma_softc *sc = (struct magma_softc *)parent;
sys/dev/sbus/magma.c
1359
mbpp_attach(struct device *parent, struct device *dev, void *args)
sys/dev/sbus/magma.c
1361
struct magma_softc *sc = (struct magma_softc *)parent;
sys/dev/sbus/magma.c
268
magma_match(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/magma.c
285
magma_attach(struct device *parent, struct device *dev, void *aux)
sys/dev/sbus/magma.c
776
mtty_match(struct device *parent, void *vcf, void *args)
sys/dev/sbus/magma.c
778
struct magma_softc *sc = (struct magma_softc *)parent;
sys/dev/sbus/magma.c
785
mtty_attach(struct device *parent, struct device *dev, void *args)
sys/dev/sbus/magma.c
787
struct magma_softc *sc = (struct magma_softc *)parent;
sys/dev/sbus/mgx.c
180
mgxmatch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/mgx.c
197
mgxattach(struct device *parent, struct device *self, void *args)
sys/dev/sbus/qe.c
160
qematch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/qe.c
169
qeattach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/qe.c
172
struct qec_softc *qec = (struct qec_softc *)parent;
sys/dev/sbus/qec.c
104
qecattach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/qec.c
154
sbusburst = ((struct sbus_softc *)parent)->sc_burst;
sys/dev/sbus/qec.c
188
sbt->parent = sc->sc_bustag;
sys/dev/sbus/qec.c
189
sbt->asi = sbt->parent->asi;
sys/dev/sbus/qec.c
190
sbt->sasi = sbt->parent->sasi;
sys/dev/sbus/qec.c
213
sbus_setup_attach_args((struct sbus_softc *)parent,
sys/dev/sbus/qec.c
229
for (t = t->parent; t; t = t->parent) {
sys/dev/sbus/qec.c
280
for (t = t->parent; t; t = t->parent) {
sys/dev/sbus/qec.c
92
qecmatch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/qla_sbus.c
51
qla_sbus_match(struct device *parent, void *cf, void *aux)
sys/dev/sbus/qla_sbus.c
63
qla_sbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/qlw_sbus.c
49
qlw_sbus_match(struct device *parent, void *cf, void *aux)
sys/dev/sbus/qlw_sbus.c
63
qlw_sbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/qlw_sbus.c
97
sbusburst = ((struct sbus_softc *)parent)->sc_burst;
sys/dev/sbus/rfx.c
156
rfxmatch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/rfx.c
183
rfxattach(struct device *parent, struct device *self, void *args)
sys/dev/sbus/spif.c
148
spifmatch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/spif.c
160
spifattach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/spif.c
277
sttymatch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/spif.c
279
struct spif_softc *sc = (struct spif_softc *)parent;
sys/dev/sbus/spif.c
285
sttyattach(struct device *parent, struct device *dev, void *aux)
sys/dev/sbus/spif.c
287
struct spif_softc *sc = (struct spif_softc *)parent;
sys/dev/sbus/spif.c
983
sbppmatch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/spif.c
985
struct spif_softc *sc = (struct spif_softc *)parent;
sys/dev/sbus/spif.c
991
sbppattach(struct device *parent, struct device *dev, void *aux)
sys/dev/sbus/spif.c
993
struct spif_softc *sc = (struct spif_softc *)parent;
sys/dev/sbus/tvtwo.c
166
tvtwomatch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/tvtwo.c
181
tvtwoattach(struct device *parent, struct device *self, void *args)
sys/dev/sbus/uperf_sbus.c
108
uperf_sbus_match(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/uperf_sbus.c
116
uperf_sbus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/vigra.c
219
vigramatch(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/vigra.c
235
vigraattach(struct device *parent, struct device *self, void *args)
sys/dev/sbus/xbox.c
119
if (xbox_fix_range(sc, (struct sbus_softc *)parent) != 0)
sys/dev/sbus/xbox.c
64
xboxmatch(struct device *parent, void *cf, void *aux)
sys/dev/sbus/xbox.c
75
xboxattach(struct device *parent, struct device *self, void *aux)
sys/dev/sbus/zx.c
171
zx_match(struct device *parent, void *vcf, void *aux)
sys/dev/sbus/zx.c
182
zx_attach(struct device *parent, struct device *self, void *args)
sys/dev/sdmmc/if_bwfm_sdio.c
199
bwfm_sdio_match(struct device *parent, void *match, void *aux)
sys/dev/sdmmc/if_bwfm_sdio.c
249
bwfm_sdio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/sdmmc/sdmmc.c
101
sdmmc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/sdmmc/sdmmc.c
92
sdmmc_match(struct device *parent, void *match, void *aux)
sys/dev/sdmmc/sdmmc_io.c
293
sdmmc_submatch(struct device *parent, void *match, void *aux)
sys/dev/sdmmc/sdmmc_io.c
301
return cf->cf_attach->ca_match(parent, cf, aux);
sys/dev/softraid.c
1778
sr_match(struct device *parent, void *match, void *aux)
sys/dev/softraid.c
1784
sr_attach(struct device *parent, struct device *self, void *aux)
sys/dev/sun/z8530ms.c
172
zsms_match(struct device *parent, void *vcf, void *aux)
sys/dev/sun/z8530ms.c
196
zsms_attach(struct device *parent, struct device *self, void *aux)
sys/dev/sun/z8530ms.c
198
struct zsc_softc *zsc = (struct zsc_softc *)parent;
sys/dev/tc/asc_tc.c
103
asc_tc_match(struct device *parent, void *cfdata, void *aux)
sys/dev/tc/asc_tc.c
114
asc_tc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/tc/asc_tc.c
133
tc_intr_establish(parent, ta->ta_cookie, IPL_BIO, ncr53c9x_intr, sc,
sys/dev/tc/asc_tcds.c
117
asc_tcds_match(struct device *parent, void *cf, void *aux)
sys/dev/tc/asc_tcds.c
130
asc_tcds_attach(struct device *parent, struct device *self, void *aux)
sys/dev/tc/asc_tcds.c
164
tcds_intr_establish(parent, tcdsdev->tcdsda_chip, ncr53c9x_intr, sc,
sys/dev/tc/bba.c
178
bba_match(struct device *parent, void *vcf, void *aux)
sys/dev/tc/bba.c
190
bba_attach(struct device *parent, struct device *self, void *aux)
sys/dev/tc/bba.c
194
struct ioasic_softc *iosc = (struct ioasic_softc *)parent;
sys/dev/tc/bba.c
221
ioasic_intr_establish(parent, ia->iada_cookie, IPL_AUDIO,
sys/dev/tc/if_le_ioasic.c
108
le_ioasic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/tc/if_le_ioasic.c
122
ioasic_bst = ((struct ioasic_softc *)parent)->sc_bst;
sys/dev/tc/if_le_ioasic.c
123
ioasic_bsh = ((struct ioasic_softc *)parent)->sc_bsh;
sys/dev/tc/if_le_ioasic.c
124
dmat = sc->sc_dmat = ((struct ioasic_softc *)parent)->sc_dmat;
sys/dev/tc/if_le_ioasic.c
192
(u_char *)((struct ioasic_softc *)parent)->sc_base
sys/dev/tc/if_le_ioasic.c
195
ioasic_intr_establish(parent, d->iada_cookie, IPL_NET,
sys/dev/tc/if_le_ioasic.c
93
le_ioasic_match(struct device *parent, void *match, void *aux)
sys/dev/tc/if_le_tc.c
108
tc_intr_establish(parent, d->ta_cookie, IPL_NET, am7990_intr, sc,
sys/dev/tc/if_le_tc.c
68
le_tc_match(struct device *parent, void *match, void *aux)
sys/dev/tc/if_le_tc.c
79
le_tc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/tc/tc.c
194
tcsubmatch(struct device *parent, void *vcf, void *aux)
sys/dev/tc/tc.c
206
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/dev/tc/tc.c
57
tcmatch(struct device *parent, void *vcf, void *aux)
sys/dev/tc/tc.c
69
tcattach(struct device *parent, struct device *self, void *aux)
sys/dev/tc/tcds.c
142
tcdsmatch(struct device *parent, void *cfdata, void *aux)
sys/dev/tc/tcds.c
150
tcdsattach(struct device *parent, struct device *self, void *aux)
sys/dev/tc/tcds.c
197
tc_intr_establish(parent, sc->sc_cookie, IPL_BIO, tcds_intr, sc,
sys/dev/tc/tcds.c
301
tcdssubmatch(struct device *parent, void *vcf, void *aux)
sys/dev/tc/tcds.c
310
return ((*cf->cf_attach->ca_match)(parent, vcf, aux));
sys/dev/tc/zs_ioasic.c
198
zs_ioasic_match(struct device *parent, void *vcf, void *aux)
sys/dev/tc/zs_ioasic.c
224
zs_ioasic_attach(struct device *parent, struct device *self, void *aux)
sys/dev/tc/zs_ioasic.c
338
ioasic_intr_establish(parent, d->iada_cookie, IPL_TTY,
sys/dev/tc/zs_ioasic.c
381
zs_ioasic_submatch(struct device *parent, void *vcf, void *aux)
sys/dev/tc/zs_ioasic.c
389
return (*cf->cf_attach->ca_match)(parent, cf, aux);
sys/dev/usb/dwc2/dwc2_core.h
172
struct dwc2_hsotg *parent;
sys/dev/usb/dwc2/dwc2_hcd.c
5121
if (udev->parent && udev->parent->speed > USB_SPEED_UNKNOWN &&
sys/dev/usb/dwc2/dwc2_hcd.c
5122
udev->parent->speed < USB_SPEED_HIGH) {
sys/dev/usb/dwc2/dwc2_hcd.c
539
*hub_addr = dev->myhsport->parent->address;
sys/dev/usb/ehci.c
1376
hshubaddr = dev->myhsport->parent->address;
sys/dev/usb/ehci.c
3504
struct usbd_device *hshub = xfer->device->myhsport->parent;
sys/dev/usb/fido.c
50
fido_match(struct device *parent, void *match, void *aux)
sys/dev/usb/fido.c
61
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/if_athn_usb.c
233
athn_usb_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_athn_usb.c
245
athn_usb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_atu.c
1097
atu_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_atu.c
1243
atu_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_aue.c
680
aue_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_aue.c
696
aue_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_axe.c
667
axe_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_axe.c
683
axe_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_axen.c
585
axen_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_axen.c
597
axen_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_bwfm_usb.c
217
bwfm_usb_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_bwfm_usb.c
229
bwfm_usb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_cdce.c
120
cdce_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_cdce.c
145
cdce_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_cue.c
412
cue_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_cue.c
428
cue_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_kue.c
386
kue_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_kue.c
506
kue_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_mos.c
600
mos_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_mos.c
616
mos_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_mtw.c
227
mtw_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_mtw.c
239
mtw_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_mue.c
688
mue_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_mue.c
700
mue_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_otus.c
173
otus_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_otus.c
185
otus_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_ral.c
191
ural_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_ral.c
203
ural_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_rsu.c
190
rsu_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_rsu.c
202
rsu_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_rum.c
222
rum_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_rum.c
257
rum_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_run.c
517
run_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_run.c
529
run_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_smsc.c
942
smsc_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_smsc.c
954
smsc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_uaq.c
424
uaq_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_uaq.c
436
uaq_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_uath.c
186
uath_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_uath.c
229
uath_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_udav.c
162
udav_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_udav.c
175
udav_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_ugl.c
189
ugl_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_ugl.c
201
ugl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_umb.c
311
umb_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_umb.c
346
umb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_upgt.c
176
upgt_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_upgt.c
193
upgt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_upl.c
183
upl_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_upl.c
195
upl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_ure.c
2078
ure_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_ure.c
2090
ure_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_url.c
159
url_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_url.c
171
url_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_urndis.c
1330
urndis_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_urndis.c
1352
urndis_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_urtw.c
578
urtw_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_urtw.c
590
urtw_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_urtwn.c
432
urtwn_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_urtwn.c
444
urtwn_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_wi_usb.c
254
wi_usb_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_wi_usb.c
271
wi_usb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/if_zyd.c
235
zyd_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_zyd.c
276
zyd_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/moscom.c
174
moscom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/moscom.c
186
moscom_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uark.c
101
uark_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uark.c
113
uark_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uaudio.c
3877
uaudio_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uaudio.c
3899
uaudio_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ubcmtp.c
374
ubcmtp_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ubcmtp.c
410
ubcmtp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uberry.c
65
uberry_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uberry.c
77
uberry_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ubsa.c
218
ubsa_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ubsa.c
230
ubsa_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ucc.c
54
ucc_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ucc.c
63
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/ucc.c
73
ucc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ucc.c
81
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/ucc.c
85
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/uchcom.c
231
uchcom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uchcom.c
243
uchcom_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ucom.c
1307
ucomsubmatch(struct device *parent, void *match, void *aux)
sys/dev/usb/ucom.c
1316
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
sys/dev/usb/ucom.c
174
ucom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ucom.c
180
ucom_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ucrcom.c
52
ucrcom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ucrcom.c
76
ucrcom_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ucycom.c
161
ucycom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ucycom.c
173
ucycom_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ucycom.c
178
struct usbd_device *dev = uha->parent->sc_udev;
sys/dev/usb/ucycom.c
184
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/ucycom.c
187
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/udcf.c
135
udcf_match(struct device *parent, void *match, void *aux)
sys/dev/usb/udcf.c
147
udcf_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/udl.c
275
udl_match(struct device *parent, void *match, void *aux)
sys/dev/usb/udl.c
289
udl_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/udsbr.c
111
udsbr_match(struct device *parent, void *match, void *aux)
sys/dev/usb/udsbr.c
127
udsbr_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uftdi.c
755
uftdi_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uftdi.c
775
uftdi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ugen.c
136
ugen_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ugen.c
147
ugen_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ugold.c
128
ugold_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ugold.c
146
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/ugold.c
156
ugold_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ugold.c
163
sc->sc_udev = uha->parent->sc_udev;
sys/dev/usb/ugold.c
164
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/ugold.c
182
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/uhid.c
108
uhid_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uhid.c
119
uhid_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uhid.c
127
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/uhid.c
131
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/uhidev.c
109
uhidev_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uhidev.c
155
uhidev_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uhidev.c
261
uha.parent = sc;
sys/dev/usb/uhidev.h
79
struct uhidev_softc *parent;
sys/dev/usb/uhidpp.c
329
uhidpp_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uhidpp.c
342
uhidev_get_report_desc(uha->parent, &desc, &descsiz);
sys/dev/usb/uhidpp.c
356
uhidpp_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uhidpp.c
366
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/uhub.c
117
uhub_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uhub.c
228
if (!dev->self_powered && dev->powersrc->parent != NULL &&
sys/dev/usb/uhub.c
229
!dev->powersrc->parent->self_powered) {
sys/dev/usb/uhub.c
298
up->parent = dev;
sys/dev/usb/uhub.c
328
if (dev->powersrc->parent != NULL)
sys/dev/usb/uhub.c
99
uhub_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uipaq.c
135
uipaq_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uipaq.c
150
uipaq_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ujoy.c
102
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/ujoy.c
91
ujoy_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ukbd.c
193
ukbd_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ukbd.c
210
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/ukbd.c
219
ukbd_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ukbd.c
232
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/ukbd.c
236
usbd_set_idle(uha->parent->sc_udev, uha->parent->sc_ifaceno, 0, 0);
sys/dev/usb/ukbd.c
238
uhidev_get_report_desc(uha->parent, &desc, &dlen);
sys/dev/usb/ukspan.c
187
ukspan_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ukspan.c
199
ukspan_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ulpt.c
164
ulpt_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ulpt.c
202
ulpt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/umass.c
248
umass_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umass.c
291
umass_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/umbg.c
147
umbg_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umbg.c
161
umbg_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/umcs.c
186
umcs_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/umct.c
150
umct_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umct.c
162
umct_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/umidi.c
140
umidi_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umidi.c
163
umidi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/umodem.c
216
umodem_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umodem.c
258
umodem_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ums.c
112
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/ums.c
134
ums_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/ums.c
145
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/ums.c
158
usbd_set_idle(uha->parent->sc_udev, uha->parent->sc_ifaceno, 0, 0);
sys/dev/usb/ums.c
161
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/ums.c
88
ums_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umsm.c
306
umsm_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umsm.c
378
umsm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/umstc.c
106
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/umstc.c
110
usbd_set_idle(uha->parent->sc_udev, uha->parent->sc_ifaceno, 0, 0);
sys/dev/usb/umstc.c
112
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/umstc.c
75
umstc_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umstc.c
87
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/umstc.c
97
umstc_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/umt.c
102
umt_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/umt.c
112
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/umt.c
115
usbd_set_idle(uha->parent->sc_udev, uha->parent->sc_ifaceno, 0, 0);
sys/dev/usb/umt.c
119
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/umt.c
80
umt_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umt.c
88
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/uoak.h
110
void (*dev_print)(void *parent, enum uoak_target target);
sys/dev/usb/uoak.h
111
void (*dev_setting)(void *parent, enum uoak_target target);
sys/dev/usb/uoaklux.c
104
uoaklux_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uoaklux.c
118
uoaklux_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uoaklux.c
123
struct usbd_device *dev = uha->parent->sc_udev;
sys/dev/usb/uoaklux.c
130
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/uoaklux.c
139
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/uoaklux.c
277
uoaklux_dev_setting(void *parent, enum uoak_target target)
sys/dev/usb/uoaklux.c
279
struct uoaklux_softc *sc = (struct uoaklux_softc *)parent;
sys/dev/usb/uoaklux.c
286
uoaklux_dev_print(void *parent, enum uoak_target target)
sys/dev/usb/uoaklux.c
288
struct uoaklux_softc *sc = (struct uoaklux_softc *)parent;
sys/dev/usb/uoakrh.c
107
uoakrh_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uoakrh.c
121
uoakrh_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uoakrh.c
126
struct usbd_device *dev = uha->parent->sc_udev;
sys/dev/usb/uoakrh.c
133
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/uoakrh.c
142
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/uoakrh.c
309
uoakrh_dev_setting(void *parent, enum uoak_target target)
sys/dev/usb/uoakrh.c
311
struct uoakrh_softc *sc = (struct uoakrh_softc *)parent;
sys/dev/usb/uoakrh.c
318
uoakrh_dev_print(void *parent, enum uoak_target target)
sys/dev/usb/uoakrh.c
320
struct uoakrh_softc *sc = (struct uoakrh_softc *)parent;
sys/dev/usb/uoakv.c
107
uoakv_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uoakv.c
121
uoakv_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uoakv.c
126
struct usbd_device *dev = uha->parent->sc_udev;
sys/dev/usb/uoakv.c
133
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/uoakv.c
142
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/uoakv.c
310
uoakv_dev_setting(void *parent, enum uoak_target target)
sys/dev/usb/uoakv.c
312
struct uoakv_softc *sc = (struct uoakv_softc *)parent;
sys/dev/usb/uoakv.c
322
uoakv_dev_print(void *parent, enum uoak_target target)
sys/dev/usb/uoakv.c
324
struct uoakv_softc *sc = (struct uoakv_softc *)parent;
sys/dev/usb/uonerng.c
143
uonerng_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uonerng.c
158
uonerng_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uow.c
109
uow_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uow.c
97
uow_match(struct device *parent, void *match, void *aux)
sys/dev/usb/upd.c
148
upd_match(struct device *parent, void *match, void *aux)
sys/dev/usb/upd.c
164
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/upd.c
176
upd_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/upd.c
185
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/upd.c
191
sc->sc_max_repid = uha->parent->sc_nrepid;
sys/dev/usb/upd.c
205
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/uplcom.c
200
uplcom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uplcom.c
212
uplcom_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/urng.c
110
urng_match(struct device *parent, void *match, void *aux)
sys/dev/usb/urng.c
124
urng_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/usb.c
135
usb_match(struct device *parent, void *match, void *aux)
sys/dev/usb/usb.c
141
usb_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/usb_subr.c
1017
usbd_new_device(struct device *parent, struct usbd_bus *bus, int depth,
sys/dev/usb/usb_subr.c
1077
dev->myhub = up->parent;
sys/dev/usb/usb_subr.c
1084
for (adev = dev, hub = up->parent;
sys/dev/usb/usb_subr.c
1132
usbd_reset_port(up->parent, port);
sys/dev/usb/usb_subr.c
1147
usbd_reset_port(up->parent, port);
sys/dev/usb/usb_subr.c
1224
addr, dev, parent));
sys/dev/usb/usb_subr.c
1233
err = usbd_probe_and_attach(parent, dev, port, addr);
sys/dev/usb/usb_subr.c
1474
usbd_detach(struct usbd_device *dev, struct device *parent)
sys/dev/usb/usb_subr.c
849
usbd_probe_and_attach(struct device *parent, struct usbd_device *dev, int port,
sys/dev/usb/usb_subr.c
882
dv = config_found(parent, &uaa, usbd_print);
sys/dev/usb/usb_subr.c
908
"error=%s\n", parent->dv_xname, port,
sys/dev/usb/usb_subr.c
912
parent->dv_xname, port, confi, addr);
sys/dev/usb/usb_subr.c
944
dv = config_found(parent, &uaa, usbd_print);
sys/dev/usb/usb_subr.c
981
dv = config_found(parent, &uaa, usbd_print);
sys/dev/usb/usbdivar.h
94
struct usbd_device *parent; /* The ports hub */
sys/dev/usb/uscom.c
70
uscom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uscom.c
82
uscom_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uslcom.c
273
uslcom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uslcom.c
285
uslcom_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uslhcom.c
110
uslhcom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uslhcom.c
124
uslhcom_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uslhcom.c
128
struct usbd_device *dev = uha->parent->sc_udev;
sys/dev/usb/uslhcom.c
135
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/uslhcom.c
138
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/uslhcom.c
139
for (repid = 0; repid < uha->parent->sc_nrepid; repid++) {
sys/dev/usb/usps.c
130
usps_match(struct device *parent, void *match, void *aux)
sys/dev/usb/usps.c
144
usps_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uthum.c
164
uthum_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uthum.c
178
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/uthum.c
189
uthum_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uthum.c
194
struct usbd_device *dev = uha->parent->sc_udev;
sys/dev/usb/uthum.c
200
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/uthum.c
204
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/uticom.c
187
uticom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uticom.c
199
uticom_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/utpms.c
263
utpms_match(struct device *parent, void *match, void *aux)
sys/dev/usb/utpms.c
292
utpms_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/utpms.c
305
usbd_set_idle(uha->parent->sc_udev, uha->parent->sc_ifaceno, 0, 0);
sys/dev/usb/utpms.c
308
if ((udd = usbd_get_device_descriptor(uha->parent->sc_udev)) != NULL) {
sys/dev/usb/utpms.c
347
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/utrh.c
101
utrh_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/utrh.c
106
struct usbd_device *dev = uha->parent->sc_udev;
sys/dev/usb/utrh.c
112
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/utrh.c
116
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/utrh.c
89
utrh_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uts.c
117
uts_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uts.c
135
uts_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/utvfu.c
855
utvfu_match(struct device *parent, void *match, void *aux)
sys/dev/usb/utvfu.c
915
utvfu_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/utwitch.c
103
utwitch_match(struct device *parent, void *match, void *aux)
sys/dev/usb/utwitch.c
115
utwitch_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/utwitch.c
120
struct usbd_device *dev = uha->parent->sc_udev;
sys/dev/usb/utwitch.c
126
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/utwitch.c
129
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/uvideo.c
518
uvideo_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uvideo.c
551
uvideo_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uvisor.c
205
uvisor_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uvisor.c
220
uvisor_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uvscom.c
207
uvscom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uvscom.c
219
uvscom_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uwacom.c
107
uwacom_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/uwacom.c
118
sc->sc_hdev.sc_parent = uha->parent;
sys/dev/usb/uwacom.c
122
usbd_set_idle(uha->parent->sc_udev, uha->parent->sc_ifaceno, 0, 0);
sys/dev/usb/uwacom.c
124
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/uwacom.c
154
uhidev_set_report(uha->parent, UHID_FEATURE_REPORT,
sys/dev/usb/uwacom.c
81
uwacom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uwacom.c
94
uhidev_get_report_desc(uha->parent, &desc, &size);
sys/dev/usb/uxrcom.c
109
uxrcom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uxrcom.c
123
uxrcom_attach(struct device *parent, struct device *self, void *aux)
sys/dev/usb/xhci.c
1584
struct usbd_device *hshub = pipe->device->myhsport->parent;
sys/dev/video.c
100
videoprobe(struct device *parent, void *match, void *aux)
sys/dev/video.c
106
videoattach(struct device *parent, struct device *self, void *aux)
sys/dev/video.c
114
sc->sc_dev = parent;
sys/dev/video.c
581
video_submatch(struct device *parent, void *match, void *aux)
sys/dev/vmm/vmm.c
48
vmm_probe(struct device *parent, void *match, void *aux)
sys/dev/vmm/vmm.c
54
return (vmm_probe_machdep(parent, match, aux));
sys/dev/vmm/vmm.c
58
vmm_attach(struct device *parent, struct device *self, void *aux)
sys/dev/vmm/vmm.c
79
vmm_attach_machdep(parent, self, aux);
sys/dev/vscsi.c
131
vscsi_match(struct device *parent, void *match, void *aux)
sys/dev/vscsi.c
137
vscsi_attach(struct device *parent, struct device *self, void *aux)
sys/dev/wscons/wsdisplay.c
533
wsdisplay_match(struct device *parent, void *match, void *aux)
sys/dev/wscons/wsdisplay.c
655
wsemuldisplaydevsubmatch(struct device *parent, void *match, void *aux)
sys/dev/wscons/wsdisplay.c
662
return ((*cf->cf_attach->ca_match)(parent, match, aux));
sys/dev/wscons/wsdisplay.c
668
wsdisplay_attach(struct device *parent, struct device *self, void *aux)
sys/dev/wscons/wskbd.c
371
wskbd_match(struct device *parent, void *match, void *aux)
sys/dev/wscons/wskbd.c
392
wskbd_attach(struct device *parent, struct device *self, void *aux)
sys/dev/wscons/wsmouse.c
189
wsmouse_match(struct device *parent, void *match, void *aux)
sys/dev/wscons/wsmouse.c
195
wsmouse_attach(struct device *parent, struct device *self, void *aux)
sys/kern/kern_exit.c
833
process_reparent(struct process *child, struct process *parent)
sys/kern/kern_exit.c
836
if (child->ps_pptr == parent)
sys/kern/kern_exit.c
843
LIST_INSERT_HEAD(&parent->ps_children, child, ps_sibling);
sys/kern/kern_exit.c
852
child->ps_pptr = parent;
sys/kern/kern_exit.c
853
child->ps_ppid = parent->ps_pid;
sys/kern/kern_exit.c
856
&parent->ps_mtx.mtx_lock_obj);
sys/kern/kern_fork.c
147
thread_new(struct proc *parent, vaddr_t uaddr)
sys/kern/kern_fork.c
163
memcpy(&p->p_startcopy, &parent->p_startcopy,
sys/kern/kern_fork.c
217
process_new(struct proc *p, struct process *parent, int flags)
sys/kern/kern_fork.c
230
memcpy(&pr->ps_startcopy, &parent->ps_startcopy,
sys/kern/kern_fork.c
235
lim_fork(parent, pr);
sys/kern/kern_fork.c
238
pr->ps_pptr = parent;
sys/kern/kern_fork.c
239
pr->ps_ppid = parent->ps_pid;
sys/kern/kern_fork.c
242
&parent->ps_mtx.mtx_lock_obj);
sys/kern/kern_fork.c
245
pr->ps_textvp = parent->ps_textvp;
sys/kern/kern_fork.c
250
unveil_copy(parent, pr);
sys/kern/kern_fork.c
252
pr->ps_flags = parent->ps_flags & PS_FLAGS_INHERITED_ON_FORK;
sys/kern/kern_fork.c
253
if (parent->ps_session->s_ttyvp != NULL)
sys/kern/kern_fork.c
254
pr->ps_flags |= parent->ps_flags & PS_CONTROLT;
sys/kern/kern_fork.c
256
if (parent->ps_pin.pn_pins) {
sys/kern/kern_fork.c
257
pr->ps_pin.pn_pins = mallocarray(parent->ps_pin.pn_npins,
sys/kern/kern_fork.c
259
memcpy(pr->ps_pin.pn_pins, parent->ps_pin.pn_pins,
sys/kern/kern_fork.c
260
parent->ps_pin.pn_npins * sizeof(u_int));
sys/kern/kern_fork.c
262
if (parent->ps_libcpin.pn_pins) {
sys/kern/kern_fork.c
263
pr->ps_libcpin.pn_pins = mallocarray(parent->ps_libcpin.pn_npins,
sys/kern/kern_fork.c
265
memcpy(pr->ps_libcpin.pn_pins, parent->ps_libcpin.pn_pins,
sys/kern/kern_fork.c
266
parent->ps_libcpin.pn_npins * sizeof(u_int));
sys/kern/kern_fork.c
274
pr->ps_fd = fdshare(parent);
sys/kern/kern_fork.c
276
pr->ps_fd = fdcopy(parent);
sys/kern/kern_fork.c
277
pr->ps_sigacts = sigactsinit(parent);
sys/kern/kern_fork.c
279
pr->ps_vmspace = uvmspace_share(parent);
sys/kern/kern_fork.c
281
pr->ps_vmspace = uvmspace_fork(parent);
sys/kern/kern_fork.c
283
if (parent->ps_flags & PS_PROFIL)
sys/kern/kern_fork.c
286
pr->ps_flags |= parent->ps_flags & PS_TRACED;
sys/kern/kern_fork.c
337
fork_thread_start(struct proc *p, struct proc *parent, int flags)
sys/kern/kern_fork.c
342
ci = sched_choosecpu_fork(parent, flags);
sys/kern/kern_fork.c
77
void unveil_copy(struct process *parent, struct process *child);
sys/kern/kern_proc.c
179
inferior(struct process *pr, struct process *parent)
sys/kern/kern_proc.c
182
for (; pr != parent; pr = pr->ps_pptr)
sys/kern/kern_resource.c
687
lim_fork(struct process *parent, struct process *child)
sys/kern/kern_resource.c
691
mtx_enter(&parent->ps_mtx);
sys/kern/kern_resource.c
692
limit = parent->ps_limit;
sys/kern/kern_resource.c
694
mtx_leave(&parent->ps_mtx);
sys/kern/kern_sched.c
376
sched_choosecpu_fork(struct proc *parent, int flags)
sys/kern/kern_sched.c
397
return (parent->p_cpu);
sys/kern/kern_unveil.c
196
unveil_copy(struct process *parent, struct process *child)
sys/kern/kern_unveil.c
200
child->ps_uvdone = parent->ps_uvdone;
sys/kern/kern_unveil.c
201
if (parent->ps_uvvcount == 0)
sys/kern/kern_unveil.c
208
for (i = 0; parent->ps_uvpaths != NULL && i < parent->ps_uvvcount;
sys/kern/kern_unveil.c
210
struct unveil *from = parent->ps_uvpaths + i;
sys/kern/kern_unveil.c
231
child->ps_uvvcount = parent->ps_uvvcount;
sys/kern/kern_unveil.c
241
struct vnode *vp = NULL, *parent = NULL, *root;
sys/kern/kern_unveil.c
277
error = VOP_LOOKUP(vp, &parent, &cn);
sys/kern/kern_unveil.c
293
(void) unveil_lookup(parent, p->p_p, &ret);
sys/kern/kern_unveil.c
294
vput(parent);
sys/kern/kern_unveil.c
299
if (vp == parent) {
sys/kern/kern_unveil.c
303
vp = parent;
sys/kern/kern_unveil.c
304
parent = NULL;
sys/kern/subr_autoconf.c
138
match = config_make_softc(m->parent, cf);
sys/kern/subr_autoconf.c
150
pri = (*m->fn)(m->parent, match, m->aux);
sys/kern/subr_autoconf.c
156
pri = (*cf->cf_attach->ca_match)(m->parent, match, m->aux);
sys/kern/subr_autoconf.c
187
config_search(cfmatch_t fn, struct device *parent, void *aux)
sys/kern/subr_autoconf.c
194
m.parent = parent;
sys/kern/subr_autoconf.c
197
m.indirect = parent && (parent->dv_cfdata->cf_driver->cd_mode & CD_INDIRECT);
sys/kern/subr_autoconf.c
223
if (parent->dv_cfdata == &cfdata[*p])
sys/kern/subr_autoconf.c
250
config_scan(cfscan_t fn, struct device *parent)
sys/kern/subr_autoconf.c
257
indirect = parent && (parent->dv_cfdata->cf_driver->cd_mode & CD_INDIRECT);
sys/kern/subr_autoconf.c
271
if (parent->dv_cfdata == &cfdata[*p]) {
sys/kern/subr_autoconf.c
273
config_make_softc(parent, cf) :
sys/kern/subr_autoconf.c
275
(*fn)(parent, match);
sys/kern/subr_autoconf.c
292
m.parent = ROOT;
sys/kern/subr_autoconf.c
324
config_found_sm(struct device *parent, void *aux, cfprint_t print,
sys/kern/subr_autoconf.c
329
if ((match = config_search(submatch, parent, aux)) != NULL)
sys/kern/subr_autoconf.c
330
return (config_attach(parent, match, aux, print));
sys/kern/subr_autoconf.c
332
printf("%s", msgs[(*print)(aux, parent->dv_xname)]);
sys/kern/subr_autoconf.c
354
config_attach(struct device *parent, void *match, void *aux, cfprint_t print)
sys/kern/subr_autoconf.c
368
if (parent && (parent->dv_cfdata->cf_driver->cd_mode & CD_INDIRECT)) {
sys/kern/subr_autoconf.c
373
dev = config_make_softc(parent, cf);
sys/kern/subr_autoconf.c
397
if (parent == ROOT)
sys/kern/subr_autoconf.c
400
printf("%s at %s", dev->dv_xname, parent->dv_xname);
sys/kern/subr_autoconf.c
420
(*ca->ca_attach)(parent, dev, aux);
sys/kern/subr_autoconf.c
436
config_make_softc(struct device *parent, struct cfdata *cf)
sys/kern/subr_autoconf.c
471
dev->dv_parent = parent;
sys/kern/subr_autoconf.c
73
struct device *parent;
sys/kern/subr_autoconf.c
739
config_process_deferred_children(struct device *parent)
sys/kern/subr_autoconf.c
746
if (dc->dc_dev->dv_parent == parent) {
sys/kern/subr_autoconf.c
795
config_detach_children(struct device *parent, int flags)
sys/kern/subr_autoconf.c
814
if (dev->dv_parent == parent) {
sys/kern/subr_autoconf.c
881
config_activate_children(struct device *parent, int act)
sys/kern/subr_autoconf.c
886
for (d = TAILQ_NEXT(parent, dv_list); d != NULL;
sys/kern/subr_autoconf.c
888
if (d->dv_parent != parent)
sys/kern/subr_autoconf.c
922
for (; d != NULL && d != parent;
sys/kern/subr_autoconf.c
924
if (d->dv_parent != parent)
sys/kern/subr_tree.c
101
struct rb_entry *parent;
sys/kern/subr_tree.c
109
parent = RBE_PARENT(rbe);
sys/kern/subr_tree.c
110
RBE_PARENT(tmp) = parent;
sys/kern/subr_tree.c
111
if (parent != NULL) {
sys/kern/subr_tree.c
112
if (rbe == RBE_LEFT(parent))
sys/kern/subr_tree.c
113
RBE_LEFT(parent) = tmp;
sys/kern/subr_tree.c
115
RBE_RIGHT(parent) = tmp;
sys/kern/subr_tree.c
125
parent = RBE_PARENT(tmp);
sys/kern/subr_tree.c
126
if (parent != NULL)
sys/kern/subr_tree.c
127
rbe_augment(t, parent);
sys/kern/subr_tree.c
135
struct rb_entry *parent;
sys/kern/subr_tree.c
143
parent = RBE_PARENT(rbe);
sys/kern/subr_tree.c
144
RBE_PARENT(tmp) = parent;
sys/kern/subr_tree.c
145
if (parent != NULL) {
sys/kern/subr_tree.c
146
if (rbe == RBE_LEFT(parent))
sys/kern/subr_tree.c
147
RBE_LEFT(parent) = tmp;
sys/kern/subr_tree.c
149
RBE_RIGHT(parent) = tmp;
sys/kern/subr_tree.c
159
parent = RBE_PARENT(tmp);
sys/kern/subr_tree.c
160
if (parent != NULL)
sys/kern/subr_tree.c
161
rbe_augment(t, parent);
sys/kern/subr_tree.c
169
struct rb_entry *parent, *gparent, *tmp;
sys/kern/subr_tree.c
171
while ((parent = RBE_PARENT(rbe)) != NULL &&
sys/kern/subr_tree.c
172
RBE_COLOR(parent) == RB_RED) {
sys/kern/subr_tree.c
173
gparent = RBE_PARENT(parent);
sys/kern/subr_tree.c
175
if (parent == RBE_LEFT(gparent)) {
sys/kern/subr_tree.c
179
rbe_set_blackred(parent, gparent);
sys/kern/subr_tree.c
184
if (RBE_RIGHT(parent) == rbe) {
sys/kern/subr_tree.c
185
rbe_rotate_left(t, rbt, parent);
sys/kern/subr_tree.c
186
tmp = parent;
sys/kern/subr_tree.c
187
parent = rbe;
sys/kern/subr_tree.c
191
rbe_set_blackred(parent, gparent);
sys/kern/subr_tree.c
197
rbe_set_blackred(parent, gparent);
sys/kern/subr_tree.c
202
if (RBE_LEFT(parent) == rbe) {
sys/kern/subr_tree.c
203
rbe_rotate_right(t, rbt, parent);
sys/kern/subr_tree.c
204
tmp = parent;
sys/kern/subr_tree.c
205
parent = rbe;
sys/kern/subr_tree.c
209
rbe_set_blackred(parent, gparent);
sys/kern/subr_tree.c
219
struct rb_entry *parent, struct rb_entry *rbe)
sys/kern/subr_tree.c
225
if (RBE_LEFT(parent) == rbe) {
sys/kern/subr_tree.c
226
tmp = RBE_RIGHT(parent);
sys/kern/subr_tree.c
228
rbe_set_blackred(tmp, parent);
sys/kern/subr_tree.c
229
rbe_rotate_left(t, rbt, parent);
sys/kern/subr_tree.c
230
tmp = RBE_RIGHT(parent);
sys/kern/subr_tree.c
237
rbe = parent;
sys/kern/subr_tree.c
238
parent = RBE_PARENT(rbe);
sys/kern/subr_tree.c
250
tmp = RBE_RIGHT(parent);
sys/kern/subr_tree.c
253
RBE_COLOR(tmp) = RBE_COLOR(parent);
sys/kern/subr_tree.c
254
RBE_COLOR(parent) = RB_BLACK;
sys/kern/subr_tree.c
258
rbe_rotate_left(t, rbt, parent);
sys/kern/subr_tree.c
263
tmp = RBE_LEFT(parent);
sys/kern/subr_tree.c
265
rbe_set_blackred(tmp, parent);
sys/kern/subr_tree.c
266
rbe_rotate_right(t, rbt, parent);
sys/kern/subr_tree.c
267
tmp = RBE_LEFT(parent);
sys/kern/subr_tree.c
275
rbe = parent;
sys/kern/subr_tree.c
276
parent = RBE_PARENT(rbe);
sys/kern/subr_tree.c
288
tmp = RBE_LEFT(parent);
sys/kern/subr_tree.c
291
RBE_COLOR(tmp) = RBE_COLOR(parent);
sys/kern/subr_tree.c
292
RBE_COLOR(parent) = RB_BLACK;
sys/kern/subr_tree.c
296
rbe_rotate_right(t, rbt, parent);
sys/kern/subr_tree.c
310
struct rb_entry *child, *parent, *old = rbe;
sys/kern/subr_tree.c
325
parent = RBE_PARENT(rbe);
sys/kern/subr_tree.c
328
RBE_PARENT(child) = parent;
sys/kern/subr_tree.c
329
if (parent != NULL) {
sys/kern/subr_tree.c
330
if (RBE_LEFT(parent) == rbe)
sys/kern/subr_tree.c
331
RBE_LEFT(parent) = child;
sys/kern/subr_tree.c
333
RBE_RIGHT(parent) = child;
sys/kern/subr_tree.c
335
rbe_if_augment(t, parent);
sys/kern/subr_tree.c
339
parent = rbe;
sys/kern/subr_tree.c
357
if (t->t_augment != NULL && parent != NULL) {
sys/kern/subr_tree.c
358
tmp = parent;
sys/kern/subr_tree.c
368
parent = RBE_PARENT(rbe);
sys/kern/subr_tree.c
372
RBE_PARENT(child) = parent;
sys/kern/subr_tree.c
373
if (parent != NULL) {
sys/kern/subr_tree.c
374
if (RBE_LEFT(parent) == rbe)
sys/kern/subr_tree.c
375
RBE_LEFT(parent) = child;
sys/kern/subr_tree.c
377
RBE_RIGHT(parent) = child;
sys/kern/subr_tree.c
379
rbe_if_augment(t, parent);
sys/kern/subr_tree.c
384
rbe_remove_color(t, rbt, parent, child);
sys/kern/subr_tree.c
405
struct rb_entry *parent = NULL;
sys/kern/subr_tree.c
411
parent = tmp;
sys/kern/subr_tree.c
423
rbe_set(rbe, parent);
sys/kern/subr_tree.c
425
if (parent != NULL) {
sys/kern/subr_tree.c
427
RBE_LEFT(parent) = rbe;
sys/kern/subr_tree.c
429
RBE_RIGHT(parent) = rbe;
sys/kern/subr_tree.c
431
rbe_if_augment(t, parent);
sys/kern/subr_tree.c
546
struct rb_entry *parent = NULL;
sys/kern/subr_tree.c
549
parent = rbe;
sys/kern/subr_tree.c
553
return (parent == NULL ? NULL : rb_e2n(t, parent));
sys/kern/subr_tree.c
560
struct rb_entry *parent = NULL;
sys/kern/subr_tree.c
563
parent = rbe;
sys/kern/subr_tree.c
567
return (parent == NULL ? NULL : rb_e2n(t, parent));
sys/kern/subr_tree.c
613
_rb_set_parent(const struct rb_type *t, void *node, void *parent)
sys/kern/subr_tree.c
616
struct rb_entry *rbp = (parent == NULL) ? NULL : rb_n2e(t, parent);
sys/kern/subr_tree.c
70
rbe_set(struct rb_entry *rbe, struct rb_entry *parent)
sys/kern/subr_tree.c
72
RBE_PARENT(rbe) = parent;
sys/kern/subr_witness.c
1543
adopt(struct witness *parent, struct witness *child)
sys/kern/subr_witness.c
1551
if (isitmychild(parent, child))
sys/kern/subr_witness.c
1561
pi = parent->w_index;
sys/kern/subr_witness.c
1574
parent->w_num_descendants++;
sys/kern/subr_witness.c
1641
itismychild(struct witness *parent, struct witness *child)
sys/kern/subr_witness.c
1643
KASSERT(child != NULL && parent != NULL);
sys/kern/subr_witness.c
1647
if (!witness_lock_type_equal(parent, child)) {
sys/kern/subr_witness.c
1652
"the same lock type", __func__, parent->w_type->lt_name,
sys/kern/subr_witness.c
1653
parent->w_class->lc_name, child->w_type->lt_name,
sys/kern/subr_witness.c
1656
adopt(parent, child);
sys/kern/subr_witness.c
1701
isitmychild(struct witness *parent, struct witness *child)
sys/kern/subr_witness.c
1704
return (_isitmyx(parent, child, WITNESS_PARENT, __func__));
sys/kern/subr_witness.c
1722
islockmychild(struct lock_object *parent, struct lock_object *child)
sys/kern/subr_witness.c
1724
if (!(parent->lo_flags & LO_HASPARENT) &&
sys/kern/subr_witness.c
1725
parent->lo_relative == child)
sys/kern/subr_witness.c
1728
child->lo_relative == parent)
sys/kern/subr_witness.c
1930
struct witness *parent, struct witness *child, int step, int last)
sys/kern/subr_witness.c
1940
step, parent->w_subtype, parent->w_type->lt_name,
sys/kern/subr_witness.c
1944
wlod = witness_lock_order_get(parent, child);
sys/kern/subr_witness.c
1951
parent->w_type->lt_name, child->w_type->lt_name);
sys/kern/subr_witness.c
1957
struct witness *parent, struct witness *child)
sys/kern/subr_witness.c
1969
if (witness_search(child, parent, path, depth, &remaining))
sys/kern/subr_witness.c
1978
witness_print_cycle_edge(prnt, parent, child, ++step, 0);
sys/kern/subr_witness.c
2467
witness_lock_order_get(struct witness *parent, struct witness *child)
sys/kern/subr_witness.c
2473
KASSERT(parent != NULL && child != NULL);
sys/kern/subr_witness.c
2474
key.from = parent->w_index;
sys/kern/subr_witness.c
2478
if ((w_rmatrix[parent->w_index][child->w_index]
sys/kern/subr_witness.c
2501
witness_lock_order_check(struct witness *parent, struct witness *child)
sys/kern/subr_witness.c
2504
if (parent != child &&
sys/kern/subr_witness.c
2505
w_rmatrix[parent->w_index][child->w_index]
sys/kern/subr_witness.c
2507
isitmychild(parent, child))
sys/kern/subr_witness.c
2514
witness_lock_order_add(struct witness *parent, struct witness *child)
sys/kern/subr_witness.c
2521
KASSERT(parent != NULL && child != NULL);
sys/kern/subr_witness.c
2522
key.from = parent->w_index;
sys/kern/subr_witness.c
2526
if (w_rmatrix[parent->w_index][child->w_index]
sys/kern/subr_witness.c
2532
w_rmatrix[parent->w_index][child->w_index] |= WITNESS_LOCK_ORDER_KNOWN;
sys/kern/subr_witness.c
328
static void adopt(struct witness *parent, struct witness *child);
sys/kern/subr_witness.c
333
static int isitmychild(struct witness *parent, struct witness *child);
sys/kern/subr_witness.c
334
static int isitmydescendant(struct witness *parent, struct witness *child);
sys/kern/subr_witness.c
335
static void itismychild(struct witness *parent, struct witness *child);
sys/kern/subr_witness.c
336
static int islockmychild(struct lock_object *parent,
sys/kern/subr_witness.c
339
static void db_witness_add_fullgraph(struct witness *parent);
sys/kern/subr_witness.c
346
static void witness_ddb_level_descendants(struct witness *parent, int l);
sys/kern/subr_witness.c
365
static int witness_lock_order_add(struct witness *parent,
sys/kern/subr_witness.c
367
static int witness_lock_order_check(struct witness *parent,
sys/kern/subr_witness.c
370
struct witness *parent,
sys/kern/subr_witness.c
375
struct witness *parent, struct witness *child);
sys/kern/subr_witness.c
377
struct witness *parent, struct witness *child,
sys/lib/libsa/cd9660.c
130
int parent, ent;
sys/lib/libsa/cd9660.c
179
parent = 1;
sys/lib/libsa/cd9660.c
194
if (isonum_722(pp->parent) != parent)
sys/lib/libsa/cd9660.c
202
parent = ent;
sys/lib/libsa/cd9660.c
205
if (isonum_722(pp->parent) == parent)
sys/lib/libsa/cd9660.c
61
char parent [ISODCL( 7, 8)]; /* 722 */
sys/net/art.c
769
struct art_table *parent;
sys/net/art.c
800
parent = at->at_parent;
sys/net/art.c
804
ai->ai_table = parent;
sys/net/art.c
805
if (parent == NULL) {
sys/net/art.c
810
at = parent;
sys/net/art.c
821
struct art_table *at, *parent;
sys/net/art.c
823
for (at = ai->ai_table; at != NULL; at = parent) {
sys/net/art.c
824
parent = at->at_parent;
sys/net/art.c
855
art_table_get(struct art *art, struct art_table *parent, unsigned int j)
sys/net/art.c
863
KASSERT(parent != NULL || j == -1);
sys/net/art.c
865
level = (parent != NULL) ? parent->at_level + 1 : 0;
sys/net/art.c
891
at->at_parent = parent;
sys/net/art.c
899
if (parent != NULL) {
sys/net/art.c
902
at->at_offset = (parent->at_offset + parent->at_bits);
sys/net/art.c
904
ahe = SMR_PTR_GET_LOCKED(&parent->at_heap[j]);
sys/net/art.c
919
struct art_table *parent = at->at_parent;
sys/net/art.c
925
if (parent != NULL) {
sys/net/art.c
929
KASSERT(at->at_level == parent->at_level + 1);
sys/net/art.c
930
KASSERT(parent->at_refcnt >= 1);
sys/net/art.c
934
SMR_PTR_SET_LOCKED(&parent->at_heap[j], ahe);
sys/net/art.c
948
return (parent);
sys/net/hfsc.c
401
struct hfsc_class *cl, *parent, *np = NULL;
sys/net/hfsc.c
418
parent = np;
sys/net/hfsc.c
419
} else if ((parent = hfsc_clh2cph(hif, q->parent_qid)) == NULL)
sys/net/hfsc.c
438
parent, q->qlimit, q->flags, q->qid)) == NULL) {
sys/net/hfsc.c
616
struct hfsc_sc *fsc, struct hfsc_sc *usc, struct hfsc_class *parent,
sys/net/hfsc.c
659
cl->cl_parent = parent;
sys/net/hfsc.c
687
if (parent == NULL)
sys/net/hfsc.c
691
if ((p = parent->cl_children) == NULL)
sys/net/hfsc.c
692
parent->cl_children = cl;
sys/net/if_gre.c
2623
struct if_parent *parent = (struct if_parent *)data;
sys/net/if_gre.c
2671
error = nvgre_set_parent(sc, parent->ifp_parent);
sys/net/if_gre.c
2680
memcpy(parent->ifp_parent, ifp0->if_xname,
sys/net/if_gre.c
2681
sizeof(parent->ifp_parent));
sys/net/if_gre.c
3625
nvgre_set_parent(struct nvgre_softc *sc, const char *parent)
sys/net/if_gre.c
3629
ifp0 = if_unit(parent);
sys/net/if_vlan.c
1008
memset(&parent, 0, sizeof(parent));
sys/net/if_vlan.c
1009
memcpy(parent.ifp_name, ifp->if_xname, sizeof(parent.ifp_name));
sys/net/if_vlan.c
1010
memcpy(parent.ifp_parent, vlr.vlr_parent, sizeof(parent.ifp_parent));
sys/net/if_vlan.c
1011
error = vlan_ioctl(ifp, SIOCSIFPARENT, (caddr_t)&parent);
sys/net/if_vlan.c
679
struct if_parent *parent = (struct if_parent *)data;
sys/net/if_vlan.c
737
error = vlan_set_parent(sc, parent->ifp_parent);
sys/net/if_vlan.c
745
memcpy(parent->ifp_parent, ifp0->if_xname,
sys/net/if_vlan.c
746
sizeof(parent->ifp_parent));
sys/net/if_vlan.c
922
vlan_set_parent(struct vlan_softc *sc, const char *parent)
sys/net/if_vlan.c
928
ifp0 = if_unit(parent);
sys/net/if_vlan.c
985
struct if_parent parent;
sys/net/pf_ioctl.c
2256
if (qs->parent[0] && (qs->parent_qid =
sys/net/pf_ioctl.c
2257
pf_qname2qid(qs->parent, 0)) == 0) {
sys/net/pf_ioctl.c
3132
if (anchor->parent == NULL)
sys/net/pf_ioctl.c
3160
if (anchor->parent == NULL && nr++ == pr->nr) {
sys/net/pf_ruleset.c
177
pf_create_anchor(struct pf_anchor *parent, const char *aname)
sys/net/pf_ruleset.c
182
((parent != NULL) && (strlen(parent->path) >= PF_ANCHOR_MAXPATH)))
sys/net/pf_ruleset.c
191
if (parent != NULL) {
sys/net/pf_ruleset.c
196
strlcpy(anchor->path, parent->path, sizeof(anchor->path));
sys/net/pf_ruleset.c
209
if (parent != NULL) {
sys/net/pf_ruleset.c
210
anchor->parent = parent;
sys/net/pf_ruleset.c
211
dup = RB_INSERT(pf_anchor_node, &parent->children, anchor);
sys/net/pf_ruleset.c
288
struct pf_anchor *parent;
sys/net/pf_ruleset.c
301
if ((parent = ruleset->anchor->parent) != NULL)
sys/net/pf_ruleset.c
302
RB_REMOVE(pf_anchor_node, &parent->children,
sys/net/pf_ruleset.c
305
if (parent == NULL)
sys/net/pf_ruleset.c
307
ruleset = &parent->ruleset;
sys/net/pfvar.h
1279
char parent[PF_QNAME_SIZE];
sys/net/pfvar.h
854
struct pf_anchor *parent;
sys/net/route.c
860
rtflushclone(struct rtentry *parent, unsigned int rtableid)
sys/net/route.c
867
if (!parent || (parent->rt_flags & RTF_CLONING) == 0)
sys/net/route.c
872
error = rtable_walk(rtableid, rt_key(parent)->sa_family, &rt,
sys/net/route.c
873
rtflushclone1, parent);
sys/scsi/cd.c
178
cdmatch(struct device *parent, void *match, void *aux)
sys/scsi/cd.c
195
cdattach(struct device *parent, struct device *self, void *aux)
sys/scsi/ch.c
137
chmatch(struct device *parent, void *match, void *aux)
sys/scsi/ch.c
150
chattach(struct device *parent, struct device *self, void *aux)
sys/scsi/mpath.c
104
mpath_match(struct device *parent, void *match, void *aux)
sys/scsi/mpath.c
110
mpath_attach(struct device *parent, struct device *self, void *aux)
sys/scsi/mpath_emc.c
114
emc_match(struct device *parent, void *match, void *aux)
sys/scsi/mpath_emc.c
136
emc_attach(struct device *parent, struct device *self, void *aux)
sys/scsi/mpath_hds.c
115
hds_match(struct device *parent, void *match, void *aux)
sys/scsi/mpath_hds.c
139
hds_attach(struct device *parent, struct device *self, void *aux)
sys/scsi/mpath_rdac.c
176
rdac_match(struct device *parent, void *match, void *aux)
sys/scsi/mpath_rdac.c
198
rdac_attach(struct device *parent, struct device *self, void *aux)
sys/scsi/mpath_sym.c
102
sym_match(struct device *parent, void *match, void *aux)
sys/scsi/mpath_sym.c
131
sym_attach(struct device *parent, struct device *self, void *aux)
sys/scsi/safte.c
109
safte_match(struct device *parent, void *match, void *aux)
sys/scsi/safte.c
136
safte_attach(struct device *parent, struct device *self, void *aux)
sys/scsi/scsiconf.c
198
scsibusmatch(struct device *parent, void *match, void *aux)
sys/scsi/scsiconf.c
208
scsibusattach(struct device *parent, struct device *self, void *aux)
sys/scsi/scsiconf.c
282
scsibussubmatch(struct device *parent, void *match, void *aux)
sys/scsi/scsiconf.c
293
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/scsi/sd.c
140
sdmatch(struct device *parent, void *match, void *aux)
sys/scsi/sd.c
157
sdattach(struct device *parent, struct device *self, void *aux)
sys/scsi/ses.c
123
ses_match(struct device *parent, void *match, void *aux)
sys/scsi/ses.c
141
ses_attach(struct device *parent, struct device *self, void *aux)
sys/scsi/st.c
248
stmatch(struct device *parent, void *match, void *aux)
sys/scsi/st.c
264
stattach(struct device *parent, struct device *self, void *aux)
sys/scsi/uk.c
72
ukmatch(struct device *parent, void *match, void *aux)
sys/scsi/uk.c
82
ukattach(struct device *parent, struct device *self, void *aux)
sys/sys/device.h
197
struct device *config_make_softc(struct device *parent,
sys/sys/sched.h
171
struct cpu_info *sched_choosecpu_fork(struct proc *parent, int);
sys/sys/sched.h
203
#define scheduler_wait_hook(parent, child) do { \
sys/sys/sched.h
204
(parent)->p_estcpu = ESTCPULIM((parent)->p_estcpu + (child)->p_estcpu);\
sys/sys/tree.h
322
#define RB_SET(elm, parent, field) do { \
sys/sys/tree.h
323
RB_PARENT(elm, field) = parent; \
sys/sys/tree.h
405
struct type *parent, *gparent, *tmp; \
sys/sys/tree.h
406
while ((parent = RB_PARENT(elm, field)) && \
sys/sys/tree.h
407
RB_COLOR(parent, field) == RB_RED) { \
sys/sys/tree.h
408
gparent = RB_PARENT(parent, field); \
sys/sys/tree.h
409
if (parent == RB_LEFT(gparent, field)) { \
sys/sys/tree.h
413
RB_SET_BLACKRED(parent, gparent, field);\
sys/sys/tree.h
417
if (RB_RIGHT(parent, field) == elm) { \
sys/sys/tree.h
418
RB_ROTATE_LEFT(head, parent, tmp, field);\
sys/sys/tree.h
419
tmp = parent; \
sys/sys/tree.h
420
parent = elm; \
sys/sys/tree.h
423
RB_SET_BLACKRED(parent, gparent, field); \
sys/sys/tree.h
429
RB_SET_BLACKRED(parent, gparent, field);\
sys/sys/tree.h
433
if (RB_LEFT(parent, field) == elm) { \
sys/sys/tree.h
434
RB_ROTATE_RIGHT(head, parent, tmp, field);\
sys/sys/tree.h
435
tmp = parent; \
sys/sys/tree.h
436
parent = elm; \
sys/sys/tree.h
439
RB_SET_BLACKRED(parent, gparent, field); \
sys/sys/tree.h
447
name##_RB_REMOVE_COLOR(struct name *head, struct type *parent, struct type *elm) \
sys/sys/tree.h
452
if (RB_LEFT(parent, field) == elm) { \
sys/sys/tree.h
453
tmp = RB_RIGHT(parent, field); \
sys/sys/tree.h
455
RB_SET_BLACKRED(tmp, parent, field); \
sys/sys/tree.h
456
RB_ROTATE_LEFT(head, parent, tmp, field);\
sys/sys/tree.h
457
tmp = RB_RIGHT(parent, field); \
sys/sys/tree.h
464
elm = parent; \
sys/sys/tree.h
465
parent = RB_PARENT(elm, field); \
sys/sys/tree.h
474
tmp = RB_RIGHT(parent, field); \
sys/sys/tree.h
476
RB_COLOR(tmp, field) = RB_COLOR(parent, field);\
sys/sys/tree.h
477
RB_COLOR(parent, field) = RB_BLACK; \
sys/sys/tree.h
480
RB_ROTATE_LEFT(head, parent, tmp, field);\
sys/sys/tree.h
485
tmp = RB_LEFT(parent, field); \
sys/sys/tree.h
487
RB_SET_BLACKRED(tmp, parent, field); \
sys/sys/tree.h
488
RB_ROTATE_RIGHT(head, parent, tmp, field);\
sys/sys/tree.h
489
tmp = RB_LEFT(parent, field); \
sys/sys/tree.h
496
elm = parent; \
sys/sys/tree.h
497
parent = RB_PARENT(elm, field); \
sys/sys/tree.h
506
tmp = RB_LEFT(parent, field); \
sys/sys/tree.h
508
RB_COLOR(tmp, field) = RB_COLOR(parent, field);\
sys/sys/tree.h
509
RB_COLOR(parent, field) = RB_BLACK; \
sys/sys/tree.h
512
RB_ROTATE_RIGHT(head, parent, tmp, field);\
sys/sys/tree.h
525
struct type *child, *parent, *old = elm; \
sys/sys/tree.h
537
parent = RB_PARENT(elm, field); \
sys/sys/tree.h
540
RB_PARENT(child, field) = parent; \
sys/sys/tree.h
541
if (parent) { \
sys/sys/tree.h
542
if (RB_LEFT(parent, field) == elm) \
sys/sys/tree.h
543
RB_LEFT(parent, field) = child; \
sys/sys/tree.h
545
RB_RIGHT(parent, field) = child; \
sys/sys/tree.h
546
RB_AUGMENT(parent); \
sys/sys/tree.h
550
parent = elm; \
sys/sys/tree.h
563
if (parent) { \
sys/sys/tree.h
564
left = parent; \
sys/sys/tree.h
571
parent = RB_PARENT(elm, field); \
sys/sys/tree.h
574
RB_PARENT(child, field) = parent; \
sys/sys/tree.h
575
if (parent) { \
sys/sys/tree.h
576
if (RB_LEFT(parent, field) == elm) \
sys/sys/tree.h
577
RB_LEFT(parent, field) = child; \
sys/sys/tree.h
579
RB_RIGHT(parent, field) = child; \
sys/sys/tree.h
580
RB_AUGMENT(parent); \
sys/sys/tree.h
585
name##_RB_REMOVE_COLOR(head, parent, child); \
sys/sys/tree.h
594
struct type *parent = NULL; \
sys/sys/tree.h
598
parent = tmp; \
sys/sys/tree.h
599
comp = (cmp)(elm, parent); \
sys/sys/tree.h
607
RB_SET(elm, parent, field); \
sys/sys/tree.h
608
if (parent != NULL) { \
sys/sys/tree.h
610
RB_LEFT(parent, field) = elm; \
sys/sys/tree.h
612
RB_RIGHT(parent, field) = elm; \
sys/sys/tree.h
613
RB_AUGMENT(parent); \
sys/sys/tree.h
705
struct type *parent = NULL; \
sys/sys/tree.h
707
parent = tmp; \
sys/sys/tree.h
713
return (parent); \
sys/sys/tree.h
921
_name##_RBT_SET_PARENT(struct _type *elm, struct _type *parent) \
sys/sys/tree.h
923
_rb_set_parent(_name##_RBT_TYPE, elm, parent); \
sys/sys/witness.h
128
#define WITNESS_SETPARENT(lock, parent) \
sys/sys/witness.h
129
witness_setrelative((lock), (parent), 1)
sys/sys/witness.h
156
#define WITNESS_SETPARENT(lock, parent) (void)0
sys/tmpfs/tmpfs_vnops.c
1921
struct tmpfs_node *node = tdnode, *parent;
sys/tmpfs/tmpfs_vnops.c
1944
parent = node->tn_spec.tn_dir.tn_parent;
sys/tmpfs/tmpfs_vnops.c
1945
KASSERT(parent != NULL);
sys/tmpfs/tmpfs_vnops.c
1946
KASSERT(parent->tn_type == VDIR);
sys/tmpfs/tmpfs_vnops.c
1949
if (parent == node) {
sys/tmpfs/tmpfs_vnops.c
1955
if (parent == fdnode) {
sys/tmpfs/tmpfs_vnops.c
1961
node = parent;
usr.bin/awk/b.c
302
parent(left(p)) = p;
usr.bin/awk/b.c
308
parent(left(p)) = p;
usr.bin/awk/b.c
309
parent(right(p)) = p;
usr.bin/awk/b.c
580
p = parent(v);
usr.bin/cvs/client.c
159
char *entry, *parent, *base, *p;
usr.bin/cvs/client.c
185
if ((parent = dirname(parentbuf)) == NULL)
usr.bin/cvs/client.c
188
if (!strcmp(parent, "."))
usr.bin/cvs/client.c
195
entlist = cvs_ent_open(parent);
usr.bin/cvs/server.c
326
char *dir, *repo, *parent, *entry, *dirn, *p;
usr.bin/cvs/server.c
361
if ((parent = dirname(parentbuf)) == NULL)
usr.bin/cvs/server.c
364
if (strcmp(parent, ".")) {
usr.bin/cvs/server.c
369
entlist = cvs_ent_open(parent);
usr.bin/file/file.c
129
pid_t pid, parent;
usr.bin/file/file.c
198
parent = getpid();
usr.bin/file/file.c
206
child(pair[1], parent, argc, argv);
usr.bin/file/file.c
363
child(int fd, pid_t parent, int argc, char **argv)
usr.bin/file/file.c
409
if (read_message(&ibuf, &imsg, parent) == 0)
usr.bin/file/magic-load.c
1072
struct magic_line *ml = NULL, *parent, *parent0;
usr.bin/file/magic-load.c
1083
parent = NULL;
usr.bin/file/magic-load.c
1136
parent = parent0;
usr.bin/file/magic-load.c
1138
for (i = n; i < level && parent != NULL; i++)
usr.bin/file/magic-load.c
1139
parent = parent->parent;
usr.bin/file/magic-load.c
1145
ml->parent = parent;
usr.bin/file/magic-load.c
1160
if (ml->parent == NULL) {
usr.bin/file/magic-load.c
1166
TAILQ_INSERT_TAIL(&ml->parent->children, ml, entry);
usr.bin/file/magic-load.c
59
ml = ml->parent;
usr.bin/file/magic.h
108
struct magic_line *parent;
usr.bin/make/engine.c
276
Make_TimeStamp(GNode *parent, GNode *child)
usr.bin/make/engine.c
278
if (is_strictly_before(parent->youngest->mtime, child->mtime)) {
usr.bin/make/engine.c
279
parent->youngest = child;
usr.bin/make/engine.c
415
MakeTimeStamp(void *parent, void *child)
usr.bin/make/engine.c
417
Make_TimeStamp(parent, child);
usr.bin/make/expandchildren.c
237
expand_children_from(GNode *parent, LstNode from)
usr.bin/make/expandchildren.c
243
ExpandChildren(ln, parent);
usr.bin/make/suff.c
1084
targ->parent = NULL;
usr.bin/make/suff.c
1188
targ->parent = NULL;
usr.bin/make/suff.c
1224
for (targ = bottom; targ->parent != NULL; targ = targ->parent)
usr.bin/make/suff.c
124
struct Src_ *parent; /* The Src for which this is a source */
usr.bin/make/suff.c
1314
while (bottom && bottom->parent != NULL) {
usr.bin/make/suff.c
1316
bottom = bottom->parent;
usr.bin/make/suff.c
1340
for (src = bottom; src->parent != NULL; src = src->parent) {
usr.bin/make/suff.c
1341
targ = src->parent;
usr.bin/make/suff.c
661
s2->parent = targ;
usr.bin/make/suff.c
724
if (!s->parent)
usr.bin/make/suff.c
728
LstNode ln2 = Lst_Member(&s->parent->cp, s);
usr.bin/make/suff.c
730
Lst_Remove(&s->parent->cp, ln2);
usr.bin/make/suff.c
732
--s->parent->children;
usr.bin/make/suff.c
867
ret->parent = targ;
usr.bin/mandoc/eqn.c
1002
for (cur = parent; cur != NULL; cur = cur->parent)
usr.bin/mandoc/eqn.c
1010
parent = eqn_box_alloc(ep, cur);
usr.bin/mandoc/eqn.c
1011
parent->type = EQN_LIST;
usr.bin/mandoc/eqn.c
1014
while (parent->args == parent->expectargs)
usr.bin/mandoc/eqn.c
1015
parent = parent->parent;
usr.bin/mandoc/eqn.c
1016
parent = eqn_box_alloc(ep, parent);
usr.bin/mandoc/eqn.c
1017
parent->type = EQN_MATRIX;
usr.bin/mandoc/eqn.c
1018
parent->expectargs = 1;
usr.bin/mandoc/eqn.c
1032
while (parent->args == parent->expectargs)
usr.bin/mandoc/eqn.c
1033
parent = parent->parent;
usr.bin/mandoc/eqn.c
1034
cur = eqn_box_alloc(ep, parent);
usr.bin/mandoc/eqn.c
1075
if (parent->args == parent->expectargs) {
usr.bin/mandoc/eqn.c
1078
parent->first = cur->next;
usr.bin/mandoc/eqn.c
1081
parent->last = cur->prev;
usr.bin/mandoc/eqn.c
1082
parent->args--;
usr.bin/mandoc/eqn.c
1084
split = eqn_box_alloc(ep, parent);
usr.bin/mandoc/eqn.c
1088
cur->parent = split;
usr.bin/mandoc/eqn.c
1090
parent = split;
usr.bin/mandoc/eqn.c
1093
nbox = eqn_box_alloc(ep, parent);
usr.bin/mandoc/eqn.c
1108
parent = split->parent;
usr.bin/mandoc/eqn.c
516
eqn_box_alloc(struct eqn_node *ep, struct eqn_box *parent)
usr.bin/mandoc/eqn.c
521
bp->parent = parent;
usr.bin/mandoc/eqn.c
522
bp->parent->args++;
usr.bin/mandoc/eqn.c
523
bp->font = bp->parent->font;
usr.bin/mandoc/eqn.c
526
if (NULL != parent->first) {
usr.bin/mandoc/eqn.c
527
parent->last->next = bp;
usr.bin/mandoc/eqn.c
528
bp->prev = parent->last;
usr.bin/mandoc/eqn.c
530
parent->first = bp;
usr.bin/mandoc/eqn.c
532
parent->last = bp;
usr.bin/mandoc/eqn.c
543
eqn_box_makebinary(struct eqn_node *ep, struct eqn_box *parent)
usr.bin/mandoc/eqn.c
547
assert(NULL != parent->last);
usr.bin/mandoc/eqn.c
548
b = parent->last;
usr.bin/mandoc/eqn.c
549
if (parent->last == parent->first)
usr.bin/mandoc/eqn.c
550
parent->first = NULL;
usr.bin/mandoc/eqn.c
551
parent->args--;
usr.bin/mandoc/eqn.c
552
parent->last = b->prev;
usr.bin/mandoc/eqn.c
554
newb = eqn_box_alloc(ep, parent);
usr.bin/mandoc/eqn.c
560
b->parent = newb;
usr.bin/mandoc/eqn.c
662
struct eqn_box *cur, *nbox, *parent, *split;
usr.bin/mandoc/eqn.c
669
parent = ep->node->eqn;
usr.bin/mandoc/eqn.c
670
assert(parent != NULL);
usr.bin/mandoc/eqn.c
720
if (parent->last == NULL) {
usr.bin/mandoc/eqn.c
723
cur = eqn_box_alloc(ep, parent);
usr.bin/mandoc/eqn.c
727
parent = eqn_box_makebinary(ep, parent);
usr.bin/mandoc/eqn.c
728
parent->type = EQN_LIST;
usr.bin/mandoc/eqn.c
729
parent->expectargs = 1;
usr.bin/mandoc/eqn.c
730
parent->font = EQNFONT_ROMAN;
usr.bin/mandoc/eqn.c
733
parent->top = mandoc_strdup("\\[ad]");
usr.bin/mandoc/eqn.c
736
parent->top = mandoc_strdup("\\[->]");
usr.bin/mandoc/eqn.c
739
parent->top = mandoc_strdup("\\[<>]");
usr.bin/mandoc/eqn.c
742
parent->top = mandoc_strdup("\\[a~]");
usr.bin/mandoc/eqn.c
745
parent->bottom = mandoc_strdup("\\[ul]");
usr.bin/mandoc/eqn.c
748
parent->top = mandoc_strdup("\\[rn]");
usr.bin/mandoc/eqn.c
751
parent->top = mandoc_strdup("\\[a.]");
usr.bin/mandoc/eqn.c
754
parent->top = mandoc_strdup("\\[ha]");
usr.bin/mandoc/eqn.c
759
parent = parent->parent;
usr.bin/mandoc/eqn.c
773
while (parent->args == parent->expectargs)
usr.bin/mandoc/eqn.c
774
parent = parent->parent;
usr.bin/mandoc/eqn.c
780
parent = eqn_box_alloc(ep, parent);
usr.bin/mandoc/eqn.c
781
parent->type = EQN_LIST;
usr.bin/mandoc/eqn.c
782
parent->expectargs = 1;
usr.bin/mandoc/eqn.c
785
parent->font = EQNFONT_FAT;
usr.bin/mandoc/eqn.c
788
parent->font = EQNFONT_ROMAN;
usr.bin/mandoc/eqn.c
791
parent->font = EQNFONT_ITALIC;
usr.bin/mandoc/eqn.c
794
parent->font = EQNFONT_BOLD;
usr.bin/mandoc/eqn.c
818
while (parent->args == parent->expectargs)
usr.bin/mandoc/eqn.c
819
parent = parent->parent;
usr.bin/mandoc/eqn.c
820
parent = eqn_box_alloc(ep, parent);
usr.bin/mandoc/eqn.c
821
parent->type = EQN_LIST;
usr.bin/mandoc/eqn.c
822
parent->expectargs = 1;
usr.bin/mandoc/eqn.c
823
parent->size = size;
usr.bin/mandoc/eqn.c
834
if (parent->last == NULL) {
usr.bin/mandoc/eqn.c
837
cur = eqn_box_alloc(ep, parent);
usr.bin/mandoc/eqn.c
841
while (parent->expectargs == 1 && parent->args == 1)
usr.bin/mandoc/eqn.c
842
parent = parent->parent;
usr.bin/mandoc/eqn.c
844
for (cur = parent; cur != NULL; cur = cur->parent)
usr.bin/mandoc/eqn.c
852
parent = cur->parent;
usr.bin/mandoc/eqn.c
854
if (tok == EQN_TOK_SUP && parent->pos == EQNPOS_SUB) {
usr.bin/mandoc/eqn.c
855
parent->expectargs = 3;
usr.bin/mandoc/eqn.c
856
parent->pos = EQNPOS_SUBSUP;
usr.bin/mandoc/eqn.c
859
if (tok == EQN_TOK_TO && parent->pos == EQNPOS_FROM) {
usr.bin/mandoc/eqn.c
860
parent->expectargs = 3;
usr.bin/mandoc/eqn.c
861
parent->pos = EQNPOS_FROMTO;
usr.bin/mandoc/eqn.c
864
parent = eqn_box_makebinary(ep, parent);
usr.bin/mandoc/eqn.c
867
parent->pos = EQNPOS_FROM;
usr.bin/mandoc/eqn.c
870
parent->pos = EQNPOS_TO;
usr.bin/mandoc/eqn.c
873
parent->pos = EQNPOS_SUP;
usr.bin/mandoc/eqn.c
876
parent->pos = EQNPOS_SUB;
usr.bin/mandoc/eqn.c
883
while (parent->args == parent->expectargs)
usr.bin/mandoc/eqn.c
884
parent = parent->parent;
usr.bin/mandoc/eqn.c
890
parent = eqn_box_alloc(ep, parent);
usr.bin/mandoc/eqn.c
891
parent->type = EQN_SUBEXPR;
usr.bin/mandoc/eqn.c
892
parent->pos = EQNPOS_SQRT;
usr.bin/mandoc/eqn.c
893
parent->expectargs = 1;
usr.bin/mandoc/eqn.c
901
if (parent->last == NULL) {
usr.bin/mandoc/eqn.c
904
cur = eqn_box_alloc(ep, parent);
usr.bin/mandoc/eqn.c
908
while (parent->args == parent->expectargs)
usr.bin/mandoc/eqn.c
909
parent = parent->parent;
usr.bin/mandoc/eqn.c
910
while (EQN_SUBEXPR == parent->type)
usr.bin/mandoc/eqn.c
911
parent = parent->parent;
usr.bin/mandoc/eqn.c
912
parent = eqn_box_makebinary(ep, parent);
usr.bin/mandoc/eqn.c
913
parent->pos = EQNPOS_OVER;
usr.bin/mandoc/eqn.c
922
for (cur = parent; cur != NULL; cur = cur->parent)
usr.bin/mandoc/eqn.c
933
parent = cur;
usr.bin/mandoc/eqn.c
943
parent->right = mandoc_strdup("\\[rc]");
usr.bin/mandoc/eqn.c
945
parent->right = mandoc_strdup("\\[rf]");
usr.bin/mandoc/eqn.c
947
parent->right =
usr.bin/mandoc/eqn.c
950
parent = parent->parent;
usr.bin/mandoc/eqn.c
952
(parent->type == EQN_PILE ||
usr.bin/mandoc/eqn.c
953
parent->type == EQN_MATRIX))
usr.bin/mandoc/eqn.c
954
parent = parent->parent;
usr.bin/mandoc/eqn.c
956
while (parent->type == EQN_LIST &&
usr.bin/mandoc/eqn.c
957
parent->expectargs == 1 &&
usr.bin/mandoc/eqn.c
958
parent->args == 1)
usr.bin/mandoc/eqn.c
959
parent = parent->parent;
usr.bin/mandoc/eqn.c
968
while (parent->args == parent->expectargs)
usr.bin/mandoc/eqn.c
969
parent = parent->parent;
usr.bin/mandoc/eqn.c
976
parent = eqn_box_alloc(ep, parent);
usr.bin/mandoc/eqn.c
977
parent->type = EQN_LIST;
usr.bin/mandoc/eqn.c
980
parent->left = mandoc_strdup("\\[lc]");
usr.bin/mandoc/eqn.c
982
parent->left = mandoc_strdup("\\[lf]");
usr.bin/mandoc/eqn.c
984
parent->left =
usr.bin/mandoc/eqn.c
995
while (parent->args == parent->expectargs)
usr.bin/mandoc/eqn.c
996
parent = parent->parent;
usr.bin/mandoc/eqn.c
997
parent = eqn_box_alloc(ep, parent);
usr.bin/mandoc/eqn.c
998
parent->type = EQN_PILE;
usr.bin/mandoc/eqn.c
999
parent->expectargs = 1;
usr.bin/mandoc/eqn.h
55
struct eqn_box *parent;
usr.bin/mandoc/eqn_html.c
140
bp->parent && bp->parent->type == EQN_PILE) {
usr.bin/mandoc/eqn_html.c
36
const struct eqn_box *child, *parent;
usr.bin/mandoc/eqn_html.c
59
if (NULL == (parent = bp->first->first))
usr.bin/mandoc/eqn_html.c
62
if (NULL == (child = parent->first))
usr.bin/mandoc/eqn_html.c
69
parent = bp->first->first;
usr.bin/mandoc/eqn_html.c
71
while (NULL != parent) {
usr.bin/mandoc/eqn_html.c
72
child = parent->first;
usr.bin/mandoc/eqn_html.c
87
parent = parent->next;
usr.bin/mandoc/eqn_term.c
169
if (bp->parent->type == EQN_SUBEXPR && bp->next != NULL)
usr.bin/mandoc/eqn_term.c
60
(bp->parent != NULL && (bp->parent->pos == EQNPOS_SQRT ||
usr.bin/mandoc/eqn_term.c
63
bp->parent->type == EQN_SUBEXPR &&
usr.bin/mandoc/eqn_term.c
64
bp->parent->pos != EQNPOS_OVER && bp->next != NULL) ||
usr.bin/mandoc/eqn_term.c
67
((bp->parent->type == EQN_LIST && bp->expectargs == 1) ||
usr.bin/mandoc/eqn_term.c
68
(bp->parent->type == EQN_SUBEXPR &&
usr.bin/mandoc/eqn_term.c
70
if ((bp->parent->type == EQN_SUBEXPR && bp->prev != NULL) ||
usr.bin/mandoc/man.c
272
man_unscope(man, man->last->parent);
usr.bin/mandoc/man.c
297
n = n->parent;
usr.bin/mandoc/man.c
301
n = n->parent;
usr.bin/mandoc/man.c
305
if (n->parent->type != ROFFT_ELEM ||
usr.bin/mandoc/man.c
306
(man_macro(n->parent->tok)->flags &
usr.bin/mandoc/man.c
309
n = n->parent;
usr.bin/mandoc/man.c
339
n = n->parent;
usr.bin/mandoc/man.c
342
n = n->parent;
usr.bin/mandoc/man.c
345
n = n->parent;
usr.bin/mandoc/man.c
80
while (man->last->parent->type != ROFFT_ROOT &&
usr.bin/mandoc/man.c
81
man_macro(man->last->parent->tok)->flags & MAN_ESCOPED)
usr.bin/mandoc/man.c
82
man_unscope(man, man->last->parent);
usr.bin/mandoc/man.c
95
man_unscope(man, man->last->parent);
usr.bin/mandoc/man_html.c
462
nn = n->type == ROFFT_BLOCK ? n : n->parent;
usr.bin/mandoc/man_macro.c
110
if (n->parent->type == ROFFT_ROOT ||
usr.bin/mandoc/man_macro.c
111
(man_macro(n->parent->tok)->flags &
usr.bin/mandoc/man_macro.c
116
n = n->parent;
usr.bin/mandoc/man_macro.c
120
n = n->parent;
usr.bin/mandoc/man_macro.c
139
n = n->parent;
usr.bin/mandoc/man_macro.c
175
n = n->parent;
usr.bin/mandoc/man_macro.c
179
if (n->parent->type == ROFFT_ROOT) {
usr.bin/mandoc/man_macro.c
183
n = n->parent;
usr.bin/mandoc/man_macro.c
215
for (nn = man->last->parent; nn; nn = nn->parent)
usr.bin/mandoc/man_macro.c
246
for (nn = man->last->parent; nn; nn = nn->parent)
usr.bin/mandoc/man_macro.c
438
for ( ; man->last; man->last = man->last->parent) {
usr.bin/mandoc/man_macro.c
96
to = to->parent;
usr.bin/mandoc/man_term.c
1003
if (n->parent->tok == MAN_HP && n->parent->type == ROFFT_BODY &&
usr.bin/mandoc/man_term.c
215
n = n->parent;
usr.bin/mandoc/man_term.c
219
n = n->parent;
usr.bin/mandoc/man_term.c
248
if (n->parent->tok == MAN_HP && p->tcol->rmargin < p->maxrmargin) {
usr.bin/mandoc/man_term.c
453
if ((nn = n->parent->head->child) != NULL &&
usr.bin/mandoc/man_term.c
541
if ((nn = n->parent->head->child) != NULL &&
usr.bin/mandoc/man_term.c
616
if ((nn = n->parent->head->child) != NULL &&
usr.bin/mandoc/man_term.c
791
n = n->parent->head;
usr.bin/mandoc/man_term.c
826
mt->offset -= n->parent->head->aux;
usr.bin/mandoc/man_term.c
850
nn = n->parent->head->child;
usr.bin/mandoc/man_validate.c
422
if (n->parent->head->child == NULL && n->child == NULL)
usr.bin/mandoc/man_validate.c
665
if (n->parent->tok != MAN_TP ||
usr.bin/mandoc/man_validate.c
666
n->parent->type != ROFFT_HEAD ||
usr.bin/mandoc/mandocdb.c
1455
if ((head = body->parent->head) != NULL &&
usr.bin/mandoc/mansearch.c
609
struct expr *parent, *child;
usr.bin/mandoc/mansearch.c
615
parent = child = NULL;
usr.bin/mandoc/mansearch.c
645
if (parent == NULL) {
usr.bin/mandoc/mansearch.c
646
parent = mandoc_calloc(1, sizeof(*parent));
usr.bin/mandoc/mansearch.c
647
parent->type = EXPR_OR;
usr.bin/mandoc/mansearch.c
648
parent->next = NULL;
usr.bin/mandoc/mansearch.c
649
parent->child = child;
usr.bin/mandoc/mansearch.c
656
return parent == NULL ? child : parent;
usr.bin/mandoc/mansearch.c
662
struct expr *parent, *child;
usr.bin/mandoc/mansearch.c
666
parent = child = NULL;
usr.bin/mandoc/mansearch.c
698
if (parent == NULL) {
usr.bin/mandoc/mansearch.c
699
parent = mandoc_calloc(1, sizeof(*parent));
usr.bin/mandoc/mansearch.c
700
parent->type = EXPR_AND;
usr.bin/mandoc/mansearch.c
701
parent->next = NULL;
usr.bin/mandoc/mansearch.c
702
parent->child = child;
usr.bin/mandoc/mansearch.c
712
return parent == NULL ? child : parent;
usr.bin/mandoc/mdoc.c
180
(n->parent != NULL && n->parent->tok == MDOC_Bl &&
usr.bin/mandoc/mdoc.c
181
n->parent->norm->Bl.type == LIST_column)) {
usr.bin/mandoc/mdoc.c
375
(n->parent != NULL && n->parent->tok == MDOC_Bl &&
usr.bin/mandoc/mdoc.c
376
n->parent->norm->Bl.type == LIST_column)) {
usr.bin/mandoc/mdoc.c
99
body->parent->flags |= NODE_ENDED;
usr.bin/mandoc/mdoc_argv.c
429
for (n = mdoc->last; n != NULL; n = n->parent) {
usr.bin/mandoc/mdoc_html.c
1049
if (n->parent->tok != MDOC_Fo) {
usr.bin/mandoc/mdoc_html.c
1566
if (n->parent != NULL && n->parent->tok == MDOC_Rs &&
usr.bin/mandoc/mdoc_html.c
1567
n->parent->norm->Rs.quote_T) {
usr.bin/mandoc/mdoc_html.c
1601
if (n->parent != NULL && n->parent->tok == MDOC_Rs &&
usr.bin/mandoc/mdoc_html.c
1602
n->parent->norm->Rs.quote_T) {
usr.bin/mandoc/mdoc_html.c
1610
if (n->parent == NULL || n->parent->tok != MDOC_Rs)
usr.bin/mandoc/mdoc_html.c
1627
if (n->parent->args != NULL || n->prev->child == NULL)
usr.bin/mandoc/mdoc_html.c
1776
n->parent->head->child == NULL &&
usr.bin/mandoc/mdoc_html.c
1781
n->parent->head->child != NULL && (n->child != NULL ||
usr.bin/mandoc/mdoc_html.c
1782
(n->parent->tail != NULL && n->parent->tail->child != NULL)))
usr.bin/mandoc/mdoc_html.c
1800
body = n->child != NULL || n->parent->head->child != NULL;
usr.bin/mandoc/mdoc_html.c
1801
tail = n->parent->tail != NULL && n->parent->tail->child != NULL;
usr.bin/mandoc/mdoc_html.c
753
bl = n->parent;
usr.bin/mandoc/mdoc_html.c
755
bl = bl->parent;
usr.bin/mandoc/mdoc_html.c
972
for (nn = n; nn != NULL && comp == 0; nn = nn->parent) {
usr.bin/mandoc/mdoc_macro.c
1076
mdoc->last->parent->tok != MDOC_Bl ||
usr.bin/mandoc/mdoc_macro.c
1077
mdoc->last->parent->norm->Bl.type != LIST_diag;
usr.bin/mandoc/mdoc_macro.c
1506
n = n->parent;
usr.bin/mandoc/mdoc_macro.c
1508
rew_last(mdoc, n->parent);
usr.bin/mandoc/mdoc_macro.c
1578
for (n = mdoc->last; n != NULL; n = n->parent) {
usr.bin/mandoc/mdoc_macro.c
225
mdoc->last->parent : mdoc->last;
usr.bin/mandoc/mdoc_macro.c
227
for ( ; n; n = n->parent)
usr.bin/mandoc/mdoc_macro.c
275
mdoc->last = mdoc->last->parent;
usr.bin/mandoc/mdoc_macro.c
311
if ((n = n->parent) == NULL)
usr.bin/mandoc/mdoc_macro.c
377
n = n->parent;
usr.bin/mandoc/mdoc_macro.c
389
n = n->parent;
usr.bin/mandoc/mdoc_macro.c
393
n = n->parent;
usr.bin/mandoc/mdoc_macro.c
413
for (n = mdoc->last; n != NULL && n != target; n = n->parent) {
usr.bin/mandoc/mdoc_macro.c
466
mdoc->last->parent->tok != MDOC_Fd)
usr.bin/mandoc/mdoc_macro.c
572
for (n = mdoc->last; n; n = n->parent) {
usr.bin/mandoc/mdoc_macro.c
586
for (n = mdoc->last; n; n = n->parent) {
usr.bin/mandoc/mdoc_macro.c
753
target = target->parent;
usr.bin/mandoc/mdoc_macro.c
975
for (n = mdoc->last; n != NULL; n = n->parent) {
usr.bin/mandoc/mdoc_man.c
1004
if (roff_node_next(n->parent) != NULL)
usr.bin/mandoc/mdoc_man.c
1062
while ((n = n->parent) != NULL)
usr.bin/mandoc/mdoc_man.c
1136
if (roff_node_next(n->parent) != NULL)
usr.bin/mandoc/mdoc_man.c
1159
if (roff_node_next(n->parent) != NULL)
usr.bin/mandoc/mdoc_man.c
1203
n->parent->head->child == NULL &&
usr.bin/mandoc/mdoc_man.c
1208
n->parent->head->child != NULL && (n->child != NULL ||
usr.bin/mandoc/mdoc_man.c
1209
(n->parent->tail != NULL && n->parent->tail->child != NULL)))
usr.bin/mandoc/mdoc_man.c
1224
body = n->child != NULL || n->parent->head->child != NULL;
usr.bin/mandoc/mdoc_man.c
1225
tail = n->parent->tail != NULL && n->parent->tail->child != NULL;
usr.bin/mandoc/mdoc_man.c
1442
bln = n->parent->parent;
usr.bin/mandoc/mdoc_man.c
1444
(n->parent->prev == NULL &&
usr.bin/mandoc/mdoc_man.c
1445
roff_node_prev(bln->parent) == NULL))
usr.bin/mandoc/mdoc_man.c
1532
bln = n->parent->parent;
usr.bin/mandoc/mdoc_man.c
1670
if (roff_node_prev(n->parent) == NULL)
usr.bin/mandoc/mdoc_man.c
1733
if (MDOC_It != n->parent->tok)
usr.bin/mandoc/mdoc_man.c
798
if (n->parent == NULL || n->parent->tok != MDOC_Rs)
usr.bin/mandoc/mdoc_man.c
821
if (n->parent->tok == MDOC_Rs && n->parent->norm->Rs.quote_T) {
usr.bin/mandoc/mdoc_man.c
833
if (n->parent->tok == MDOC_Rs && n->parent->norm->Rs.quote_T) {
usr.bin/mandoc/mdoc_man.c
972
if (n->norm->Bd.comp == 0 && roff_node_prev(n->parent) != NULL)
usr.bin/mandoc/mdoc_markdown.c
1024
n->parent->head->child == NULL &&
usr.bin/mandoc/mdoc_markdown.c
1029
n->parent->head->child != NULL && (n->child != NULL ||
usr.bin/mandoc/mdoc_markdown.c
1030
(n->parent->tail != NULL && n->parent->tail->child != NULL)))
usr.bin/mandoc/mdoc_markdown.c
1043
if (n->child == NULL && n->parent->head->child == NULL)
usr.bin/mandoc/mdoc_markdown.c
1046
if (n->parent->tail != NULL && n->parent->tail->child != NULL)
usr.bin/mandoc/mdoc_markdown.c
1218
bln = n->parent->parent;
usr.bin/mandoc/mdoc_markdown.c
1266
bln = n->parent->parent;
usr.bin/mandoc/mdoc_markdown.c
1294
bln = n->parent->parent;
usr.bin/mandoc/mdoc_markdown.c
1621
if (n->parent->tok == MDOC_Rs && n->parent->norm->Rs.quote_T)
usr.bin/mandoc/mdoc_markdown.c
1633
if (n->parent->tok == MDOC_Rs && n->parent->norm->Rs.quote_T)
usr.bin/mandoc/mdoc_markdown.c
808
if (n->parent->tok != MDOC_Rs)
usr.bin/mandoc/mdoc_state.c
188
if (n->type != ROFFT_HEAD || n->parent->args == NULL)
usr.bin/mandoc/mdoc_state.c
191
args = n->parent->args;
usr.bin/mandoc/mdoc_state.c
234
n->parent->sec = sec;
usr.bin/mandoc/mdoc_term.c
1406
if (n->parent->tok != MDOC_Fo)
usr.bin/mandoc/mdoc_term.c
1711
n->parent->head->child == NULL &&
usr.bin/mandoc/mdoc_term.c
1716
n->parent->head->child != NULL && (n->child != NULL ||
usr.bin/mandoc/mdoc_term.c
1717
(n->parent->tail != NULL && n->parent->tail->child != NULL)))
usr.bin/mandoc/mdoc_term.c
1736
body = n->child != NULL || n->parent->head->child != NULL;
usr.bin/mandoc/mdoc_term.c
1737
tail = n->parent->tail != NULL && n->parent->tail->child != NULL;
usr.bin/mandoc/mdoc_term.c
1860
if (n->parent == NULL || n->parent->tok != MDOC_Rs)
usr.bin/mandoc/mdoc_term.c
1927
if (n->parent->args != NULL || n->prev->child == NULL)
usr.bin/mandoc/mdoc_term.c
1950
if (n->parent != NULL && n->parent->tok == MDOC_Rs &&
usr.bin/mandoc/mdoc_term.c
1951
n->parent->norm->Rs.quote_T)
usr.bin/mandoc/mdoc_term.c
1959
if (n->parent != NULL && n->parent->tok == MDOC_Rs &&
usr.bin/mandoc/mdoc_term.c
1960
n->parent->norm->Rs.quote_T)
usr.bin/mandoc/mdoc_term.c
598
nn = nn->parent;
usr.bin/mandoc/mdoc_term.c
605
nn->parent->parent->norm->Bl.type != LIST_item)
usr.bin/mandoc/mdoc_term.c
638
print_bvspace(p, n->parent->parent, n);
usr.bin/mandoc/mdoc_term.c
644
bl = n->parent->parent->parent;
usr.bin/mandoc/mdoc_term.c
763
if (n->type == ROFFT_BODY && n->parent->head->child != NULL)
usr.bin/mandoc/mdoc_term.c
935
type = n->parent->parent->parent->norm->Bl.type;
usr.bin/mandoc/mdoc_term.c
994
synopsis_pre(p, n->parent);
usr.bin/mandoc/mdoc_validate.c
1062
mdoc->last = mdoc->last->parent;
usr.bin/mandoc/mdoc_validate.c
1122
for (nn = n; nn != NULL; nn = nn->parent) {
usr.bin/mandoc/mdoc_validate.c
1174
np = nn->parent;
usr.bin/mandoc/mdoc_validate.c
1176
np = np->parent;
usr.bin/mandoc/mdoc_validate.c
1269
assert(np->parent->type == ROFFT_BLOCK);
usr.bin/mandoc/mdoc_validate.c
1270
assert(np->parent->tok == MDOC_Bf);
usr.bin/mandoc/mdoc_validate.c
1275
if (np->parent->args == NULL) {
usr.bin/mandoc/mdoc_validate.c
1289
if (np->parent->args != NULL) {
usr.bin/mandoc/mdoc_validate.c
1290
switch (np->parent->args->argv[0].arg) {
usr.bin/mandoc/mdoc_validate.c
1472
n->body->parent->args == NULL)
usr.bin/mandoc/mdoc_validate.c
1495
for (np = n->parent; np != NULL; np = np->parent) {
usr.bin/mandoc/mdoc_validate.c
1608
(n->parent->tok == MDOC_It ||
usr.bin/mandoc/mdoc_validate.c
1609
(n->parent->tok == MDOC_Bq &&
usr.bin/mandoc/mdoc_validate.c
1610
n->parent->parent->parent->tok == MDOC_It)))
usr.bin/mandoc/mdoc_validate.c
1624
(n->parent->tok == MDOC_It ||
usr.bin/mandoc/mdoc_validate.c
1625
(n->parent->tok == MDOC_Xo &&
usr.bin/mandoc/mdoc_validate.c
1626
n->parent->parent->prev == NULL &&
usr.bin/mandoc/mdoc_validate.c
1627
n->parent->parent->parent->tok == MDOC_It)))
usr.bin/mandoc/mdoc_validate.c
1727
nbl = nit->parent->parent;
usr.bin/mandoc/mdoc_validate.c
1883
nbl = nh->parent;
usr.bin/mandoc/mdoc_validate.c
1965
if (nbody->parent->prev == NULL) {
usr.bin/mandoc/mdoc_validate.c
1966
mdoc->last = nbody->parent->parent;
usr.bin/mandoc/mdoc_validate.c
1969
mdoc->last = nbody->parent->prev;
usr.bin/mandoc/mdoc_validate.c
2680
if (n->tok == MDOC_It && n->parent->norm->Bl.comp)
usr.bin/mandoc/mdoc_validate.c
344
np = n->parent;
usr.bin/mandoc/mdoc_validate.c
350
np->parent->parent->norm->Bl.type != LIST_diag))
usr.bin/mandoc/mdoc_validate.c
644
n = mdoc->last->parent;
usr.bin/mandoc/mdoc_validate.c
936
n = mdoc->last = mdoc->last->parent;
usr.bin/mandoc/mdoc_validate.c
972
mdoc->last = mdoc->last->parent;
usr.bin/mandoc/roff.c
1058
if (n->parent != NULL) {
usr.bin/mandoc/roff.c
1059
if (n->parent->child == n)
usr.bin/mandoc/roff.c
1060
n->parent->child = n->next;
usr.bin/mandoc/roff.c
1061
if (n->parent->last == n)
usr.bin/mandoc/roff.c
1062
n->parent->last = n->prev;
usr.bin/mandoc/roff.c
1071
man->last = n->parent;
usr.bin/mandoc/roff.c
133
struct roffnode *parent; /* up one in stack */
usr.bin/mandoc/roff.c
2391
for (bl = r->last; bl != NULL; bl = bl->parent) {
usr.bin/mandoc/roff.c
2702
if (r->last->parent && !r->last->parent->rule)
usr.bin/mandoc/roff.c
3512
r->man->last = r->man->last->parent;
usr.bin/mandoc/roff.c
3516
roffce_node = r->man->last->parent;
usr.bin/mandoc/roff.c
697
r->last = p->parent;
usr.bin/mandoc/roff.c
718
p->parent = r->last;
usr.bin/mandoc/roff.c
721
p->rule = p->parent ? p->parent->rule : 0;
usr.bin/mandoc/roff.c
914
man->last->parent->last = n;
usr.bin/mandoc/roff.c
917
n->parent = man->last->parent;
usr.bin/mandoc/roff.c
926
n->parent = man->last;
usr.bin/mandoc/roff.c
935
n->parent->head = n;
usr.bin/mandoc/roff.c
940
n->parent->body = n;
usr.bin/mandoc/roff.c
943
n->parent->tail = n;
usr.bin/mandoc/roff.c
954
n->norm = n->parent->norm;
usr.bin/mandoc/roff.c
955
assert(n->parent->type == ROFFT_BLOCK);
usr.bin/mandoc/roff.h
499
struct roff_node *parent; /* Parent AST node. */
usr.bin/mandoc/tag.c
253
else if ((np = np->parent) == NULL)
usr.bin/mandoc/tag.c
257
switch (np->parent->parent->norm->Bl.type) {
usr.bin/mandoc/tag.c
260
np = np->parent;
usr.bin/mandoc/tag.c
268
np = np->parent->head;
usr.bin/pkgconf/libpkgconf/fragment.c
213
pkgconf_fragment_t *parent = list->tail->data;
usr.bin/pkgconf/libpkgconf/fragment.c
216
if (!parent->type && parent->data != NULL &&
usr.bin/pkgconf/libpkgconf/fragment.c
217
pkgconf_fragment_is_unmergeable(parent->data) &&
usr.bin/pkgconf/libpkgconf/fragment.c
218
!(parent->flags & PKGCONF_PKG_FRAGF_TERMINATED))
usr.bin/pkgconf/libpkgconf/fragment.c
220
if (pkgconf_fragment_is_groupable(parent->data))
usr.bin/pkgconf/libpkgconf/fragment.c
221
target = &parent->children;
usr.bin/pkgconf/libpkgconf/fragment.c
224
parent->flags |= PKGCONF_PKG_FRAGF_TERMINATED;
usr.bin/pkgconf/libpkgconf/fragment.c
323
const pkgconf_fragment_t *parent;
usr.bin/pkgconf/libpkgconf/fragment.c
330
parent = base->iter.prev->data;
usr.bin/pkgconf/libpkgconf/fragment.c
331
if (parent == NULL)
usr.bin/pkgconf/libpkgconf/fragment.c
334
switch (parent->type)
usr.bin/pkgconf/libpkgconf/fragment.c
341
return !base->type || parent->type == base->type;
usr.bin/pkgconf/libpkgconf/libpkgconf.h
112
pkgconf_pkg_t *parent;
usr.bin/pkgconf/libpkgconf/libpkgconf.h
390
PKGCONF_API pkgconf_tuple_t *pkgconf_tuple_add(const pkgconf_client_t *client, pkgconf_list_t *parent, const char *key, const char *value, bool parse, unsigned int flags);
usr.bin/pkgconf/libpkgconf/pkg.c
1521
pkgconf_pkg_report_graph_error(pkgconf_client_t *client, pkgconf_pkg_t *parent, pkgconf_pkg_t *pkg, pkgconf_dependency_t *node, unsigned int eflags)
usr.bin/pkgconf/libpkgconf/pkg.c
1533
if (parent->flags & PKGCONF_PKG_PROPF_VIRTUAL)
usr.bin/pkgconf/libpkgconf/pkg.c
1536
pkgconf_error(client, "Package '%s', required by '%s', not found\n", node->package, parent->id);
usr.bin/pkgconf/libpkgconf/pkg.c
1558
pkgconf_pkg_t *parent,
usr.bin/pkgconf/libpkgconf/pkg.c
1568
parent->flags |= PKGCONF_PKG_PROPF_ANCESTOR;
usr.bin/pkgconf/libpkgconf/pkg.c
1584
pkgconf_pkg_report_graph_error(client, parent, pkgdep, depnode, eflags_local);
usr.bin/pkgconf/libpkgconf/pkg.c
1602
!(parent->flags & PKGCONF_PKG_PROPF_VIRTUAL))
usr.bin/pkgconf/libpkgconf/pkg.c
1605
parent->id, parent->id, pkgdep->id, parent->id);
usr.bin/pkgconf/libpkgconf/pkg.c
1624
parent->flags &= ~PKGCONF_PKG_PROPF_ANCESTOR;
usr.bin/ssh/sshbuf.c
101
ret->parent = NULL;
usr.bin/ssh/sshbuf.c
120
ret->parent = NULL;
usr.bin/ssh/sshbuf.c
127
sshbuf_set_parent(struct sshbuf *child, struct sshbuf *parent)
usr.bin/ssh/sshbuf.c
132
(r = sshbuf_check_sanity(parent)) != 0)
usr.bin/ssh/sshbuf.c
134
if ((child->parent != NULL && child->parent != parent) ||
usr.bin/ssh/sshbuf.c
135
child == parent)
usr.bin/ssh/sshbuf.c
137
child->parent = parent;
usr.bin/ssh/sshbuf.c
138
child->parent->refcount++;
usr.bin/ssh/sshbuf.c
185
sshbuf_free(buf->parent);
usr.bin/ssh/sshbuf.c
186
buf->parent = NULL;
usr.bin/ssh/sshbuf.c
231
return buf->parent;
usr.bin/ssh/sshbuf.c
435
if (child->parent != buf)
usr.bin/ssh/sshbuf.c
49
struct sshbuf *parent; /* If child, pointer to parent */
usr.bin/ssh/sshbuf.c
58
buf->parent == buf ||
usr.bin/ssh/sshbuf.h
397
int sshbuf_set_parent(struct sshbuf *child, struct sshbuf *parent);
usr.bin/systat/pftop.c
1490
struct pfctl_queue_node *node, *parent;
usr.bin/systat/pftop.c
1498
if (node->qs.parent[0]) {
usr.bin/systat/pftop.c
1499
parent = pfctl_find_queue_node(node->qs.parent,
usr.bin/systat/pftop.c
1501
if (parent)
usr.bin/systat/pftop.c
1502
node->depth = parent->depth + 1;
usr.bin/tmux/cmd-resize-pane.c
204
type = cells[i]->parent->type;
usr.bin/tmux/cmd-set-option.c
141
parent = options_get(oo, name);
usr.bin/tmux/cmd-set-option.c
144
if (idx != -1 && (*name == '@' || !options_is_array(parent))) {
usr.bin/tmux/cmd-set-option.c
194
} else if (idx == -1 && !options_is_array(parent)) {
usr.bin/tmux/cmd-set-option.c
195
error = options_from_string(oo, options_table_entry(parent),
usr.bin/tmux/cmd-set-option.c
196
options_table_entry(parent)->name, value,
usr.bin/tmux/cmd-set-option.c
209
o = options_empty(oo, options_table_entry(parent));
usr.bin/tmux/cmd-set-option.c
91
struct options_entry *parent, *o, *po;
usr.bin/tmux/cmd-show-options.c
125
parent = 1;
usr.bin/tmux/cmd-show-options.c
127
parent = 0;
usr.bin/tmux/cmd-show-options.c
129
cmd_show_options_print(self, item, o, idx, parent);
usr.bin/tmux/cmd-show-options.c
150
struct options_entry *o, int idx, int parent)
usr.bin/tmux/cmd-show-options.c
171
parent);
usr.bin/tmux/cmd-show-options.c
183
if (parent)
usr.bin/tmux/cmd-show-options.c
189
if (parent)
usr.bin/tmux/cmd-show-options.c
209
int parent;
usr.bin/tmux/cmd-show-options.c
237
parent = 1;
usr.bin/tmux/cmd-show-options.c
239
parent = 0;
usr.bin/tmux/cmd-show-options.c
242
cmd_show_options_print(self, item, o, -1, parent);
usr.bin/tmux/cmd-show-options.c
246
if (parent)
usr.bin/tmux/cmd-show-options.c
255
parent);
usr.bin/tmux/cmd-show-options.c
84
int window, idx, ambiguous, parent, scope;
usr.bin/tmux/layout.c
1034
lcparent = layout_create_cell(lc->parent);
usr.bin/tmux/layout.c
1037
if (lc->parent == NULL)
usr.bin/tmux/layout.c
1040
TAILQ_REPLACE(&lc->parent->cells, lc, lcparent, entry);
usr.bin/tmux/layout.c
1043
lc->parent = lcparent;
usr.bin/tmux/layout.c
1100
layout_spread_cell(struct window *w, struct layout_cell *parent)
usr.bin/tmux/layout.c
1107
TAILQ_FOREACH (lc, &parent->cells, entry)
usr.bin/tmux/layout.c
1113
if (parent->type == LAYOUT_LEFTRIGHT)
usr.bin/tmux/layout.c
1114
size = parent->sx;
usr.bin/tmux/layout.c
1115
else if (parent->type == LAYOUT_TOPBOTTOM) {
usr.bin/tmux/layout.c
1116
if (layout_add_horizontal_border(w, parent, status))
usr.bin/tmux/layout.c
1117
size = parent->sy - 1;
usr.bin/tmux/layout.c
1119
size = parent->sy;
usr.bin/tmux/layout.c
1134
TAILQ_FOREACH (lc, &parent->cells, entry) {
usr.bin/tmux/layout.c
1136
if (parent->type == LAYOUT_LEFTRIGHT) {
usr.bin/tmux/layout.c
1143
} else if (parent->type == LAYOUT_TOPBOTTOM) {
usr.bin/tmux/layout.c
116
" ", lc, type, lc->parent, lc->wp, lc->xoff, lc->yoff, lc->sx,
usr.bin/tmux/layout.c
1164
struct layout_cell *parent;
usr.bin/tmux/layout.c
1167
parent = wp->layout_cell->parent;
usr.bin/tmux/layout.c
1168
if (parent == NULL)
usr.bin/tmux/layout.c
1172
if (layout_spread_cell(w, parent)) {
usr.bin/tmux/layout.c
1177
} while ((parent = parent->parent) != NULL);
usr.bin/tmux/layout.c
248
next = lc->parent;
usr.bin/tmux/layout.c
264
next = lc->parent;
usr.bin/tmux/layout.c
476
lcparent = lc->parent;
usr.bin/tmux/layout.c
505
lc->parent = lcparent->parent;
usr.bin/tmux/layout.c
506
if (lc->parent == NULL) {
usr.bin/tmux/layout.c
510
TAILQ_REPLACE(&lc->parent->cells, lcparent, lc, entry);
usr.bin/tmux/layout.c
57
lc->parent = lcparent;
usr.bin/tmux/layout.c
596
lcparent = lc->parent;
usr.bin/tmux/layout.c
599
lcparent = lc->parent;
usr.bin/tmux/layout.c
656
lcparent = lc->parent;
usr.bin/tmux/layout.c
659
lcparent = lc->parent;
usr.bin/tmux/layout.c
988
if (lc->parent != NULL && lc->parent->type == type) {
usr.bin/tmux/layout.c
993
lcparent = lc->parent;
usr.bin/tmux/layout.c
999
} else if (full_size && lc->parent == NULL && lc->type == type) {
usr.bin/tmux/mode-tree.c
1025
loop = mti->parent;
usr.bin/tmux/mode-tree.c
1028
loop = loop->parent;
usr.bin/tmux/mode-tree.c
1215
struct mode_tree_item *current, *parent, *mti;
usr.bin/tmux/mode-tree.c
1342
parent = current->parent;
usr.bin/tmux/mode-tree.c
1343
while (parent != NULL) {
usr.bin/tmux/mode-tree.c
1344
parent->tagged = 0;
usr.bin/tmux/mode-tree.c
1345
parent = parent->parent;
usr.bin/tmux/mode-tree.c
1360
if ((mtd->line_list[i].item->parent == NULL &&
usr.bin/tmux/mode-tree.c
1362
(mtd->line_list[i].item->parent != NULL &&
usr.bin/tmux/mode-tree.c
1363
mtd->line_list[i].item->parent->no_tag))
usr.bin/tmux/mode-tree.c
1381
current = current->parent;
usr.bin/tmux/mode-tree.c
657
mode_tree_add(struct mode_tree_data *mtd, struct mode_tree_item *parent,
usr.bin/tmux/mode-tree.c
667
mti->parent = parent;
usr.bin/tmux/mode-tree.c
677
if (parent == NULL || parent->expanded)
usr.bin/tmux/mode-tree.c
687
if (parent != NULL)
usr.bin/tmux/mode-tree.c
688
TAILQ_INSERT_TAIL(&parent->children, mti, entry);
usr.bin/tmux/mode-tree.c
720
struct mode_tree_item *parent = mti->parent;
usr.bin/tmux/mode-tree.c
722
if (parent != NULL)
usr.bin/tmux/mode-tree.c
723
TAILQ_REMOVE(&parent->children, mti, entry);
usr.bin/tmux/mode-tree.c
809
if (mti->parent != NULL &&
usr.bin/tmux/mode-tree.c
810
mtd->line_list[mti->parent->line].last)
usr.bin/tmux/mode-tree.c
873
mti = mti->parent;
usr.bin/tmux/mode-tree.c
89
struct mode_tree_item *parent;
usr.bin/tmux/mode-tree.c
937
mti = mti->parent;
usr.bin/tmux/mode-tree.c
983
mti = mti->parent;
usr.bin/tmux/options.c
115
if (oo->parent == NULL)
usr.bin/tmux/options.c
117
o = options_get(oo->parent, s);
usr.bin/tmux/options.c
171
options_create(struct options *parent)
usr.bin/tmux/options.c
177
oo->parent = parent;
usr.bin/tmux/options.c
194
return (oo->parent);
usr.bin/tmux/options.c
198
options_set_parent(struct options *oo, struct options *parent)
usr.bin/tmux/options.c
200
oo->parent = parent;
usr.bin/tmux/options.c
235
oo = oo->parent;
usr.bin/tmux/options.c
65
struct options *parent;
usr.bin/tmux/proc.c
303
peer->parent = tp;
usr.bin/tmux/proc.c
326
TAILQ_REMOVE(&peer->parent->peers, peer, entry);
usr.bin/tmux/proc.c
54
struct tmuxproc *parent;
usr.bin/tmux/tmux.h
1415
struct layout_cell *parent;
usr.bin/tmux/window-customize.c
656
struct options_entry *o, *parent;
usr.bin/tmux/window-customize.c
809
parent = options_get_only(wo, name);
usr.bin/tmux/window-customize.c
810
if (parent != NULL) {
usr.bin/tmux/window-customize.c
811
value = options_to_string(parent, -1 , 0);
usr.bin/tmux/window-customize.c
820
parent = options_get_only(go, name);
usr.bin/tmux/window-customize.c
821
if (parent != NULL) {
usr.bin/tmux/window-customize.c
822
value = options_to_string(parent, -1 , 0);
usr.bin/tmux/window-tree.c
196
struct window_pane *wp, void *modedata, struct mode_tree_item *parent)
usr.bin/tmux/window-tree.c
219
mti = mode_tree_add(data->data, parent, item, (uint64_t)wp, name, text,
usr.bin/tmux/window-tree.c
246
struct mode_tree_item *parent, const char *filter)
usr.bin/tmux/window-tree.c
274
mti = mode_tree_add(data->data, parent, item, (uint64_t)wl, name, text,
usr.sbin/acme-client/jsmn.c
129
token->parent = parser->toksuper;
usr.sbin/acme-client/jsmn.c
196
token->parent = parser->toksuper;
usr.sbin/acme-client/jsmn.c
218
parser->toksuper = token->parent;
usr.sbin/acme-client/jsmn.c
221
if (token->parent == -1) {
usr.sbin/acme-client/jsmn.c
224
token = &tokens[token->parent];
usr.sbin/acme-client/jsmn.c
266
parser->toksuper = tokens[parser->toksuper].parent;
usr.sbin/acme-client/jsmn.c
37
tok->parent = -1;
usr.sbin/acme-client/jsmn.c
96
token->parent = parser->toksuper;
usr.sbin/acme-client/jsmn.h
67
int parent;
usr.sbin/dvmrpd/rde.h
64
struct mfc_node *parent; /* back ptr to mfc_node */
usr.sbin/dvmrpd/rde_mfc.c
448
pn->parent = mn;
usr.sbin/dvmrpd/rde_mfc.c
512
pn->parent->prune_cnt[pn->ifindex]--;
usr.sbin/dvmrpd/rde_mfc.c
513
pn->parent->ttls[pn->ifindex] = 1;
usr.sbin/httpd/config.c
502
struct server_config *srv_conf, *parent;
usr.sbin/httpd/config.c
522
TAILQ_FOREACH(parent, &srv->srv_hosts, entry) {
usr.sbin/httpd/config.c
523
if (strcmp(parent->name, srv_conf->name) == 0)
usr.sbin/httpd/config.c
526
if (parent == NULL)
usr.sbin/httpd/config.c
527
parent = &srv->srv_conf;
usr.sbin/httpd/config.c
546
srv_conf->flags |= parent->flags & f;
usr.sbin/httpd/config.c
547
(void)strlcpy(srv_conf->index, parent->index,
usr.sbin/httpd/config.c
553
srv_conf->flags |= parent->flags & f;
usr.sbin/httpd/config.c
557
srv_conf->flags |= parent->flags & f;
usr.sbin/httpd/config.c
558
(void)strlcpy(srv_conf->root, parent->root,
usr.sbin/httpd/config.c
564
srv_conf->flags |= parent->flags & f;
usr.sbin/httpd/config.c
568
srv_conf->flags |= parent->flags & f;
usr.sbin/httpd/config.c
569
srv_conf->logformat = parent->logformat;
usr.sbin/httpd/config.c
574
srv_conf->flags |= parent->flags & f;
usr.sbin/httpd/config.c
578
srv_conf->flags |= parent->flags & f;
usr.sbin/httpd/config.c
579
srv_conf->auth = parent->auth;
usr.sbin/httpd/config.c
580
srv_conf->auth_id = parent->auth_id;
usr.sbin/httpd/config.c
582
parent->auth_realm,
usr.sbin/httpd/config.c
587
srv_conf->flags |= parent->flags & f;
usr.sbin/httpd/config.c
588
srv_conf->tls_flags = parent->tls_flags;
usr.sbin/httpd/config.c
592
srv_conf->flags |= parent->flags & f;
usr.sbin/httpd/config.c
594
parent->accesslog,
usr.sbin/httpd/config.c
600
srv_conf->flags |= parent->flags & f;
usr.sbin/httpd/config.c
602
parent->errorlog,
usr.sbin/httpd/config.c
609
srv_conf->flags |= parent->flags & f;
usr.sbin/httpd/config.c
610
srv_conf->return_code = parent->return_code;
usr.sbin/httpd/config.c
611
srv_conf->return_uri_len = parent->return_uri_len;
usr.sbin/httpd/config.c
614
strdup(parent->return_uri)) == NULL)
usr.sbin/httpd/config.c
620
srv_conf->flags |= parent->flags & f;
usr.sbin/httpd/config.c
622
&parent->default_type, sizeof(struct media_type));
usr.sbin/httpd/config.c
627
srv_conf->flags |= parent->flags & f;
usr.sbin/httpd/config.c
628
(void)strlcpy(srv_conf->path, parent->path,
usr.sbin/httpd/config.c
633
srv_conf->flags |= parent->flags & f;
usr.sbin/httpd/config.c
634
srv_conf->hsts_max_age = parent->hsts_max_age;
usr.sbin/httpd/config.c
635
srv_conf->hsts_flags = parent->hsts_flags;
usr.sbin/httpd/config.c
637
memcpy(&srv_conf->timeout, &parent->timeout,
usr.sbin/httpd/config.c
639
srv_conf->maxrequests = parent->maxrequests;
usr.sbin/httpd/config.c
640
srv_conf->maxrequestbody = parent->maxrequestbody;
usr.sbin/httpd/config.c
642
srv_conf->flags |= parent->flags & SRVFLAG_ERRDOCS;
usr.sbin/httpd/config.c
643
(void)strlcpy(srv_conf->errdocroot, parent->errdocroot,
usr.sbin/httpd/config.c
646
srv_conf->flags |= parent->flags & SRVFLAG_NO_BANNER;
usr.sbin/httpd/config.c
651
srv_conf->location, parent->name, parent->id,
usr.sbin/httpd/config.c
658
srv_conf->name, srv_conf->id, parent->name, parent->id,
usr.sbin/identd/identd.c
215
} parent;
usr.sbin/identd/identd.c
234
pid_t parent;
usr.sbin/identd/identd.c
298
parent = fork();
usr.sbin/identd/identd.c
299
switch (parent) {
usr.sbin/identd/identd.c
329
if (parent) {
usr.sbin/identd/identd.c
333
SIMPLEQ_INIT(&sc.parent.replies);
usr.sbin/identd/identd.c
362
if (parent) {
usr.sbin/identd/identd.c
429
SIMPLEQ_INSERT_TAIL(&sc.parent.replies, r, entry);
usr.sbin/identd/identd.c
486
struct ident_resolver *r = SIMPLEQ_FIRST(&sc.parent.replies);
usr.sbin/identd/identd.c
516
SIMPLEQ_REMOVE_HEAD(&sc.parent.replies, entry);
usr.sbin/identd/identd.c
523
if (!SIMPLEQ_EMPTY(&sc.parent.replies))
usr.sbin/ifstated/ifstated.c
549
if (expression->parent != NULL) {
usr.sbin/ifstated/ifstated.c
553
if (expression->parent == te)
usr.sbin/ifstated/ifstated.c
557
expression->parent, eval);
usr.sbin/ifstated/ifstated.h
64
struct ifsd_action *parent;
usr.sbin/ifstated/ifstated.h
83
struct ifsd_expression *parent;
usr.sbin/ifstated/parse.y
224
action->parent = curaction;
usr.sbin/ifstated/parse.y
228
curaction = curaction->parent;
usr.sbin/ifstated/parse.y
301
$2->parent = $$;
usr.sbin/ifstated/parse.y
309
$1->parent = $$;
usr.sbin/ifstated/parse.y
310
$3->parent = $$;
usr.sbin/ifstated/parse.y
319
$1->parent = $$;
usr.sbin/ifstated/parse.y
320
$3->parent = $$;
usr.sbin/ldapd/btree.c
129
struct mpage *parent; /* NULL if root */
usr.sbin/ldapd/btree.c
1340
while (lp->parent != NULL) {
usr.sbin/ldapd/btree.c
1345
lp = lp->parent;
usr.sbin/ldapd/btree.c
1349
while (up->parent != NULL) {
usr.sbin/ldapd/btree.c
1350
if (up->parent_index + 1 < (indx_t)NUMKEYS(up->parent)) {
usr.sbin/ldapd/btree.c
1354
up = up->parent;
usr.sbin/ldapd/btree.c
1357
if (lp->parent != NULL && up->parent != NULL) {
usr.sbin/ldapd/btree.c
1358
expand_prefix(bt, lp->parent, lbound, &lprefix);
usr.sbin/ldapd/btree.c
1359
expand_prefix(bt, up->parent, ubound, &uprefix);
usr.sbin/ldapd/btree.c
1362
else if (mp->parent)
usr.sbin/ldapd/btree.c
1363
bcopy(&mp->parent->prefix, &mp->prefix, sizeof(mp->prefix));
usr.sbin/ldapd/btree.c
1373
struct mpage *mp, *parent;
usr.sbin/ldapd/btree.c
1409
parent = mp;
usr.sbin/ldapd/btree.c
1412
mp->parent = parent;
usr.sbin/ldapd/btree.c
1482
assert(mp->parent == NULL);
usr.sbin/ldapd/btree.c
1604
struct ppage *parent, *top;
usr.sbin/ldapd/btree.c
1608
if ((parent = SLIST_NEXT(top, entry)) == NULL) {
usr.sbin/ldapd/btree.c
1614
parent->mpage->pgno, parent->ki);
usr.sbin/ldapd/btree.c
1617
if (move_right ? (parent->ki + 1 >= NUMKEYS(parent->mpage))
usr.sbin/ldapd/btree.c
1618
: (parent->ki == 0)) {
usr.sbin/ldapd/btree.c
1623
parent = CURSOR_TOP(cursor);
usr.sbin/ldapd/btree.c
1626
parent->ki++;
usr.sbin/ldapd/btree.c
1628
parent->ki--;
usr.sbin/ldapd/btree.c
1630
move_right ? "right" : "left", parent->ki);
usr.sbin/ldapd/btree.c
1632
assert(IS_BRANCH(parent->mpage));
usr.sbin/ldapd/btree.c
1634
indx = NODEPTR(parent->mpage, parent->ki);
usr.sbin/ldapd/btree.c
1637
mp->parent = parent->mpage;
usr.sbin/ldapd/btree.c
1638
mp->parent_index = parent->ki;
usr.sbin/ldapd/btree.c
2211
assert(src->parent);
usr.sbin/ldapd/btree.c
2212
assert(dst->parent);
usr.sbin/ldapd/btree.c
2230
mp->parent = src;
usr.sbin/ldapd/btree.c
2300
remove_prefix(bt, &key, src->parent->prefix.len);
usr.sbin/ldapd/btree.c
2304
if (btree_update_key(bt, src->parent, src->parent_index,
usr.sbin/ldapd/btree.c
2319
remove_prefix(bt, &key, dst->parent->prefix.len);
usr.sbin/ldapd/btree.c
2323
if (btree_update_key(bt, dst->parent, dst->parent_index,
usr.sbin/ldapd/btree.c
2355
mp->parent = dst;
usr.sbin/ldapd/btree.c
2383
assert(src->parent); /* can't merge root page */
usr.sbin/ldapd/btree.c
2384
assert(dst->parent);
usr.sbin/ldapd/btree.c
2444
btree_del_node(bt, src->parent, src->parent_index);
usr.sbin/ldapd/btree.c
2447
if (btree_update_key(bt, src->parent, 0, &key) != BT_SUCCESS)
usr.sbin/ldapd/btree.c
2460
return btree_rebalance(bt, src->parent);
usr.sbin/ldapd/btree.c
2469
struct mpage *parent;
usr.sbin/ldapd/btree.c
2488
parent = mp->parent;
usr.sbin/ldapd/btree.c
2490
if (parent == NULL) {
usr.sbin/ldapd/btree.c
2501
root->parent = NULL;
usr.sbin/ldapd/btree.c
2512
assert(NUMKEYS(parent) > 1);
usr.sbin/ldapd/btree.c
2525
node = NODEPTR(parent, mp->parent_index + 1);
usr.sbin/ldapd/btree.c
2535
node = NODEPTR(parent, mp->parent_index - 1);
usr.sbin/ldapd/btree.c
2542
neighbor->parent = parent;
usr.sbin/ldapd/btree.c
2724
if (mp->parent == NULL) {
usr.sbin/ldapd/btree.c
2725
if ((mp->parent = btree_new_page(bt, P_BRANCH)) == NULL)
usr.sbin/ldapd/btree.c
2728
bt->txn->root = mp->parent->pgno;
usr.sbin/ldapd/btree.c
2729
DPRINTF("root split! new root = %u", mp->parent->pgno);
usr.sbin/ldapd/btree.c
2733
if (btree_add_node(bt, mp->parent, 0, NULL, NULL,
usr.sbin/ldapd/btree.c
2737
DPRINTF("parent branch page is %u", mp->parent->pgno);
usr.sbin/ldapd/btree.c
2743
pright->parent = mp->parent;
usr.sbin/ldapd/btree.c
2791
if (SIZELEFT(pright->parent) < bt_branch_size(bt, &sepkey)) {
usr.sbin/ldapd/btree.c
2792
rc = btree_split(bt, &pright->parent, &pright->parent_index,
usr.sbin/ldapd/btree.c
2798
if (pright->parent != mp->parent &&
usr.sbin/ldapd/btree.c
2799
mp->parent_index >= NUMKEYS(mp->parent)) {
usr.sbin/ldapd/btree.c
2800
mp->parent = pright->parent;
usr.sbin/ldapd/btree.c
2804
remove_prefix(bt, &sepkey, pright->parent->prefix.len);
usr.sbin/ldapd/btree.c
2805
rc = btree_add_node(bt, pright->parent, pright->parent_index,
usr.sbin/ldapd/btree.c
533
copy->parent = mp->parent;
usr.sbin/ldapd/btree.c
596
if (mp->parent != NULL)
usr.sbin/ldapd/btree.c
597
NODEPGNO(NODEPTR(mp->parent,
usr.sbin/ldomctl/config.c
1002
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1014
struct md_node *parent;
usr.sbin/ldomctl/config.c
1018
parent = md_find_node(md, "root");
usr.sbin/ldomctl/config.c
1019
assert(parent);
usr.sbin/ldomctl/config.c
1022
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1033
struct md_node *parent;
usr.sbin/ldomctl/config.c
1038
parent = md_find_node(md, "root");
usr.sbin/ldomctl/config.c
1039
assert(parent);
usr.sbin/ldomctl/config.c
1042
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1046
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1051
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1064
struct md_node *parent;
usr.sbin/ldomctl/config.c
1067
parent = md_find_node(md, "devices");
usr.sbin/ldomctl/config.c
1068
assert(parent);
usr.sbin/ldomctl/config.c
1071
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1083
struct md_node *node, *child, *parent;
usr.sbin/ldomctl/config.c
1115
parent = md_add_node(md, "pcie_assignable_devices");
usr.sbin/ldomctl/config.c
1116
md_link_node(md, node, parent);
usr.sbin/ldomctl/config.c
1132
md_link_node(md, parent, child);
usr.sbin/ldomctl/config.c
1142
parent = md_add_node(md, "pcie_assigned_devices");
usr.sbin/ldomctl/config.c
1143
md_link_node(md, node, parent);
usr.sbin/ldomctl/config.c
1150
md_link_node(md, parent, component->hv_node);
usr.sbin/ldomctl/config.c
1160
struct md_node *parent;
usr.sbin/ldomctl/config.c
1164
parent = md_find_node(md, "root");
usr.sbin/ldomctl/config.c
1165
assert(parent);
usr.sbin/ldomctl/config.c
1168
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1184
struct md_node *parent;
usr.sbin/ldomctl/config.c
1187
parent = md_find_node(md, "memory");
usr.sbin/ldomctl/config.c
1188
assert(parent);
usr.sbin/ldomctl/config.c
1191
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1202
struct md_node *parent;
usr.sbin/ldomctl/config.c
1206
parent = md_find_node(md, "root");
usr.sbin/ldomctl/config.c
1207
assert(parent);
usr.sbin/ldomctl/config.c
1210
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1221
struct md_node *parent;
usr.sbin/ldomctl/config.c
1224
parent = md_find_node(md, "ldc_endpoints");
usr.sbin/ldomctl/config.c
1225
assert(parent);
usr.sbin/ldomctl/config.c
1228
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1251
struct md_node *parent;
usr.sbin/ldomctl/config.c
1255
parent = md_find_node(md, "root");
usr.sbin/ldomctl/config.c
1256
assert(parent);
usr.sbin/ldomctl/config.c
1259
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1270
struct md_node *parent;
usr.sbin/ldomctl/config.c
1274
parent = md_find_node(md, "consoles");
usr.sbin/ldomctl/config.c
1275
assert(parent);
usr.sbin/ldomctl/config.c
1278
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1299
struct md_node *parent;
usr.sbin/ldomctl/config.c
1303
parent = md_find_node(md, "root");
usr.sbin/ldomctl/config.c
1304
assert(parent);
usr.sbin/ldomctl/config.c
1307
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1319
struct md_node *parent;
usr.sbin/ldomctl/config.c
1325
parent = md_find_node(md, "guests");
usr.sbin/ldomctl/config.c
1326
assert(parent);
usr.sbin/ldomctl/config.c
1329
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1369
struct md_node *parent;
usr.sbin/ldomctl/config.c
1373
parent = md_find_node(md, "root");
usr.sbin/ldomctl/config.c
1374
assert(parent);
usr.sbin/ldomctl/config.c
1377
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1390
struct md_node *parent;
usr.sbin/ldomctl/config.c
1408
parent = node;
usr.sbin/ldomctl/config.c
1410
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1414
parent = md_find_node(md, "root");
usr.sbin/ldomctl/config.c
1415
assert(parent);
usr.sbin/ldomctl/config.c
1418
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1421
parent = md_find_node(md, "frag_space");
usr.sbin/ldomctl/config.c
1424
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1430
parent = md_find_node(md, "root");
usr.sbin/ldomctl/config.c
1431
assert(parent);
usr.sbin/ldomctl/config.c
1434
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1614
struct md_node *parent;
usr.sbin/ldomctl/config.c
1617
parent = md_find_node(md, "root");
usr.sbin/ldomctl/config.c
1618
assert(parent);
usr.sbin/ldomctl/config.c
1621
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1630
struct md_node *parent;
usr.sbin/ldomctl/config.c
1633
parent = md_find_node(md, "channel-endpoints");
usr.sbin/ldomctl/config.c
1634
if (parent == NULL)
usr.sbin/ldomctl/config.c
1635
parent = guest_add_channel_endpoints(guest);
usr.sbin/ldomctl/config.c
1638
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1651
struct md_node *parent;
usr.sbin/ldomctl/config.c
1654
parent = md_find_node(md, "channel-devices");
usr.sbin/ldomctl/config.c
1655
assert(parent != NULL);
usr.sbin/ldomctl/config.c
1658
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1727
struct md_node *parent;
usr.sbin/ldomctl/config.c
1730
parent = md_find_node(md, "channel-devices");
usr.sbin/ldomctl/config.c
1731
assert(parent != NULL);
usr.sbin/ldomctl/config.c
1734
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1800
struct md_node *parent;
usr.sbin/ldomctl/config.c
1803
parent = md_find_node(md, "channel-devices");
usr.sbin/ldomctl/config.c
1804
assert(parent != NULL);
usr.sbin/ldomctl/config.c
1807
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1877
struct md_node *parent;
usr.sbin/ldomctl/config.c
1880
parent = md_find_node(md, "virtual-devices");
usr.sbin/ldomctl/config.c
1881
assert(parent);
usr.sbin/ldomctl/config.c
1884
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1902
struct md_node *parent;
usr.sbin/ldomctl/config.c
1905
parent = md_find_node(md, "channel-devices");
usr.sbin/ldomctl/config.c
1906
assert(parent);
usr.sbin/ldomctl/config.c
1909
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1947
struct md_node *parent;
usr.sbin/ldomctl/config.c
1950
parent = md_find_node(md, "channel-devices");
usr.sbin/ldomctl/config.c
1951
assert(parent);
usr.sbin/ldomctl/config.c
1954
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
1999
struct md_node *parent;
usr.sbin/ldomctl/config.c
2002
parent = md_find_node(md, "virtual-devices");
usr.sbin/ldomctl/config.c
2003
assert(parent);
usr.sbin/ldomctl/config.c
2006
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
2020
struct md_node *parent;
usr.sbin/ldomctl/config.c
2023
parent = md_find_node(md, "root");
usr.sbin/ldomctl/config.c
2024
assert(parent);
usr.sbin/ldomctl/config.c
2027
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
2036
struct md_node *parent;
usr.sbin/ldomctl/config.c
2040
parent = md_find_node(md, "domain-services");
usr.sbin/ldomctl/config.c
2041
if (parent == NULL)
usr.sbin/ldomctl/config.c
2042
parent = guest_add_domain_services(guest);
usr.sbin/ldomctl/config.c
2045
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
2059
struct md_node *parent;
usr.sbin/ldomctl/config.c
2062
parent = md_find_node(md, "openboot");
usr.sbin/ldomctl/config.c
2063
assert(parent);
usr.sbin/ldomctl/config.c
2065
node = md_find_subnode(md, parent, "devalias");
usr.sbin/ldomctl/config.c
2068
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
2632
struct md_node *parent;
usr.sbin/ldomctl/config.c
2637
parent = md_find_node(md, "root");
usr.sbin/ldomctl/config.c
2638
assert(parent);
usr.sbin/ldomctl/config.c
2641
md_link_node(md, parent, node);
usr.sbin/ldomctl/config.c
2692
struct md_node *parent;
usr.sbin/ldomctl/config.c
2750
parent = md_find_node(md, "memory");
usr.sbin/ldomctl/config.c
2755
md_link_node(md, parent, child);
usr.sbin/ldomctl/config.c
982
struct md_node *parent;
usr.sbin/ldomctl/config.c
998
parent = md_find_node(md, "cpus");
usr.sbin/ldomctl/config.c
999
assert(parent);
usr.sbin/makefs/cd9660.c
1150
tfile = cd9660_create_file(diskStructure, dir->node->name, dir->parent,
usr.sbin/makefs/cd9660.c
1160
dir->rr_real_parent = dir->parent;
usr.sbin/makefs/cd9660.c
1171
dir->parent = diskStructure->rr_moved_dir;
usr.sbin/makefs/cd9660.c
1262
this_node->parent = parent_node;
usr.sbin/makefs/cd9660.c
1654
node->parent->fileDataSector;
usr.sbin/makefs/cd9660.c
1656
node->parent->isoDirRecord,34);
usr.sbin/makefs/cd9660.c
175
temp->parent = temp->dot_record = temp->dot_dot_record = NULL;
usr.sbin/makefs/cd9660.c
1815
cd9660node *parent, int file, int insert)
usr.sbin/makefs/cd9660.c
1820
assert(parent != NULL);
usr.sbin/makefs/cd9660.c
1834
temp->parent = parent;
usr.sbin/makefs/cd9660.c
1837
if (temp->parent != NULL) {
usr.sbin/makefs/cd9660.c
1838
temp->level = temp->parent->level + 1;
usr.sbin/makefs/cd9660.c
1839
if (!TAILQ_EMPTY(&temp->parent->cn_children))
usr.sbin/makefs/cd9660.c
1840
cd9660_sorted_child_insert(temp->parent, temp);
usr.sbin/makefs/cd9660.c
1842
TAILQ_INSERT_HEAD(&temp->parent->cn_children,
usr.sbin/makefs/cd9660.c
1847
if (parent->node != NULL) {
usr.sbin/makefs/cd9660.c
1848
tfsnode->type = parent->node->type;
usr.sbin/makefs/cd9660.c
1861
cd9660_copy_stat_info(parent, temp, file);
usr.sbin/makefs/cd9660.c
1868
cd9660node *parent, cd9660node *me)
usr.sbin/makefs/cd9660.c
1872
temp = cd9660_create_virtual_entry(diskStructure, name, parent, 1, 1);
usr.sbin/makefs/cd9660.c
1896
cd9660node *parent, cd9660node *me)
usr.sbin/makefs/cd9660.c
1900
temp = cd9660_create_virtual_entry(diskStructure, name, parent, 0, 1);
usr.sbin/makefs/cd9660.c
1917
cd9660node *parent)
usr.sbin/makefs/cd9660.c
1922
assert(parent != NULL);
usr.sbin/makefs/cd9660.c
1932
if ((temp = cd9660_create_virtual_entry(diskStructure, na, parent,
usr.sbin/makefs/cd9660.c
1936
temp->parent = parent;
usr.sbin/makefs/cd9660.c
1941
parent->dot_record = temp;
usr.sbin/makefs/cd9660.c
1942
TAILQ_INSERT_HEAD(&parent->cn_children, temp, cn_next_child);
usr.sbin/makefs/cd9660.c
1945
parent->dot_dot_record = temp;
usr.sbin/makefs/cd9660.c
1950
if ((first = TAILQ_FIRST(&parent->cn_children)) == NULL ||
usr.sbin/makefs/cd9660.c
1952
TAILQ_INSERT_HEAD(&parent->cn_children, temp,
usr.sbin/makefs/cd9660.c
1955
TAILQ_INSERT_AFTER(&parent->cn_children, first, temp,
usr.sbin/makefs/cd9660.c
834
cd9660_sorted_child_insert(cd9660node *parent, cd9660node *cn_new)
usr.sbin/makefs/cd9660.c
838
struct cd9660_children_head *head = &parent->cn_children;
usr.sbin/makefs/cd9660.c
841
cn_new->parent = parent;
usr.sbin/makefs/cd9660.h
126
struct _cd9660node *parent; /* parent (NULL if root) */
usr.sbin/makefs/cd9660/cd9660_debug.c
121
if (n->parent == NULL)
usr.sbin/makefs/cd9660/cd9660_write.c
171
cd9660_721((ptcur->parent == NULL ?
usr.sbin/makefs/cd9660/cd9660_write.c
172
1 : ptcur->parent->ptnumber),
usr.sbin/makefs/cd9660/cd9660_write.c
177
cd9660_722((ptcur->parent == NULL ?
usr.sbin/makefs/cd9660/cd9660_write.c
178
1 : ptcur->parent->ptnumber),
usr.sbin/makefs/cd9660/iso9660_rrip.c
186
if (node->parent == NULL ||
usr.sbin/makefs/cd9660/iso9660_rrip.c
187
node->parent->rr_real_parent == NULL)
usr.sbin/makefs/cd9660/iso9660_rrip.c
190
node->parent->rr_real_parent->fileDataSector,
usr.sbin/makefs/cd9660/iso9660_rrip.c
309
if (node->parent == diskStructure->rootNode) {
usr.sbin/makefs/cd9660/iso9660_rrip.c
369
cd9660node *parent, cd9660node *grandparent)
usr.sbin/makefs/cd9660/iso9660_rrip.c
380
if (node->parent == diskStructure->rootNode) {
usr.sbin/makefs/cd9660/iso9660_rrip.c
384
if (parent != NULL && parent->node != NULL &&
usr.sbin/makefs/cd9660/iso9660_rrip.c
385
parent->node->inode != NULL) {
usr.sbin/makefs/cd9660/iso9660_rrip.c
389
cd9660node_rrip_px(current, parent->node);
usr.sbin/makefs/cd9660/iso9660_rrip.c
402
if (parent != NULL && parent->rr_real_parent != NULL) {
usr.sbin/makefs/cd9660/iso9660_rrip.c
52
cd9660node *parent, cd9660node *grandparent)
usr.sbin/makefs/cd9660/iso9660_rrip.c
73
r = cd9660_rrip_initialize_node(diskStructure, node, parent, grandparent);
usr.sbin/makefs/cd9660/iso9660_rrip.c
89
if ((r = cd9660_susp_initialize(diskStructure, cn, node, parent)) < 0)
usr.sbin/makefs/ffs.c
703
if (cur == root && cur->parent != NULL)
usr.sbin/makefs/ffs.c
704
cur->inode->ino = cur->parent->inode->ino;
usr.sbin/makefs/ffs.c
713
cur->parent == NULL ? cur : cur->parent->first);
usr.sbin/makefs/makefs.h
89
struct _fsnode *parent; /* parent (NULL if root) */
usr.sbin/makefs/msdos.c
167
fsnode *parent, fsinfo_t *fsopts)
usr.sbin/makefs/msdos.c
188
cur->parent = parent;
usr.sbin/makefs/walk.c
143
cur->parent = parent;
usr.sbin/makefs/walk.c
231
if (node->parent) {
usr.sbin/makefs/walk.c
232
assert(node->parent->child == node);
usr.sbin/makefs/walk.c
233
node = node->parent;
usr.sbin/makefs/walk.c
251
cur->child->parent = NULL;
usr.sbin/makefs/walk.c
66
walk_dir(const char *root, const char *dir, fsnode *parent, fsnode *join)
usr.sbin/mrouted/route.c
43
static int init_children_and_leaves(struct rtentry *r, vifi_t parent);
usr.sbin/mrouted/route.c
71
init_children_and_leaves(struct rtentry *r, vifi_t parent)
usr.sbin/mrouted/route.c
88
if (vifi != parent && !(v->uv_flags & (VIFF_DOWN|VIFF_DISABLED))) {
usr.sbin/mtree/create.c
268
statd(FTS *t, FTSENT *parent, uid_t *puid, gid_t *pgid, mode_t *pmode)
usr.sbin/mtree/create.c
288
error("%s: %s", RP(parent), strerror(errno));
usr.sbin/mtree/mtree.h
48
struct _node *parent, *child; /* up, down */
usr.sbin/mtree/spec.c
129
last = last->parent;
usr.sbin/mtree/spec.c
153
root->parent = root;
usr.sbin/mtree/spec.c
155
centry->parent = last;
usr.sbin/mtree/spec.c
158
centry->parent = last->parent;
usr.sbin/mtree/verify.c
87
for (level = level->parent; level->prev;
usr.sbin/npppd/common/radish.c
161
struct radish *cur = head->rdh_top, *parent, *new;
usr.sbin/npppd/common/radish.c
309
parent = cur->rd_p;
usr.sbin/npppd/common/radish.c
310
new->rd_p = parent;
usr.sbin/npppd/common/radish.c
311
if (parent->rd_l == cur)
usr.sbin/npppd/common/radish.c
312
parent->rd_l = new;
usr.sbin/npppd/common/radish.c
313
else if (parent->rd_r == cur)
usr.sbin/npppd/common/radish.c
314
parent->rd_r = new;
usr.sbin/npppd/common/radish.c
337
struct radish *parent = cur->rd_p, *glue;
usr.sbin/npppd/common/radish.c
368
glue->rd_p = parent;
usr.sbin/npppd/common/radish.c
398
if (parent->rd_l == cur)
usr.sbin/npppd/common/radish.c
399
parent->rd_l = glue;
usr.sbin/npppd/common/radish.c
400
else if (parent->rd_r == cur)
usr.sbin/npppd/common/radish.c
401
parent->rd_r = glue;
usr.sbin/npppd/common/radish.c
620
struct radish *parent, *child;
usr.sbin/npppd/common/radish.c
629
parent = cur->rd_p;
usr.sbin/npppd/common/radish.c
630
if (parent->rd_l == cur) {
usr.sbin/npppd/common/radish.c
631
parent->rd_l = NULL;
usr.sbin/npppd/common/radish.c
633
} else if (parent->rd_r == cur) {
usr.sbin/npppd/common/radish.c
634
parent->rd_r = NULL;
usr.sbin/npppd/common/radish.c
638
if (parent->rd_rtent == NULL && parent != top)
usr.sbin/npppd/common/radish.c
640
rd_unlink(parent, top);
usr.sbin/npppd/common/radish.c
650
parent = cur->rd_p;
usr.sbin/npppd/common/radish.c
651
child->rd_p = parent;
usr.sbin/npppd/common/radish.c
652
if (parent->rd_l == cur) {
usr.sbin/npppd/common/radish.c
653
parent->rd_l = child;
usr.sbin/npppd/common/radish.c
655
} else if (parent->rd_r == cur) {
usr.sbin/npppd/common/radish.c
656
parent->rd_r = child;
usr.sbin/npppd/npppd/npppd.h
280
struct control_sock *parent;
usr.sbin/nsd/difffile.c
279
if(p->parent &&
usr.sbin/nsd/difffile.c
280
p->parent->wildcard_child_closest_match == p)
usr.sbin/nsd/difffile.c
281
p->parent->wildcard_child_closest_match = domain_previous_existing_child(p);
usr.sbin/nsd/difffile.c
282
p = p->parent;
usr.sbin/nsd/difffile.c
580
(!domain->parent || nsec3_domain_part_of_zone(domain->parent, zone)) &&
usr.sbin/nsd/difffile.c
878
p = collect_rrs->domain->parent;
usr.sbin/nsd/difffile.c
884
p = p->parent;
usr.sbin/nsd/ixfr.c
2224
p = domain->parent;
usr.sbin/nsd/ixfr.c
2228
if(domain->parent &&
usr.sbin/nsd/ixfr.c
2229
domain->parent->wildcard_child_closest_match == domain)
usr.sbin/nsd/ixfr.c
2230
domain->parent->wildcard_child_closest_match =
usr.sbin/nsd/ixfr.c
2234
struct domain* up = p->parent;
usr.sbin/nsd/ixfr.c
2237
if(p->parent && p->parent->wildcard_child_closest_match == p)
usr.sbin/nsd/ixfr.c
2238
p->parent->wildcard_child_closest_match =
usr.sbin/nsd/namedb.c
216
assert(domain && domain->parent); /* exists and not root */
usr.sbin/nsd/namedb.c
26
domain_type* parent)
usr.sbin/nsd/namedb.c
261
if(domain->parent->wildcard_child_closest_match == domain)
usr.sbin/nsd/namedb.c
262
domain->parent->wildcard_child_closest_match =
usr.sbin/nsd/namedb.c
279
domain_type* parent;
usr.sbin/nsd/namedb.c
282
parent = domain->parent;
usr.sbin/nsd/namedb.c
286
domain = parent;
usr.sbin/nsd/namedb.c
32
assert(parent);
usr.sbin/nsd/namedb.c
328
root->parent = NULL;
usr.sbin/nsd/namedb.c
394
(*closest_encloser) = (*closest_encloser)->parent;
usr.sbin/nsd/namedb.c
42
table->region, dname, domain_dname(parent)->label_count + 1);
usr.sbin/nsd/namedb.c
43
result->parent = parent;
usr.sbin/nsd/namedb.c
473
domain_type* parent = domain->parent;
usr.sbin/nsd/namedb.c
476
if(domain == parent) /* do not walk back above parent */
usr.sbin/nsd/namedb.c
477
return parent;
usr.sbin/nsd/namedb.c
502
if(domain->parent
usr.sbin/nsd/namedb.c
506
domain_dname(domain->parent->wildcard_child_closest_match)) > 0) {
usr.sbin/nsd/namedb.c
507
domain->parent->wildcard_child_closest_match = domain;
usr.sbin/nsd/namedb.c
509
domain = domain->parent;
usr.sbin/nsd/namedb.c
573
domain = domain->parent;
usr.sbin/nsd/namedb.c
592
if(zone->apex->parent)
usr.sbin/nsd/namedb.c
593
return domain_find_zone(db, zone->apex->parent);
usr.sbin/nsd/namedb.c
609
domain = domain->parent;
usr.sbin/nsd/namedb.c
622
domain_type* d = domain->parent;
usr.sbin/nsd/namedb.c
626
d = d->parent;
usr.sbin/nsd/namedb.h
103
domain_type* parent;
usr.sbin/nsd/nsec3.c
1003
domain_type* par = domain->parent;
usr.sbin/nsd/nsec3.c
1009
par = par->parent;
usr.sbin/nsd/nsec3.c
1066
if(original->parent && original->parent->nsec3 &&
usr.sbin/nsd/nsec3.c
1067
original->parent->nsec3->nsec3_is_exact)
usr.sbin/nsd/nsec3.c
1069
original->parent->nsec3->nsec3_cover);
usr.sbin/nsd/nsec3.c
1079
if(original->parent && original->parent->nsec3 &&
usr.sbin/nsd/nsec3.c
1080
original->parent->nsec3->nsec3_is_exact)
usr.sbin/nsd/nsec3.c
1082
original->parent->nsec3->nsec3_cover);
usr.sbin/nsd/nsec3.c
1093
while(original->parent && original->parent->nsec3 && !original->parent->nsec3->nsec3_is_exact)
usr.sbin/nsd/nsec3.c
1094
original = original->parent;
usr.sbin/nsd/nsec3.c
1099
if(original->parent && original->parent->nsec3 && original->parent->nsec3->nsec3_is_exact)
usr.sbin/nsd/nsec3.c
1101
original->parent->nsec3->nsec3_cover);
usr.sbin/nsd/nsec3.c
442
d = d->parent;
usr.sbin/nsd/nsec3.c
462
&& nsec3_domain_part_of_zone(d->parent, z);
usr.sbin/nsd/nsec3.c
484
d = d->parent;
usr.sbin/nsd/nsec3.c
494
d = d->parent;
usr.sbin/nsd/nsec3.c
508
d = d->parent;
usr.sbin/nsd/packet.c
25
while (domain->parent && query_get_dname_offset(q, domain) == 0) {
usr.sbin/nsd/packet.c
34
domain = domain->parent;
usr.sbin/nsd/packet.c
36
if (domain->parent) {
usr.sbin/nsd/query.c
114
while (domain->parent) {
usr.sbin/nsd/query.c
1189
if(closest_encloser->parent)
usr.sbin/nsd/query.c
1190
closest_encloser = closest_encloser->parent;
usr.sbin/nsd/query.c
122
domain = domain->parent;
usr.sbin/nsd/query.c
1271
match->node.parent = NULL;
usr.sbin/nsd/query.c
1273
match->parent = closest_encloser;
usr.sbin/nsd/query.c
1479
closest_encloser = closest_encloser->parent;
usr.sbin/nsd/query.c
664
while (closest_match->node.parent == NULL)
usr.sbin/nsd/query.c
666
closest_match = closest_match->parent;
usr.sbin/nsd/query.c
735
match = match->parent;
usr.sbin/nsd/query.c
746
temp->node.parent = NULL;
usr.sbin/nsd/query.c
749
temp->parent = match;
usr.sbin/nsd/query.c
886
newdom->parent = lastparent;
usr.sbin/nsd/query.c
913
newdom->parent = lastparent;
usr.sbin/nsd/radtree.c
1002
n = n->parent;
usr.sbin/nsd/radtree.c
378
add->parent = r->node->parent;
usr.sbin/nsd/radtree.c
383
r->node->parent = add;
usr.sbin/nsd/radtree.c
410
add->parent = r->node;
usr.sbin/nsd/radtree.c
474
com->parent = r->node->parent;
usr.sbin/nsd/radtree.c
476
r->node->parent = com;
usr.sbin/nsd/radtree.c
478
add->parent = com;
usr.sbin/nsd/radtree.c
526
add->parent = n;
usr.sbin/nsd/radtree.c
575
add->parent = n;
usr.sbin/nsd/radtree.c
591
add->parent = n;
usr.sbin/nsd/radtree.c
659
child->parent = par;
usr.sbin/nsd/radtree.c
790
} else if(n->len == 1 && n->parent) {
usr.sbin/nsd/radtree.c
791
return radnode_cleanup_onechild(rt->region, n, n->parent);
usr.sbin/nsd/radtree.c
793
struct radnode* par = n->parent;
usr.sbin/nsd/radtree.c
974
while(n->parent) {
usr.sbin/nsd/radtree.c
976
n = n->parent;
usr.sbin/nsd/radtree.c
999
while(n->parent) {
usr.sbin/nsd/radtree.h
41
struct radnode* parent;
usr.sbin/nsd/rbtree.c
108
left->right->parent = node;
usr.sbin/nsd/rbtree.c
110
left->parent = node->parent;
usr.sbin/nsd/rbtree.c
112
if (node->parent != RBTREE_NULL) {
usr.sbin/nsd/rbtree.c
113
if (node == node->parent->right) {
usr.sbin/nsd/rbtree.c
114
node->parent->right = left;
usr.sbin/nsd/rbtree.c
116
node->parent->left = left;
usr.sbin/nsd/rbtree.c
122
node->parent = left;
usr.sbin/nsd/rbtree.c
136
while (node != rbtree->root && node->parent->color == RED) {
usr.sbin/nsd/rbtree.c
138
if (node->parent == node->parent->parent->left) {
usr.sbin/nsd/rbtree.c
139
uncle = node->parent->parent->right;
usr.sbin/nsd/rbtree.c
144
node->parent->color = BLACK;
usr.sbin/nsd/rbtree.c
148
node->parent->parent->color = RED;
usr.sbin/nsd/rbtree.c
151
node = node->parent->parent;
usr.sbin/nsd/rbtree.c
154
if (node == node->parent->right) {
usr.sbin/nsd/rbtree.c
155
node = node->parent;
usr.sbin/nsd/rbtree.c
159
node->parent->color = BLACK;
usr.sbin/nsd/rbtree.c
160
node->parent->parent->color = RED;
usr.sbin/nsd/rbtree.c
161
rbtree_rotate_right(rbtree, node->parent->parent);
usr.sbin/nsd/rbtree.c
164
uncle = node->parent->parent->left;
usr.sbin/nsd/rbtree.c
169
node->parent->color = BLACK;
usr.sbin/nsd/rbtree.c
173
node->parent->parent->color = RED;
usr.sbin/nsd/rbtree.c
176
node = node->parent->parent;
usr.sbin/nsd/rbtree.c
179
if (node == node->parent->left) {
usr.sbin/nsd/rbtree.c
180
node = node->parent;
usr.sbin/nsd/rbtree.c
184
node->parent->color = BLACK;
usr.sbin/nsd/rbtree.c
185
node->parent->parent->color = RED;
usr.sbin/nsd/rbtree.c
186
rbtree_rotate_left(rbtree, node->parent->parent);
usr.sbin/nsd/rbtree.c
206
rbnode_type *parent;
usr.sbin/nsd/rbtree.c
215
parent = RBTREE_NULL;
usr.sbin/nsd/rbtree.c
223
parent = node;
usr.sbin/nsd/rbtree.c
233
data->parent = parent;
usr.sbin/nsd/rbtree.c
239
if (parent != RBTREE_NULL) {
usr.sbin/nsd/rbtree.c
241
parent->left = data;
usr.sbin/nsd/rbtree.c
243
parent->right = data;
usr.sbin/nsd/rbtree.c
287
static void change_parent_ptr(rbtree_type* rbtree, rbnode_type* parent, rbnode_type* old, rbnode_type* new)
usr.sbin/nsd/rbtree.c
294
if(parent == RBTREE_NULL)
usr.sbin/nsd/rbtree.c
300
assert(parent->left == old || parent->right == old
usr.sbin/nsd/rbtree.c
301
|| parent->left == new || parent->right == new);
usr.sbin/nsd/rbtree.c
302
if(parent->left == old) parent->left = new;
usr.sbin/nsd/rbtree.c
303
if(parent->right == old) parent->right = new;
usr.sbin/nsd/rbtree.c
308
assert(child->parent == old || child->parent == new);
usr.sbin/nsd/rbtree.c
309
if(child->parent == old) child->parent = new;
usr.sbin/nsd/rbtree.c
342
change_parent_ptr(rbtree, to_delete->parent, to_delete, smright);
usr.sbin/nsd/rbtree.c
344
change_parent_ptr(rbtree, smright->parent, smright, to_delete);
usr.sbin/nsd/rbtree.c
358
smright->parent = smright;
usr.sbin/nsd/rbtree.c
362
swap_np(&to_delete->parent, &smright->parent);
usr.sbin/nsd/rbtree.c
374
change_parent_ptr(rbtree, to_delete->parent, to_delete, child);
usr.sbin/nsd/rbtree.c
375
change_child_ptr(child, to_delete, to_delete->parent);
usr.sbin/nsd/rbtree.c
386
else rbtree_delete_fixup(rbtree, child, to_delete->parent);
usr.sbin/nsd/rbtree.c
389
to_delete->parent = RBTREE_NULL;
usr.sbin/nsd/rbtree.c
439
child_parent = child_parent->parent;
usr.sbin/nsd/rbtree.c
581
rbnode_type *parent;
usr.sbin/nsd/rbtree.c
587
parent = node->parent;
usr.sbin/nsd/rbtree.c
588
while (parent != RBTREE_NULL && node == parent->right) {
usr.sbin/nsd/rbtree.c
589
node = parent;
usr.sbin/nsd/rbtree.c
590
parent = parent->parent;
usr.sbin/nsd/rbtree.c
592
node = parent;
usr.sbin/nsd/rbtree.c
600
rbnode_type *parent;
usr.sbin/nsd/rbtree.c
606
parent = node->parent;
usr.sbin/nsd/rbtree.c
607
while (parent != RBTREE_NULL && node == parent->left) {
usr.sbin/nsd/rbtree.c
608
node = parent;
usr.sbin/nsd/rbtree.c
609
parent = parent->parent;
usr.sbin/nsd/rbtree.c
611
node = parent;
usr.sbin/nsd/rbtree.c
75
right->left->parent = node;
usr.sbin/nsd/rbtree.c
77
right->parent = node->parent;
usr.sbin/nsd/rbtree.c
79
if (node->parent != RBTREE_NULL) {
usr.sbin/nsd/rbtree.c
80
if (node == node->parent->left) {
usr.sbin/nsd/rbtree.c
81
node->parent->left = right;
usr.sbin/nsd/rbtree.c
83
node->parent->right = right;
usr.sbin/nsd/rbtree.c
89
node->parent = right;
usr.sbin/nsd/rbtree.h
22
rbnode_type *parent;
usr.sbin/nsd/rdata.c
1359
while (domain->parent && query_get_dname_offset(q, domain) == 0) {
usr.sbin/nsd/rdata.c
1368
domain = domain->parent;
usr.sbin/nsd/rdata.c
1370
if (domain->parent) {
usr.sbin/nsd/zonec.c
75
domain_type* parent = domain->parent;
usr.sbin/nsd/zonec.c
80
while(parent) {
usr.sbin/nsd/zonec.c
81
if(domain_find_rrset_any(parent, TYPE_DNAME)) {
usr.sbin/nsd/zonec.c
86
domain_to_string(parent));
usr.sbin/nsd/zonec.c
89
parent = parent->parent;
usr.sbin/ospf6d/rde_lsdb.c
119
vertex_nexthop_add(struct vertex *dst, struct vertex *parent,
usr.sbin/ospf6d/rde_lsdb.c
127
vn->prev = parent;
usr.sbin/ospf6d/rde_spf.c
494
calc_nexthop_transit_nbr(struct vertex *dst, struct vertex *parent,
usr.sbin/ospf6d/rde_spf.c
503
if (parent->type != LSA_TYPE_NETWORK)
usr.sbin/ospf6d/rde_spf.c
511
rtr_link->nbr_rtr_id == parent->lsa->hdr.adv_rtr &&
usr.sbin/ospf6d/rde_spf.c
512
rtr_link->nbr_iface_id == parent->lsa->hdr.ls_id) {
usr.sbin/ospf6d/rde_spf.c
514
vertex_nexthop_add(dst, parent, lladdr, ifindex);
usr.sbin/ospf6d/rde_spf.c
520
calc_nexthop(struct vertex *dst, struct vertex *parent,
usr.sbin/ospf6d/rde_spf.c
527
if (parent == spf_root) {
usr.sbin/ospf6d/rde_spf.c
547
vertex_nexthop_add(dst, parent, nexthop,
usr.sbin/ospf6d/rde_spf.c
553
if (parent->type == LSA_TYPE_NETWORK && dst->type == LSA_TYPE_ROUTER) {
usr.sbin/ospf6d/rde_spf.c
554
TAILQ_FOREACH(vn, &parent->nexthop, entry) {
usr.sbin/ospf6d/rde_spf.c
556
calc_nexthop_transit_nbr(dst, parent,
usr.sbin/ospf6d/rde_spf.c
560
vertex_nexthop_add(dst, parent, &vn->nexthop,
usr.sbin/ospf6d/rde_spf.c
567
TAILQ_FOREACH(vn, &parent->nexthop, entry)
usr.sbin/ospf6d/rde_spf.c
568
vertex_nexthop_add(dst, parent, &vn->nexthop, vn->ifindex);
usr.sbin/ospfd/rde_lsdb.c
118
vertex_nexthop_add(struct vertex *dst, struct vertex *parent, u_int32_t nexthop)
usr.sbin/ospfd/rde_lsdb.c
125
vn->prev = parent;
usr.sbin/ospfd/rde_spf.c
371
calc_nexthop(struct vertex *dst, struct vertex *parent,
usr.sbin/ospfd/rde_spf.c
380
if (parent == spf_root) {
usr.sbin/ospfd/rde_spf.c
390
vertex_nexthop_add(dst, parent,
usr.sbin/ospfd/rde_spf.c
408
vertex_nexthop_add(dst, parent,
usr.sbin/ospfd/rde_spf.c
424
if (parent->type == LSA_TYPE_NETWORK && dst->type == LSA_TYPE_ROUTER) {
usr.sbin/ospfd/rde_spf.c
425
TAILQ_FOREACH(vn, &parent->nexthop, entry) {
usr.sbin/ospfd/rde_spf.c
432
parent->lsa->data.net.mask) ==
usr.sbin/ospfd/rde_spf.c
433
(htonl(parent->ls_id) &
usr.sbin/ospfd/rde_spf.c
434
parent->lsa->data.net.mask))
usr.sbin/ospfd/rde_spf.c
435
vertex_nexthop_add(dst, parent,
usr.sbin/ospfd/rde_spf.c
439
vertex_nexthop_add(dst, parent,
usr.sbin/ospfd/rde_spf.c
447
TAILQ_FOREACH(vn, &parent->nexthop, entry)
usr.sbin/ospfd/rde_spf.c
448
vertex_nexthop_add(dst, parent, vn->nexthop.s_addr);
usr.sbin/procmap/procmap.c
566
struct vm_map_entry *parent)
usr.sbin/procmap/procmap.c
592
result->daddrs.addr_entry.rbt_parent = &parent->daddrs.addr_entry;
usr.sbin/smtpd/expand.c
137
if (e1->parent == e2->parent)
usr.sbin/smtpd/expand.c
140
if (e1->parent == NULL)
usr.sbin/smtpd/expand.c
142
if (e2->parent == NULL)
usr.sbin/smtpd/expand.c
149
for(p1 = e1->parent; p1->type != EXPAND_ADDRESS; p1 = p1->parent)
usr.sbin/smtpd/expand.c
151
for(p2 = e2->parent; p2->type != EXPAND_ADDRESS; p2 = p2->parent)
usr.sbin/smtpd/expand.c
165
for(p1 = e1->parent; p1 && p1->type != EXPAND_USERNAME; p1 = p1->parent)
usr.sbin/smtpd/expand.c
167
for(p2 = e2->parent; p2 && p2->type != EXPAND_USERNAME; p2 = p2->parent)
usr.sbin/smtpd/expand.c
293
(void)snprintf(tmp, sizeof(tmp), "[parent=%p", e->parent);
usr.sbin/smtpd/expand.c
56
node->parent = expand->parent;
usr.sbin/smtpd/expand.c
61
expand->parent &&
usr.sbin/smtpd/expand.c
62
expand->parent->type == EXPAND_USERNAME &&
usr.sbin/smtpd/expand.c
63
!strcmp(expand->parent->u.user, node->u.user)) {
usr.sbin/smtpd/expand.c
77
xn->parent = expand->parent;
usr.sbin/smtpd/expand.c
78
if (xn->parent)
usr.sbin/smtpd/expand.c
79
xn->depth = xn->parent->depth + 1;
usr.sbin/smtpd/lka_session.c
132
lks->expand.parent = xn;
usr.sbin/smtpd/lka_session.c
277
if (xn->parent) /* nodes with parent are forward addresses */
usr.sbin/smtpd/lka_session.c
314
lks->expand.parent = xn;
usr.sbin/smtpd/lka_session.c
340
lks->expand.parent = xn;
usr.sbin/smtpd/lka_session.c
360
lks->expand.parent = xn;
usr.sbin/smtpd/lka_session.c
402
if (xn->sameuser && xn->parent->forwarded) {
usr.sbin/smtpd/lka_session.c
441
if (xn->parent->realuser && xn->parent->realuser_uid == 0) {
usr.sbin/smtpd/lka_session.c
475
if (xn->parent->realuser && xn->parent->realuser_uid == 0) {
usr.sbin/smtpd/lka_session.c
498
xn = xn->parent;
usr.sbin/smtpd/lka_session.c
542
user = !xn->parent->realuser ?
usr.sbin/smtpd/lka_session.c
544
xn->parent->u.user;
usr.sbin/smtpd/lka_session.c
79
lks->expand.parent = NULL;
usr.sbin/smtpd/parser.c
105
tmp->parent = node;
usr.sbin/smtpd/parser.c
42
struct node *parent;
usr.sbin/smtpd/smtpd.h
434
struct expandnode *parent;
usr.sbin/smtpd/smtpd.h
453
struct expandnode *parent;
usr.sbin/unbound/iterator/iter_fwd.c
168
node->parent = NULL;
usr.sbin/unbound/iterator/iter_fwd.c
177
for(p = prev; p; p = p->parent)
usr.sbin/unbound/iterator/iter_fwd.c
183
node->parent = p;
usr.sbin/unbound/iterator/iter_fwd.c
467
result = result->parent;
usr.sbin/unbound/iterator/iter_fwd.h
88
struct iter_forward_zone* parent;
usr.sbin/unbound/services/cache/infra.c
931
d = (struct domain_limit_data*)d->node.parent;
usr.sbin/unbound/services/cache/infra.c
935
d = (struct domain_limit_data*)d->node.parent;
usr.sbin/unbound/services/localzone.c
1007
for(p = prev; p; p = p->parent) {
usr.sbin/unbound/services/localzone.c
1027
node->parent = find_closest_parent(node, prev);
usr.sbin/unbound/services/localzone.c
1273
result = result->parent;
usr.sbin/unbound/services/localzone.c
2033
if(p->parent == match)
usr.sbin/unbound/services/localzone.c
2034
p->parent = newp;
usr.sbin/unbound/services/localzone.c
204
lock_protect(&z->lock, &z->parent, sizeof(*z)-sizeof(rbnode_type));
usr.sbin/unbound/services/localzone.c
2057
z->parent = find_closest_parent(z, prev);
usr.sbin/unbound/services/localzone.c
2069
set_kiddo_parents(z, z->parent, z);
usr.sbin/unbound/services/localzone.c
2079
set_kiddo_parents(z, z, z->parent);
usr.sbin/unbound/services/localzone.h
129
struct local_zone* parent;
usr.sbin/unbound/testcode/unitmain.c
1206
(node1->parent == NULL && node2->parent == NULL) ||
usr.sbin/unbound/testcode/unitmain.c
1207
(node1->parent != NULL && node2->parent != NULL));
usr.sbin/unbound/testcode/unitmain.c
1208
if(node1->parent) {
usr.sbin/unbound/testcode/unitmain.c
1210
node1->parent->name, node1->parent->namelabs,
usr.sbin/unbound/testcode/unitmain.c
1211
node2->parent->name, node2->parent->namelabs,
usr.sbin/unbound/testcode/unitneg.c
398
if(data->parent) {
usr.sbin/unbound/testcode/unitneg.c
399
unit_assert(data->parent->count >= data->count);
usr.sbin/unbound/testcode/unitneg.c
400
if(data->parent->in_use) {
usr.sbin/unbound/testcode/unitneg.c
401
unit_assert(data->parent->count > data->count);
usr.sbin/unbound/testcode/unitneg.c
403
unit_assert(data->parent->labs == data->labs-1);
usr.sbin/unbound/testcode/unitneg.c
405
unit_assert(data->name[0] == (data->len-data->parent->len-1));
usr.sbin/unbound/testcode/unitneg.c
407
data->parent->name) == 0);
usr.sbin/unbound/testcode/unitneg.c
450
if(zone->parent) {
usr.sbin/unbound/testcode/unitneg.c
451
unit_assert(zone->parent->count >= zone->count);
usr.sbin/unbound/testcode/unitneg.c
452
if(zone->parent->in_use) {
usr.sbin/unbound/testcode/unitneg.c
453
unit_assert(zone->parent->count > zone->count);
usr.sbin/unbound/testcode/unitneg.c
455
unit_assert(zone->parent->labs == zone->labs-1);
usr.sbin/unbound/testcode/unitneg.c
457
unit_assert(zone->name[0] == (zone->len-zone->parent->len-1));
usr.sbin/unbound/testcode/unitneg.c
459
zone->parent->name) == 0);
usr.sbin/unbound/testcode/unitneg.c
77
if(z->parent) {
usr.sbin/unbound/testcode/unitneg.c
79
dname_print(stdout, NULL, z->parent->name);
usr.sbin/unbound/util/data/msgencode.c
167
p = p->parent;
usr.sbin/unbound/util/data/msgencode.c
190
n->parent = 0;
usr.sbin/unbound/util/data/msgencode.c
236
prevnode->parent = newnode;
usr.sbin/unbound/util/data/msgencode.c
249
prevnode->parent = closest;
usr.sbin/unbound/util/data/msgencode.c
88
struct compress_tree_node* parent;
usr.sbin/unbound/util/netevent.c
197
struct comm_base *base, struct comm_point* parent, size_t bufsize,
usr.sbin/unbound/util/netevent.c
5965
struct comm_point* parent, size_t bufsize,
usr.sbin/unbound/util/netevent.c
5997
c->tcp_parent = parent;
usr.sbin/unbound/util/netevent.c
5998
c->tcp_timeout_msec = parent->tcp_timeout_msec;
usr.sbin/unbound/util/netevent.c
5999
c->tcp_conn_limit = parent->tcp_conn_limit;
usr.sbin/unbound/util/netevent.c
6025
c->pp2_enabled = parent->pp2_enabled;
usr.sbin/unbound/util/netevent.c
6042
c->tcp_free = parent->tcp_free;
usr.sbin/unbound/util/netevent.c
6043
parent->tcp_free = c;
usr.sbin/unbound/util/netevent.c
6052
parent->tcp_free = c->tcp_free;
usr.sbin/unbound/util/netevent.c
6065
struct comm_point* parent, size_t bufsize, int harden_large_queries,
usr.sbin/unbound/util/netevent.c
6098
c->tcp_parent = parent;
usr.sbin/unbound/util/netevent.c
6099
c->tcp_timeout_msec = parent->tcp_timeout_msec;
usr.sbin/unbound/util/netevent.c
6100
c->tcp_conn_limit = parent->tcp_conn_limit;
usr.sbin/unbound/util/netevent.c
6164
c->tcp_free = parent->tcp_free;
usr.sbin/unbound/util/netevent.c
6165
parent->tcp_free = c;
usr.sbin/unbound/util/netevent.c
6174
parent->tcp_free = c->tcp_free;
usr.sbin/unbound/util/rbtree.c
113
right->left->parent = node;
usr.sbin/unbound/util/rbtree.c
115
right->parent = node->parent;
usr.sbin/unbound/util/rbtree.c
117
if (node->parent != RBTREE_NULL) {
usr.sbin/unbound/util/rbtree.c
118
if (node == node->parent->left) {
usr.sbin/unbound/util/rbtree.c
119
node->parent->left = right;
usr.sbin/unbound/util/rbtree.c
121
node->parent->right = right;
usr.sbin/unbound/util/rbtree.c
127
node->parent = right;
usr.sbin/unbound/util/rbtree.c
140
left->right->parent = node;
usr.sbin/unbound/util/rbtree.c
142
left->parent = node->parent;
usr.sbin/unbound/util/rbtree.c
144
if (node->parent != RBTREE_NULL) {
usr.sbin/unbound/util/rbtree.c
145
if (node == node->parent->right) {
usr.sbin/unbound/util/rbtree.c
146
node->parent->right = left;
usr.sbin/unbound/util/rbtree.c
148
node->parent->left = left;
usr.sbin/unbound/util/rbtree.c
154
node->parent = left;
usr.sbin/unbound/util/rbtree.c
163
while (node != rbtree->root && node->parent->color == RED) {
usr.sbin/unbound/util/rbtree.c
165
if (node->parent == node->parent->parent->left) {
usr.sbin/unbound/util/rbtree.c
166
uncle = node->parent->parent->right;
usr.sbin/unbound/util/rbtree.c
171
node->parent->color = BLACK;
usr.sbin/unbound/util/rbtree.c
175
node->parent->parent->color = RED;
usr.sbin/unbound/util/rbtree.c
178
node = node->parent->parent;
usr.sbin/unbound/util/rbtree.c
181
if (node == node->parent->right) {
usr.sbin/unbound/util/rbtree.c
182
node = node->parent;
usr.sbin/unbound/util/rbtree.c
186
node->parent->color = BLACK;
usr.sbin/unbound/util/rbtree.c
187
node->parent->parent->color = RED;
usr.sbin/unbound/util/rbtree.c
188
rbtree_rotate_right(rbtree, node->parent->parent);
usr.sbin/unbound/util/rbtree.c
191
uncle = node->parent->parent->left;
usr.sbin/unbound/util/rbtree.c
196
node->parent->color = BLACK;
usr.sbin/unbound/util/rbtree.c
200
node->parent->parent->color = RED;
usr.sbin/unbound/util/rbtree.c
203
node = node->parent->parent;
usr.sbin/unbound/util/rbtree.c
206
if (node == node->parent->left) {
usr.sbin/unbound/util/rbtree.c
207
node = node->parent;
usr.sbin/unbound/util/rbtree.c
211
node->parent->color = BLACK;
usr.sbin/unbound/util/rbtree.c
212
node->parent->parent->color = RED;
usr.sbin/unbound/util/rbtree.c
213
rbtree_rotate_left(rbtree, node->parent->parent);
usr.sbin/unbound/util/rbtree.c
235
rbnode_type *parent = RBTREE_NULL;
usr.sbin/unbound/util/rbtree.c
244
parent = node;
usr.sbin/unbound/util/rbtree.c
254
data->parent = parent;
usr.sbin/unbound/util/rbtree.c
260
if (parent != RBTREE_NULL) {
usr.sbin/unbound/util/rbtree.c
262
parent->left = data;
usr.sbin/unbound/util/rbtree.c
264
parent->right = data;
usr.sbin/unbound/util/rbtree.c
305
static void change_parent_ptr(rbtree_type* rbtree, rbnode_type* parent,
usr.sbin/unbound/util/rbtree.c
308
if(parent == RBTREE_NULL)
usr.sbin/unbound/util/rbtree.c
314
log_assert(parent->left == old || parent->right == old
usr.sbin/unbound/util/rbtree.c
315
|| parent->left == new || parent->right == new);
usr.sbin/unbound/util/rbtree.c
316
if(parent->left == old) parent->left = new;
usr.sbin/unbound/util/rbtree.c
317
if(parent->right == old) parent->right = new;
usr.sbin/unbound/util/rbtree.c
324
log_assert(child->parent == old || child->parent == new);
usr.sbin/unbound/util/rbtree.c
325
if(child->parent == old) child->parent = new;
usr.sbin/unbound/util/rbtree.c
352
change_parent_ptr(rbtree, to_delete->parent, to_delete, smright);
usr.sbin/unbound/util/rbtree.c
354
change_parent_ptr(rbtree, smright->parent, smright, to_delete);
usr.sbin/unbound/util/rbtree.c
368
smright->parent = smright;
usr.sbin/unbound/util/rbtree.c
372
swap_np(&to_delete->parent, &smright->parent);
usr.sbin/unbound/util/rbtree.c
384
change_parent_ptr(rbtree, to_delete->parent, to_delete, child);
usr.sbin/unbound/util/rbtree.c
385
change_child_ptr(child, to_delete, to_delete->parent);
usr.sbin/unbound/util/rbtree.c
396
else rbtree_delete_fixup(rbtree, child, to_delete->parent);
usr.sbin/unbound/util/rbtree.c
399
to_delete->parent = RBTREE_NULL;
usr.sbin/unbound/util/rbtree.c
445
child_parent = child_parent->parent;
usr.sbin/unbound/util/rbtree.c
573
rbnode_type *parent;
usr.sbin/unbound/util/rbtree.c
579
parent = node->parent;
usr.sbin/unbound/util/rbtree.c
580
while (parent != RBTREE_NULL && node == parent->right) {
usr.sbin/unbound/util/rbtree.c
581
node = parent;
usr.sbin/unbound/util/rbtree.c
582
parent = parent->parent;
usr.sbin/unbound/util/rbtree.c
584
node = parent;
usr.sbin/unbound/util/rbtree.c
592
rbnode_type *parent;
usr.sbin/unbound/util/rbtree.c
598
parent = node->parent;
usr.sbin/unbound/util/rbtree.c
599
while (parent != RBTREE_NULL && node == parent->left) {
usr.sbin/unbound/util/rbtree.c
600
node = parent;
usr.sbin/unbound/util/rbtree.c
601
parent = parent->parent;
usr.sbin/unbound/util/rbtree.c
603
node = parent;
usr.sbin/unbound/util/rbtree.h
57
rbnode_type *parent;
usr.sbin/unbound/util/storage/dnstree.c
105
node->parent = NULL;
usr.sbin/unbound/util/storage/dnstree.c
116
node->parent = NULL;
usr.sbin/unbound/util/storage/dnstree.c
126
node->parent = NULL;
usr.sbin/unbound/util/storage/dnstree.c
135
for(p = prev; p; p = p->parent)
usr.sbin/unbound/util/storage/dnstree.c
140
node->parent = p;
usr.sbin/unbound/util/storage/dnstree.c
158
node->parent = NULL;
usr.sbin/unbound/util/storage/dnstree.c
167
for(p = prev; p; p = p->parent)
usr.sbin/unbound/util/storage/dnstree.c
172
node->parent = p;
usr.sbin/unbound/util/storage/dnstree.c
217
result = result->parent;
usr.sbin/unbound/util/storage/dnstree.c
248
result = result->parent;
usr.sbin/unbound/util/storage/dnstree.h
59
struct name_tree_node* parent;
usr.sbin/unbound/util/storage/dnstree.h
81
struct addr_tree_node* parent;
usr.sbin/unbound/validator/val_anchor.c
1166
result = result->parent;
usr.sbin/unbound/validator/val_anchor.c
163
node->parent = NULL;
usr.sbin/unbound/validator/val_anchor.c
173
for(p = prev; p; p = p->parent)
usr.sbin/unbound/validator/val_anchor.c
179
node->parent = p;
usr.sbin/unbound/validator/val_anchor.h
104
struct trust_anchor* parent;
usr.sbin/unbound/validator/val_neg.c
1124
zone = zone->parent;
usr.sbin/unbound/validator/val_neg.c
1234
data = data->parent;
usr.sbin/unbound/validator/val_neg.c
1536
zone = zone->parent;
usr.sbin/unbound/validator/val_neg.c
210
p = p->parent;
usr.sbin/unbound/validator/val_neg.c
216
np = p->parent;
usr.sbin/unbound/validator/val_neg.c
245
p = p->parent;
usr.sbin/unbound/validator/val_neg.c
251
np = p->parent;
usr.sbin/unbound/validator/val_neg.c
396
result = result->parent;
usr.sbin/unbound/validator/val_neg.c
435
result = result->parent;
usr.sbin/unbound/validator/val_neg.c
484
struct val_neg_zone* parent)
usr.sbin/unbound/validator/val_neg.c
487
int tolabs = parent?parent->labs:0;
usr.sbin/unbound/validator/val_neg.c
499
np = p->parent;
usr.sbin/unbound/validator/val_neg.c
509
prev->parent = zone;
usr.sbin/unbound/validator/val_neg.c
524
for(p=zone; p; p = p->parent) {
usr.sbin/unbound/validator/val_neg.c
534
struct val_neg_zone* parent;
usr.sbin/unbound/validator/val_neg.c
539
parent = neg_closest_zone_parent(neg, nm, nm_len, labs, dclass);
usr.sbin/unbound/validator/val_neg.c
540
if(parent && query_dname_compare(parent->name, nm) == 0)
usr.sbin/unbound/validator/val_neg.c
541
return parent; /* already exists, weird */
usr.sbin/unbound/validator/val_neg.c
543
log_assert(!parent || parent->count > 0);
usr.sbin/unbound/validator/val_neg.c
544
zone = neg_zone_chain(nm, nm_len, labs, dclass, parent);
usr.sbin/unbound/validator/val_neg.c
552
np = p->parent;
usr.sbin/unbound/validator/val_neg.c
559
p->parent = parent;
usr.sbin/unbound/validator/val_neg.c
630
uint8_t* nm, size_t nm_len, int labs, struct val_neg_data* parent)
usr.sbin/unbound/validator/val_neg.c
633
int tolabs = parent?parent->labs:0;
usr.sbin/unbound/validator/val_neg.c
645
np = p->parent;
usr.sbin/unbound/validator/val_neg.c
655
prev->parent = el;
usr.sbin/unbound/validator/val_neg.c
752
struct val_neg_data* parent;
usr.sbin/unbound/validator/val_neg.c
767
parent = neg_closest_data_parent(zone, nm, nm_len, labs);
usr.sbin/unbound/validator/val_neg.c
768
if(parent && query_dname_compare(parent->name, nm) == 0) {
usr.sbin/unbound/validator/val_neg.c
770
log_assert(parent->count > 0);
usr.sbin/unbound/validator/val_neg.c
771
el = parent;
usr.sbin/unbound/validator/val_neg.c
777
log_assert(!parent || parent->count > 0);
usr.sbin/unbound/validator/val_neg.c
779
el = neg_data_chain(nm, nm_len, labs, parent);
usr.sbin/unbound/validator/val_neg.c
789
np = p->parent;
usr.sbin/unbound/validator/val_neg.c
797
p->parent = parent;
usr.sbin/unbound/validator/val_neg.c
807
for(p=el; p; p = p->parent) {
usr.sbin/unbound/validator/val_neg.h
105
struct val_neg_zone* parent;
usr.sbin/unbound/validator/val_neg.h
153
struct val_neg_data* parent;