Searched defs:hpp (Results 1 - 12 of 12) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/sctp/
H A Dsctp_heartbeat.c121 sctp_parm_hdr_t *hpp; local
133 sizeof (*hpp) +
149 hpp = (sctp_parm_hdr_t *)(cp + 1);
150 hpp->sph_type = htons(PARM_HBINFO);
151 hpp->sph_len = hblen - sizeof (*cp);
152 hpp->sph_len = htons(hpp->sph_len);
161 t = (int64_t *)(hpp + 1);
279 sctp_parm_hdr_t *hpp; local
286 if (ntohs(cp->sch_len) < (sizeof (*cp) + sizeof (*hpp)
[all...]
/illumos-gate/usr/src/uts/common/avs/ns/nsctl/
H A Dnsc_disk.c390 nsc_dbuf_t **hpp, *hp; local
399 hpp = (nsc_dbuf_t **)&iodev->si_active;
401 for (; *hpp; hpp = &hp->db_next) {
402 if ((hp = *hpp) == h) {
403 *hpp = h->db_next;
H A Dnsc_ncallio.c361 nsc_ncio_buf_t **hpp, *hp; local
371 for (hpp = (nsc_ncio_buf_t **)&iodev->si_active;
372 *hpp; hpp = &hp->next) {
373 if ((hp = *hpp) == h) {
374 *hpp = h->next;
/illumos-gate/usr/src/lib/libnwam/common/
H A Dlibnwam_object.c47 struct nwam_handle **hpp)
50 assert(name != NULL && hpp != NULL);
53 *hpp = NULL;
57 if ((*hpp = calloc(1, sizeof (struct nwam_handle))) == NULL)
60 (*hpp)->nwh_object_type = type;
61 (void) strlcpy((*hpp)->nwh_name, name, strlen(name) + 1);
62 (*hpp)->nwh_committed = B_FALSE;
63 (*hpp)->nwh_data = NULL;
73 uint64_t flags, struct nwam_handle **hpp)
78 assert(name != NULL && hpp !
46 nwam_handle_create(nwam_object_type_t type, const char *name, struct nwam_handle **hpp) argument
72 nwam_read(nwam_object_type_t type, const char *dbname, const char *name, uint64_t flags, struct nwam_handle **hpp) argument
121 nwam_create(nwam_object_type_t type, const char *dbname, const char *name, struct nwam_handle **hpp) argument
[all...]
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dnl7chttp.c702 * EOL char, "**hpp" will point to remainder of the parse data (if none,
703 * **hpp == **epp), and "*hash" will be updated.
705 * If no match, as above except "**hpp" points to the begining of the
712 * If EOH (i.e. an empty line) NULL is returned, "**hpp" is set to NULL,
717 ttree_line_parse(ttree_t *t, char **cpp, char **epp, char **hpp, uint32_t *hash) argument
740 *hpp = NULL;
749 *hpp = NULL;
798 *hpp = *cpp;
804 *hpp = cp;
/illumos-gate/usr/src/uts/common/vm/
H A Dseg_map.c991 struct smap **hpp; local
1035 hpp = &smd_hash[hashid].sh_hash_list;
1036 smp->sm_hash = *hpp;
1037 *hpp = smp;
1050 struct smap **hpp, *hp; local
1065 hpp = &smd_hash[hashid].sh_hash_list;
1067 hp = *hpp;
1074 hpp = &hp->sm_hash;
1077 *hpp = smp->sm_hash;
H A Dvm_pagelist.c3219 page_t *targpp, *rpp, *hpp; local
3244 hpp = pp;
3248 page_list_concat(&pplist, &hpp);
3321 ASSERT(hpp = pp); /* That's right, it's an assignment */
3344 ASSERT(targpp == hpp);
H A Dvm_page.c3491 page_t **hpp; local
3501 hpp = &page_hash[PAGE_HASH_FUNC(vp, pp->p_offset)];
3504 hp = *hpp;
3511 hpp = &hp->p_hash;
3513 *hpp = pp->p_hash;
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/
H A Dikeadm.c573 * Parse an address off the command line. In the hpp param, either
589 parse_addr(int argc, char **argv, struct hostent **hpp) argument
633 *hpp = hp;
H A Dipseckey.c740 parseaddr(char *addr, struct hostent **hpp, boolean_t v6only, char *ebuf) argument
797 *hpp = hp;
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Droute.c251 int *plenp, struct hostent **hpp);
253 int *plenp, int which, struct hostent **hpp, addr_type_t atype,
2045 struct hostent **hpp; local
2050 hpp = &(rcip->ri_gate_hp);
2052 hpp = &hp;
2054 *hpp = NULL;
2111 if (!in6_getaddr(s, &su->sin6, &masklen, hpp)) {
2131 return (in6_getaddr(s, &su->sin6, NULL, hpp));
2144 if (!in_getaddr(s, &su->sin, &masklen, which, hpp,
2166 return (in_getaddr(s, &su->sin, NULL, which, hpp, atyp
2193 in_getaddr(char *s, struct sockaddr_in *sin, int *plenp, int which, struct hostent **hpp, addr_type_t atype, rtcmd_irep_t *rcip) argument
2281 in6_getaddr(char *s, struct sockaddr_in6 *sin6, int *plenp, struct hostent **hpp) argument
[all...]
/illumos-gate/usr/src/cmd/syslogd/
H A Dsyslogd.c5321 struct hostname_cache **hpp; local
5333 for (hpp = &hnc_cache[i]; *hpp != NULL; ) {
5334 hnc_unreg(hpp);
5359 struct hostname_cache **hpp, *hp; local
5377 for (hpp = &hnc_cache[index]; (hp = *hpp) != NULL; ) {
5385 hnc_unreg(hpp);
5397 *hpp = (*hpp)
5426 struct hostname_cache **hpp, **tailp, *hp, *entry; local
5506 hnc_unreg(struct hostname_cache **hpp) argument
[all...]

Completed in 131 milliseconds