Home
last modified time | relevance | path

Searched refs:dof (Results 1 – 16 of 16) sorted by relevance

/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddrti.c100 dof_hdr_t *dof = &__SUNW_dof; in dtrace_dof_init() local
139 if (dof->dofh_ident[DOF_ID_MAG0] != DOF_MAG_MAG0 || in dtrace_dof_init()
140 dof->dofh_ident[DOF_ID_MAG1] != DOF_MAG_MAG1 || in dtrace_dof_init()
141 dof->dofh_ident[DOF_ID_MAG2] != DOF_MAG_MAG2 || in dtrace_dof_init()
142 dof->dofh_ident[DOF_ID_MAG3] != DOF_MAG_MAG3) { in dtrace_dof_init()
153 dh.dofhp_dof = (uintptr_t)dof; in dtrace_dof_init()
193 dbg_printf(1, "DTrace ioctl failed for DOF at %p", dof); in dtrace_dof_init()
195 dbg_printf(1, "DTrace ioctl succeeded for DOF at %p\n", dof); in dtrace_dof_init()
H A Ddt_link.c114 dofs = (dof_sec_t *)((char *)dof + dof->dofh_secoff); in prepare_elf32()
254 sym->st_size = dof->dofh_filesz; in prepare_elf32()
303 dofs = (dof_sec_t *)((char *)dof + dof->dofh_secoff); in prepare_elf64()
437 sym->st_size = dof->dofh_filesz; in prepare_elf64()
548 shp->sh_size = dof->dofh_filesz; in dump_elf32()
579 PWRITE_SCN(ESHDR_DOF, dof)) { in dump_elf32()
600 PWRITE_SCN(ESHDR_DOF, dof)) { in dump_elf32()
705 shp->sh_size = dof->dofh_filesz; in dump_elf64()
1719 dof_hdr_t *dof; in dtrace_program_link() local
1798 if (dt_write(dtp, fd, dof, dof->dofh_filesz) < dof->dofh_filesz) in dtrace_program_link()
[all …]
H A Ddt_options.c909 dof_hdr_t hdr, *dof; in dt_options_load() local
918 dof = &hdr; in dt_options_load()
923 if (dt_ioctl(dtp, DTRACEIOC_DOFGET, dof) == -1) in dt_options_load()
925 if (dt_ioctl(dtp, DTRACEIOC_DOFGET, &dof) == -1) in dt_options_load()
941 bzero(dof, sizeof (dof_hdr_t)); in dt_options_load()
942 dof->dofh_loadsz = hdr.dofh_loadsz; in dt_options_load()
948 if (dt_ioctl(dtp, DTRACEIOC_DOFGET, dof) == -1) in dt_options_load()
957 for (i = 0; i < dof->dofh_secnum; i++) { in dt_options_load()
959 dof->dofh_secoff + i * dof->dofh_secsize); in dt_options_load()
982 if (dof != NULL && dof != &hdr) in dt_options_load()
[all …]
H A Ddt_dof.c642 dt_buf_t dof; in dtrace_dof_create() local
897 dt_buf_create(dtp, &dof, "dof", h.dofh_filesz); in dtrace_dof_create()
905 return (dt_buf_claim(dtp, &dof)); in dtrace_dof_create()
911 dt_free(dtp, dof); in dtrace_dof_destroy()
917 dof_hdr_t *dof; in dtrace_getopt_dof() local
930 if ((dof = dt_zalloc(dtp, len)) == NULL || in dtrace_getopt_dof()
931 dof_hdr(dtp, DOF_VERSION, dof) != 0) { in dtrace_getopt_dof()
932 dt_free(dtp, dof); in dtrace_getopt_dof()
937 dof->dofh_loadsz = len; in dtrace_getopt_dof()
938 dof->dofh_filesz = len; in dtrace_getopt_dof()
[all …]
H A Ddt_work.c186 void *dof; in dtrace_go() local
204 if ((dof = dtrace_getopt_dof(dtp)) == NULL) in dtrace_go()
207 args.dof = dof; in dtrace_go()
211 dtrace_dof_destroy(dtp, dof); in dtrace_go()
H A Ddt_program.c157 void *dof; in dtrace_program_exec() local
162 if ((dof = dtrace_dof_create(dtp, pgp, DTRACE_D_STRIP)) == NULL) in dtrace_program_exec()
165 args.dof = dof; in dtrace_program_exec()
168 dtrace_dof_destroy(dtp, dof); in dtrace_program_exec()
H A Ddt_pid.c834 args.dof = NULL; in dt_pid_create_probes_module()
/freebsd/sys/cddl/dev/dtrace/
H A Ddtrace_ioctl.c35 dof_hdr_t *dof; in dtrace_ioctl_helper() local
39 dof = NULL; in dtrace_ioctl_helper()
63 if (dof == NULL) { in dtrace_ioctl_helper()
390 dtrace_dof_destroy(dof); in dtrace_ioctl()
395 dof_hdr_t *dof = NULL; in dtrace_ioctl() local
408 if (p->dof == NULL) { in dtrace_ioctl()
414 if ((dof = dtrace_dof_copyin((uintptr_t) p->dof, &rval)) == NULL) in dtrace_ioctl()
424 dtrace_dof_destroy(dof); in dtrace_ioctl()
432 dtrace_dof_destroy(dof); in dtrace_ioctl()
440 dtrace_dof_destroy(dof); in dtrace_ioctl()
[all …]
/freebsd/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Ddtrace.c9569 dof->dofh_secoff + i * dof->dofh_secsize);
9626 dof->dofh_secoff + i * dof->dofh_secsize);
13269 return (dof);
13313 return (dof);
13363 return (dof);
13413 dof = NULL;
13475 return (dof);
13520 return (dof);
13527 kmem_free(dof, dof->dofh_loadsz);
13540 ((uintptr_t)dof + dof->dofh_secoff + i * dof->dofh_secsize);
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/baddof/
H A Dbaddof.c161 unsigned char *dof, *copy; in main() local
185 dof = dtrace_dof_create(dtp, pgp, 0); in main()
186 len = ((dof_hdr_t *)dof)->dofh_loadsz; in main()
192 bcopy(dof, copy, len); in main()
/freebsd/contrib/ntp/libntp/
H A Dntp_calendar.c1117 int32_t dof in ntpcal_daysplit_to_date() argument
1120 dof += ntpcal_daysec_to_date(jd, ds->lo); in ntpcal_daysplit_to_date()
1121 return ntpcal_rd_to_date(jd, ds->hi + dof); in ntpcal_daysplit_to_date()
1138 int32_t dof in ntpcal_daysplit_to_tm() argument
1141 dof += ntpcal_daysec_to_tm(utm, ds->lo); in ntpcal_daysplit_to_tm()
1143 return ntpcal_rd_to_tm(utm, ds->hi + dof); in ntpcal_daysplit_to_tm()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/
H A Ddtrace.c683 anon_prog(const dtrace_cmd_t *dcp, dof_hdr_t *dof, int n) in anon_prog() argument
687 if (dof == NULL) in anon_prog()
690 p = (uchar_t *)dof; in anon_prog()
691 q = p + dof->dofh_filesz; in anon_prog()
713 dtrace_dof_destroy(g_dtp, dof); in anon_prog()
/freebsd/contrib/bsnmp/gensnmptree/
H A Dgensnmptree.c1507 gen_enum(FILE *fp, const struct type *t, int dof) in gen_enum() argument
1535 if (dof) { in gen_enum()
1583 gen_enums(FILE *fp, int dof) in gen_enums() argument
1589 gen_enum(fp, t, dof); in gen_enums()
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Ddtrace.h1314 void *dof; /* DOF userland address written to driver. */ member
/freebsd/contrib/tzdata/
H A Dnorthamerica2514 # http://dof.gob.mx/nota_detalle.php?codigo=5127480&fecha=06/01/2010
2550 # http://www.dof.gob.mx/nota_detalle.php?codigo=5380123&fecha=31/01/2015
2566 # https://www.dof.gob.mx/nota_detalle.php?codigo=5670045&fecha=28/10/2022
2614 # https://www.dof.gob.mx/nota_detalle.php?codigo=5670045&fecha=28/10/2022
2768 # http://dof.gob.mx/nota_detalle.php?codigo=5127480&fecha=06/01/2010
/freebsd/contrib/llvm-project/lld/MachO/
H A DOptions.td1008 HelpText<"Disable dtrace-dof processing (default).">,