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

/freebsd-10.0-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_ident.c621 dt_idhash_populate(dt_idhash_t *dhp) argument
623 const dt_ident_t *idp = dhp->dh_tmpl;
625 dhp->dh_tmpl = NULL; /* clear dh_tmpl first to avoid recursion */
626 dt_dprintf("populating %s idhash from %p\n", dhp->dh_name, (void *)idp);
629 if (dt_idhash_insert(dhp, idp->di_name,
641 dt_idhash_t *dhp; local
649 if ((dhp = malloc(size)) == NULL)
652 bzero(dhp, size);
653 dhp->dh_name = name;
654 dhp
673 dt_idhash_destroy(dt_idhash_t *dhp) argument
697 dt_idhash_update(dt_idhash_t *dhp) argument
720 dt_idhash_lookup(dt_idhash_t *dhp, const char *name) argument
738 dt_idhash_nextid(dt_idhash_t *dhp, uint_t *p) argument
748 dt_idhash_size(const dt_idhash_t *dhp) argument
754 dt_idhash_name(const dt_idhash_t *dhp) argument
760 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
789 dt_idhash_xinsert(dt_idhash_t *dhp, dt_ident_t *idp) argument
808 dt_idhash_delete(dt_idhash_t *dhp, dt_ident_t *key) argument
845 dt_idhash_iter(dt_idhash_t *dhp, dt_idhash_f *func, void *data) argument
876 dt_idhash_t *dhp; local
889 dt_idstack_push(dt_idstack_t *sp, dt_idhash_t *dhp) argument
895 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.c1516 dt_idhash_t *dhp; local
1525 dhp = yypcb->pcb_locals;
1527 idp = dt_idhash_lookup(dhp, dsp->ds_ident);
1530 dhp = dtp->dt_tls;
1532 idp = dt_idhash_lookup(dhp, dsp->ds_ident);
1535 dhp = dtp->dt_globals;
1674 if (dt_idhash_nextid(dhp, &id) == -1) {
1677 dsp->ds_ident, dt_idhash_name(dhp));
1681 dt_idhash_name(dhp), dt_idkind_name(idkind),
1684 idp = dt_idhash_insert(dhp, ds
2589 dt_xcook_ident(dt_node_t *dnp, dt_idhash_t *dhp, uint_t idkind, int create) argument
3143 dt_idhash_t *dhp; local
[all...]
H A Ddt_as.c78 dt_countvar(dt_idhash_t *dhp, dt_ident_t *idp, void *data) argument
90 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
1810 dt_reduceid(dt_idhash_t *dhp, dt_ident_t *idp, dtrace_hdl_t *dtp) argument
1813 dt_idhash_delete(dhp, idp);
H A Ddt_dof.c397 dof_add_probe(dt_idhash_t *dhp, dt_ident_t *idp, void *data) argument
/freebsd-10.0-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.0-release/cddl/contrib/dtracetoolkit/Apps/
H A Dshellsnoop74 while getopts dhp:qsu:v name
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/Bin/
H A Dshellsnoop74 while getopts dhp:qsu:v name
/freebsd-10.0-release/sys/cddl/dev/dtrace/
H A Ddtrace_ioctl.c35 dof_helper_t *dhp = NULL; local
40 dhp = (dof_helper_t *)addr;
42 addr = (caddr_t)(vm_offset_t)dhp->dofhp_dof;
51 if ((rval = dtrace_helper_slurp((dof_hdr_t *)dof, dhp)) != -1) {
52 if (dhp) {
53 dhp->gen = rval;
54 copyout(dhp, addr, sizeof(*dhp));
/freebsd-10.0-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.h179 u_int16_t *dtp, u_int8_t *dhp);
/freebsd-10.0-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.0-release/crypto/openssl/ssl/
H A Dd1_srvr.c1061 DH *dh=NULL,*dhp; local
1124 dhp=cert->dh_tmp;
1125 if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
1126 dhp=s->cert->dh_tmp_cb(s,
1129 if (dhp == NULL)
1143 if ((dh=DHparams_dup(dhp)) == NULL)
1150 if ((dhp->pub_key == NULL ||
1151 dhp->priv_key == NULL ||
1163 dh->pub_key=BN_dup(dhp->pub_key);
1164 dh->priv_key=BN_dup(dhp
[all...]
H A Ds3_srvr.c1602 DH *dh=NULL,*dhp; local
1666 dhp=cert->dh_tmp;
1667 if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
1668 dhp=s->cert->dh_tmp_cb(s,
1671 if (dhp == NULL)
1684 if ((dh=DHparams_dup(dhp)) == NULL)
1691 if ((dhp->pub_key == NULL ||
1692 dhp->priv_key == NULL ||
1704 dh->pub_key=BN_dup(dhp->pub_key);
1705 dh->priv_key=BN_dup(dhp
[all...]
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Ddtrace.c8263 dtrace_helper_provide_one(dof_helper_t *dhp, dof_sec_t *sec, pid_t pid)
8265 uintptr_t daddr = (uintptr_t)dhp->dofhp_dof;
8324 dhpb.dthpb_mod = dhp->dofhp_mod;
8348 dtrace_helper_provide(dof_helper_t *dhp, pid_t pid)
8350 uintptr_t daddr = (uintptr_t)dhp->dofhp_dof;
8363 dtrace_helper_provide_one(dhp, sec, pid);
8377 dtrace_helper_provider_remove_one(dof_helper_t *dhp, dof_sec_t *sec, pid_t pid)
8379 uintptr_t daddr = (uintptr_t)dhp->dofhp_dof;
8405 dtrace_helper_provider_remove(dof_helper_t *dhp, pid_t pid)
8407 uintptr_t daddr = (uintptr_t)dhp
[all...]

Completed in 161 milliseconds