Lines Matching refs:sshbuf_get_u32
2466 (r = sshbuf_get_u32(b, (u_int *)&enc->enabled)) != 0 || in newkeys_from_blob()
2467 (r = sshbuf_get_u32(b, &enc->block_size)) != 0 || in newkeys_from_blob()
2480 if ((r = sshbuf_get_u32(b, (u_int *)&mac->enabled)) != 0 || in newkeys_from_blob()
2489 if ((r = sshbuf_get_u32(b, &comp->type)) != 0 || in newkeys_from_blob()
2516 if ((r = sshbuf_get_u32(m, &kex->we_need)) != 0 || in kex_from_blob()
2518 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_type)) != 0 || in kex_from_blob()
2519 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_nid)) != 0 || in kex_from_blob()
2520 (r = sshbuf_get_u32(m, &kex->kex_type)) != 0 || in kex_from_blob()
2521 (r = sshbuf_get_u32(m, &kex->kex_strict)) != 0 || in kex_from_blob()
2527 (r = sshbuf_get_u32(m, &kex->flags)) != 0) in kex_from_blob()
2560 (r = sshbuf_get_u32(m, &state->rekey_interval)) != 0 || in ssh_packet_set_state()
2561 (r = sshbuf_get_u32(m, &state->p_send.seqnr)) != 0 || in ssh_packet_set_state()
2563 (r = sshbuf_get_u32(m, &state->p_send.packets)) != 0 || in ssh_packet_set_state()
2565 (r = sshbuf_get_u32(m, &state->p_read.seqnr)) != 0 || in ssh_packet_set_state()
2567 (r = sshbuf_get_u32(m, &state->p_read.packets)) != 0 || in ssh_packet_set_state()
2688 return sshbuf_get_u32(ssh->state->incoming_packet, valp); in sshpkt_get_u32()