Home
last modified time | relevance | path

Searched refs:seclen (Results 1 – 7 of 7) sorted by relevance

/NextBSD/contrib/ntp/libntp/
HDauthreadkeys.c90 u_short seclen; /* length of secret */ member
233 next->seclen = len; in authreadkeys()
262 next->seclen = len; in authreadkeys()
289 next->secbuf, next->seclen); in authreadkeys()
291 memset(next, 0, sizeof(*next) + next->seclen); in authreadkeys()
301 memset(next, 0, sizeof(*next) + next->seclen); in authreadkeys()
/NextBSD/contrib/gdb/gdb/
HDexec.c632 unsigned seclen; in set_section_command() local
642 seclen = args - secname; in set_section_command()
649 if (!strncmp (secname, bfd_section_name (exec_bfd, p->the_bfd_section), seclen) in set_section_command()
650 && bfd_section_name (exec_bfd, p->the_bfd_section)[seclen] == '\0') in set_section_command()
660 if (seclen >= sizeof (secprint)) in set_section_command()
661 seclen = sizeof (secprint) - 1; in set_section_command()
662 strncpy (secprint, secname, seclen); in set_section_command()
663 secprint[seclen] = '\0'; in set_section_command()
/NextBSD/contrib/bsnmp/snmpd/
HDaction.c872 size_t seclen; in op_modules() local
900 &section, &seclen)) in op_modules()
904 if (seclen > LM_SECTION_MAX || seclen == 0) { in op_modules()
908 for (ptr = section; ptr < section + seclen; ptr++) in op_modules()
957 strncpy(mdep->section, section, seclen); in op_modules()
958 mdep->section[seclen] = '\0'; in op_modules()
/NextBSD/cddl/contrib/opensolaris/tools/ctf/cvt/
HDoutput.c603 char seclen = strlen(CTF_ELF_SCN_NAME); in write_file() local
606 seclen + 1); in write_file()
611 shdr.sh_size += seclen + 1; in write_file()
612 ddata->d_size += seclen + 1; in write_file()
/NextBSD/contrib/elftoolchain/readelf/
HDreadelf.c4437 size_t len, seclen, nlen, sublen; in dump_attributes() local
4470 seclen = re->dw_decode(&p, 4); in dump_attributes()
4471 if (seclen > len) { in dump_attributes()
4475 len -= seclen; in dump_attributes()
4477 if (nlen + 4 > seclen) { in dump_attributes()
4483 seclen -= nlen + 4; in dump_attributes()
4484 while (seclen > 0) { in dump_attributes()
4488 if (sublen > seclen) { in dump_attributes()
4493 seclen -= sublen; in dump_attributes()
/NextBSD/sys/cddl/contrib/opensolaris/uts/common/dtrace/
HDdtrace.c13776 uint64_t len = dof->dofh_loadsz, seclen; local
13850 seclen = (uint64_t)dof->dofh_secnum * (uint64_t)dof->dofh_secsize;
13852 if (dof->dofh_secoff > len || seclen > len ||
13853 dof->dofh_secoff + seclen > len) {
/NextBSD/crypto/openssh/
HDChangeLog262 dh_need needs to be set to max(seclen, blocksize, ivlen, mac_len)