Symbol: heartbeat
sys/arch/hppa/dev/lcd.c
97
sc->sc_heartbeat[i] = pdc_lcd->heartbeat[i];
sys/arch/hppa/include/pdc.h
655
uint8_t heartbeat[3];
sys/dev/ic/ciss.c
1345
sc->cfgoff + offsetof(struct ciss_config, heartbeat));
sys/dev/ic/ciss.c
1346
if (hb == sc->heartbeat) {
sys/dev/ic/ciss.c
1355
sc->heartbeat = hb;
sys/dev/ic/cissreg.h
101
u_int32_t heartbeat;
sys/dev/ic/cissvar.h
78
u_int32_t heartbeat;
sys/dev/pci/cxgb/cxgb_t3_cpl.h
957
__u8 heartbeat:1;
sys/dev/pci/cxgb/cxgb_t3_cpl.h
961
__u8 heartbeat:1;
sys/kern/kern_clock.c
342
heartbeat();
sys/netinet/sctp_header.h
255
struct sctp_heartbeat heartbeat;
sys/netinet/sctp_input.c
420
if (cp->heartbeat.hb_info.addr_family == AF_INET &&
sys/netinet/sctp_input.c
421
cp->heartbeat.hb_info.addr_len == sizeof(struct sockaddr_in)) {
sys/netinet/sctp_input.c
422
sin->sin_family = cp->heartbeat.hb_info.addr_family;
sys/netinet/sctp_input.c
423
sin->sin_len = cp->heartbeat.hb_info.addr_len;
sys/netinet/sctp_input.c
425
memcpy(&sin->sin_addr, cp->heartbeat.hb_info.address,
sys/netinet/sctp_input.c
427
} else if (cp->heartbeat.hb_info.addr_family == AF_INET6 &&
sys/netinet/sctp_input.c
428
cp->heartbeat.hb_info.addr_len == sizeof(struct sockaddr_in6)) {
sys/netinet/sctp_input.c
429
sin6->sin6_family = cp->heartbeat.hb_info.addr_family;
sys/netinet/sctp_input.c
430
sin6->sin6_len = cp->heartbeat.hb_info.addr_len;
sys/netinet/sctp_input.c
432
memcpy(&sin6->sin6_addr, cp->heartbeat.hb_info.address,
sys/netinet/sctp_input.c
452
(r_net->heartbeat_random1 == cp->heartbeat.hb_info.random_value1) &&
sys/netinet/sctp_input.c
453
(r_net->heartbeat_random2 == cp->heartbeat.hb_info.random_value2)) {
sys/netinet/sctp_input.c
464
tv.tv_sec = cp->heartbeat.hb_info.time_value_1;
sys/netinet/sctp_input.c
465
tv.tv_usec = cp->heartbeat.hb_info.time_value_2;
sys/netinet/sctp_output.c
8347
hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO);
sys/netinet/sctp_output.c
8348
hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param));
sys/netinet/sctp_output.c
8349
hb->heartbeat.hb_info.time_value_1 = now.tv_sec;
sys/netinet/sctp_output.c
8350
hb->heartbeat.hb_info.time_value_2 = now.tv_usec;
sys/netinet/sctp_output.c
8352
hb->heartbeat.hb_info.user_req = user_req;
sys/netinet/sctp_output.c
8353
hb->heartbeat.hb_info.addr_family = sin->sin_family;
sys/netinet/sctp_output.c
8354
hb->heartbeat.hb_info.addr_len = sin->sin_len;
sys/netinet/sctp_output.c
8359
net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
sys/netinet/sctp_output.c
8360
net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
sys/netinet/sctp_output.c
8362
net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = 0;
sys/netinet/sctp_output.c
8363
net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = 0;
sys/netinet/sctp_output.c
8366
memcpy(hb->heartbeat.hb_info.address, &sin->sin_addr, sizeof(sin->sin_addr));
sys/netinet/sctp_output.c
8370
memcpy(hb->heartbeat.hb_info.address, &sin6->sin6_addr, sizeof(sin6->sin6_addr));
sys/sys/heartbeat.h
44
void heartbeat(void);