Searched refs:dhp (Results 1 - 18 of 18) sorted by relevance

/freebsd-10.1-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_ident.c626 dt_idhash_populate(dt_idhash_t *dhp) argument
628 const dt_ident_t *idp = dhp->dh_tmpl;
630 dhp->dh_tmpl = NULL; /* clear dh_tmpl first to avoid recursion */
631 dt_dprintf("populating %s idhash from %p\n", dhp->dh_name, (void *)idp);
634 if (dt_idhash_insert(dhp, idp->di_name,
646 dt_idhash_t *dhp; local
654 if ((dhp = malloc(size)) == NULL)
657 bzero(dhp, size);
658 dhp->dh_name = name;
659 dhp
678 dt_idhash_destroy(dt_idhash_t *dhp) argument
702 dt_idhash_update(dt_idhash_t *dhp) argument
725 dt_idhash_lookup(dt_idhash_t *dhp, const char *name) argument
743 dt_idhash_nextid(dt_idhash_t *dhp, uint_t *p) argument
753 dt_idhash_size(const dt_idhash_t *dhp) argument
759 dt_idhash_name(const dt_idhash_t *dhp) argument
765 dt_idhash_insert(dt_idhash_t *dhp, const char *name, ushort_t kind, ushort_t flags, uint_t id, dtrace_attribute_t attr, uint_t vers, const dt_idops_t *ops, void *iarg, ulong_t gen) argument
794 dt_idhash_xinsert(dt_idhash_t *dhp, dt_ident_t *idp) argument
813 dt_idhash_delete(dt_idhash_t *dhp, dt_ident_t *key) argument
850 dt_idhash_iter(dt_idhash_t *dhp, dt_idhash_f *func, void *data) argument
881 dt_idhash_t *dhp; local
894 dt_idstack_push(dt_idstack_t *sp, dt_idhash_t *dhp) argument
900 dt_idstack_pop(dt_idstack_t *sp, dt_idhash_t *dhp) argument
[all...]
H A Ddt_pcb.c93 dt_pcb_pop_ident(dt_idhash_t *dhp, dt_ident_t *idp, void *arg) argument
98 dt_idhash_delete(dhp, idp);
H A Ddt_parser.c1553 dt_idhash_t *dhp; local
1562 dhp = yypcb->pcb_locals;
1564 idp = dt_idhash_lookup(dhp, dsp->ds_ident);
1567 dhp = dtp->dt_tls;
1569 idp = dt_idhash_lookup(dhp, dsp->ds_ident);
1572 dhp = dtp->dt_globals;
1712 if (dt_idhash_nextid(dhp, &id) == -1) {
1715 dsp->ds_ident, dt_idhash_name(dhp));
1719 dt_idhash_name(dhp), dt_idkind_name(idkind),
1722 idp = dt_idhash_insert(dhp, ds
2629 dt_xcook_ident(dt_node_t *dnp, dt_idhash_t *dhp, uint_t idkind, int create) argument
3188 dt_idhash_t *dhp; local
[all...]
H A Ddt_as.c80 dt_countvar(dt_idhash_t *dhp, dt_ident_t *idp, void *data) argument
92 dt_copyvar(dt_idhash_t *dhp, dt_ident_t *idp, void *data) argument
H A Ddt_program.c404 dt_header_decl(dt_idhash_t *dhp, dt_ident_t *idp, void *data) argument
457 dt_header_probe(dt_idhash_t *dhp, dt_ident_t *idp, void *data) argument
H A Ddt_pragma.c53 dt_pragma_apply(dt_idhash_t *dhp, dt_ident_t *idp) argument
H A Ddt_cc.c125 dt_idreset(dt_idhash_t *dhp, dt_ident_t *idp, void *ignored) argument
134 dt_idpragma(dt_idhash_t *dhp, dt_ident_t *idp, void *ignored) argument
1831 dt_reduceid(dt_idhash_t *dhp, dt_ident_t *idp, dtrace_hdl_t *dtp) argument
1834 dt_idhash_delete(dhp, idp);
H A Ddt_dof.c398 dof_add_probe(dt_idhash_t *dhp, dt_ident_t *idp, void *data) argument
/freebsd-10.1-release/sys/sys/
H A Dclock.h93 void timespec2fattime(struct timespec *tsp, int utc, u_int16_t *ddp, u_int16_t *dtp, u_int8_t *dhp);
/freebsd-10.1-release/cddl/contrib/dtracetoolkit/Apps/
H A Dshellsnoop74 while getopts dhp:qsu:v name
/freebsd-10.1-release/cddl/contrib/dtracetoolkit/Bin/
H A Dshellsnoop74 while getopts dhp:qsu:v name
/freebsd-10.1-release/sys/cddl/dev/dtrace/
H A Ddtrace_ioctl.c36 dof_helper_t *dhp = NULL; local
41 dhp = (dof_helper_t *)addr;
43 addr = (caddr_t)(vm_offset_t)dhp->dofhp_dof;
52 if ((rval = dtrace_helper_slurp((dof_hdr_t *)dof, dhp)) != -1) {
53 if (dhp) {
54 dhp->gen = rval;
55 copyout(dhp, addr, sizeof(*dhp));
/freebsd-10.1-release/sys/fs/smbfs/
H A Dsmbfs_subr.c90 u_int16_t *dtp, u_int8_t *dhp)
98 timespec2fattime(&tt, 1, ddp, dtp, dhp);
89 smb_time_unix2dos(struct timespec *tsp, int tzoff, u_int16_t *ddp, u_int16_t *dtp, u_int8_t *dhp) argument
H A Dsmbfs_subr.h177 u_int16_t *dtp, u_int8_t *dhp);
/freebsd-10.1-release/sys/kern/
H A Dsubr_fattime.c138 timespec2fattime(struct timespec *tsp, int utc, uint16_t *ddp, uint16_t *dtp, uint8_t *dhp) argument
147 if (dhp != NULL)
148 *dhp = (tsp->tv_sec & 1) * 100 + tsp->tv_nsec / 10000000;
/freebsd-10.1-release/crypto/openssl/ssl/
H A Dd1_srvr.c1080 DH *dh = NULL, *dhp; local
1140 dhp = cert->dh_tmp;
1141 if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
1142 dhp = s->cert->dh_tmp_cb(s,
1147 if (dhp == NULL) {
1161 if ((dh = DHparams_dup(dhp)) == NULL) {
1167 if ((dhp->pub_key == NULL ||
1168 dhp->priv_key == NULL ||
1176 dh->pub_key = BN_dup(dhp->pub_key);
1177 dh->priv_key = BN_dup(dhp
[all...]
H A Ds3_srvr.c1642 DH *dh = NULL, *dhp; local
1703 dhp = cert->dh_tmp;
1704 if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
1705 dhp = s->cert->dh_tmp_cb(s,
1710 if (dhp == NULL) {
1723 if ((dh = DHparams_dup(dhp)) == NULL) {
1729 if ((dhp->pub_key == NULL ||
1730 dhp->priv_key == NULL ||
1737 dh->pub_key = BN_dup(dhp->pub_key);
1738 dh->priv_key = BN_dup(dhp
[all...]
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Ddtrace.c9223 dtrace_helper_provide_one(dof_helper_t *dhp, dof_sec_t *sec, pid_t pid)
9225 uintptr_t daddr = (uintptr_t)dhp->dofhp_dof;
9284 dhpb.dthpb_mod = dhp->dofhp_mod;
9308 dtrace_helper_provide(dof_helper_t *dhp, pid_t pid)
9310 uintptr_t daddr = (uintptr_t)dhp->dofhp_dof;
9323 dtrace_helper_provide_one(dhp, sec, pid);
9337 dtrace_helper_provider_remove_one(dof_helper_t *dhp, dof_sec_t *sec, pid_t pid)
9339 uintptr_t daddr = (uintptr_t)dhp->dofhp_dof;
9365 dtrace_helper_provider_remove(dof_helper_t *dhp, pid_t pid)
9367 uintptr_t daddr = (uintptr_t)dhp
[all...]

Completed in 206 milliseconds