Symbol: pipe_data
usr/src/cmd/mdb/common/mdb/mdb_cmds.c
2448
if (p.pipe_data == NULL)
usr/src/cmd/mdb/common/mdb/mdb_cmds.c
2456
mdb_printf("%lx\n", *p.pipe_data++);
usr/src/cmd/mdb/common/mdb/mdb_modapi.c
949
p->pipe_data = &adp->ad_data[adp->ad_ndx - 1];
usr/src/cmd/mdb/common/mdb/mdb_modapi.c
953
p->pipe_data = NULL;
usr/src/cmd/mdb/common/mdb/mdb_modapi.c
973
bcopy(p->pipe_data, cp->c_addrv.ad_data, nbytes);
usr/src/cmd/mdb/common/mdb/mdb_modapi.h
170
uintptr_t *pipe_data; /* Array of pipe values */
usr/src/cmd/mdb/common/mdb/mdb_whatis.c
559
w.w_addrs = p.pipe_data;
usr/src/cmd/mdb/common/modules/genunix/findstack.c
458
uintptr_t addr = tlist->pipe_data[idx];
usr/src/cmd/mdb/common/modules/genunix/findstack.c
741
if (p.pipe_data == NULL || p.pipe_len == 0) {
usr/src/cmd/mdb/common/modules/genunix/findstack.c
742
p.pipe_data = &addr;
usr/src/cmd/mdb/common/modules/genunix/findstack.c
745
qsort(p.pipe_data, p.pipe_len, sizeof (uintptr_t),
usr/src/cmd/mdb/common/modules/genunix/findstack.c
751
uintptr_t *data = &p.pipe_data[idx];
usr/src/cmd/mdb/common/modules/genunix/findstack.c
797
p.pipe_data, p.pipe_len, sizeof (uintptr_t),
usr/src/cmd/mdb/common/modules/genunix/findstack.c
801
seen[entry - p.pipe_data]++;
usr/src/cmd/mdb/common/modules/genunix/findstack.c
930
p.pipe_data[idx]);
usr/src/cmd/mdb/common/modules/mdb_test/mdb_test.c
107
if (p.pipe_data == NULL || p.pipe_len != 16) {
usr/src/cmd/mdb/common/modules/mdb_test/mdb_test.c
112
if (p.pipe_data[0] != addr) {
usr/src/cmd/mdb/common/modules/mdb_test/mdb_test.c
117
qsort(p.pipe_data, p.pipe_len, sizeof (uintptr_t), compare);
usr/src/cmd/mdb/common/modules/mdb_test/mdb_test.c
121
if (p.pipe_data[i] != i) {