/vbox/src/VBox/RDP/client-1.8.3/ |
H A D | rdpsnd_libao.c | 151 struct audio_packet *packet; local 171 packet = rdpsnd_queue_current_packet(); 172 out = &packet->s; 184 if (packet->tick > next_tick) 187 if ((out->p == out->end) || duration > next_tick - packet->tick + 500) 194 if (abs((next_tick - packet->tick) - duration) > 20) 196 DEBUG(("duration: %d, calc: %d, ", duration, next_tick - packet->tick)); 197 DEBUG(("last: %d, is: %d, should: %d\n", packet->tick, 198 (packet->tick + duration) % 65536, next_tick % 65536));
|
H A D | rdpsnd_alsa.c | 349 struct audio_packet *packet; local 369 packet = rdpsnd_queue_current_packet(); 370 out = &packet->s; 387 if (packet->tick > next_tick) 390 if ((out->p == out->end) || duration > next_tick - packet->tick + 500) 398 if (abs((next_tick - packet->tick) - duration) > 20) 400 DEBUG(("duration: %d, calc: %d, ", duration, next_tick - packet->tick)); 401 DEBUG(("last: %d, is: %d, should: %d\n", packet->tick, 402 (packet->tick + duration) % 65536, next_tick % 65536));
|
H A D | rdpsnd_oss.c | 401 struct audio_packet *packet; local 411 packet = rdpsnd_queue_current_packet(); 412 out = &packet->s;
|
H A D | rdpsnd_sgi.c | 263 struct audio_packet *packet; local 274 packet = rdpsnd_queue_current_packet(); 275 out = &packet->s;
|
H A D | rdpsnd_sun.c | 417 struct audio_packet *packet; local 425 packet = rdpsnd_queue_current_packet(); 426 out = &packet->s;
|
H A D | rdpsnd.c | 90 static struct stream packet; variable in typeref:struct:stream 600 unimpl("RDPSND packet type %x\n", opcode); 612 /* New packet */ 613 if (packet.size == 0) 617 error("RDPSND: Split at packet header. Things will go south from here...\n"); 627 packet.p = packet.data; 628 packet.end = packet.data + len; 629 packet 855 struct audio_packet *packet = &packet_queue[queue_hi]; local 894 struct audio_packet *packet; local 911 struct audio_packet *packet; local 946 struct audio_packet *packet; local 974 struct audio_packet *packet; local [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pxe/ |
H A D | pxe_preboot.c | 56 /** A cached DHCP packet */ 67 * hold a DHCP packet; this is a flaw in the PXE spec. 69 BOOTPLAYER_t packet; member in union:pxe_cached_info 72 /** A PXE DHCP packet creator */ 74 /** Create DHCP packet 77 * @v data Buffer for DHCP packet 78 * @v max_len Size of DHCP packet buffer 85 /** PXE DHCP packet creators */ 93 * Name PXENV_GET_CACHED_INFO packet type 96 * @ret name Name of packet typ [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/ |
H A D | res_update.c | 84 * Create a dynamic update packet for each zone and send it to the 116 u_char buf[PACKETSZ], answer[PACKETSZ], packet[2*PACKETSZ]; local 501 n = res_mkupdate(zptr->z_rr, packet, sizeof packet); 507 fprintf(stdout, "res_mkupdate: packet size = %d\n", n); 539 n = res_send(packet, n, answer, sizeof(answer));
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | gdbstub.c | 51 /* Buffer for payload data when parsing a packet. Once the 52 * packet has been received, this buffer is used to hold 303 /* GDB packet parser */ 315 stub->len = 0; /* retry new packet */ 365 char packet [ SIZEOF_PAYLOAD + 4 ]; local 377 while ( !stub.exit_handler && ( len = stub.trans->recv ( packet, sizeof ( packet ) ) ) > 0 ) { 379 gdbstub_parse ( &stub, packet [ i ] );
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ |
H A D | nic.h | 52 unsigned char *packet; member in struct:nic 76 unsigned int size, const void *packet ) { 77 nic.nic_op->transmit ( &nic, dest, type, size, packet );
|
/vbox/src/VBox/Devices/PC/ipxe/src/net/udp/ |
H A D | slam.c | 65 * Int : Packet sequence number within the transfer (if this packet 68 * Raw : Packet data (if this packet contains data). 199 * Add a variable-length value to a SLAM packet 244 * Send SLAM NACK packet 267 /* Construct NACK. We always request only a single packet; 271 * RX checksumming, this would inevitably cause packet drops. 298 /* Transmit packet */ 356 * Read and strip a variable-length value from a SLAM packet 471 * Receive SLAM data packet 481 unsigned long packet; local [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ |
H A D | amd8111e.c | 532 unsigned int type, unsigned int size, const char *packet) 538 /* check packet size */ 540 printf("amd8111e_transmit(): too large packet, drop\n"); 555 memcpy(frame->data, packet, size); 572 /* return true if there's an ethernet packet ready to read */ 573 /* nic->packet should contain data on return */ 606 memcpy(nic->packet, lp->rx_buf[index], nic->packetlen); 531 amd8111e_transmit(struct nic *nic, const char *dst_addr, unsigned int type, unsigned int size, const char *packet) argument
|
H A D | bnx2.c | 2349 unsigned int type, unsigned int size, const char *packet) 2362 /* send the packet to destination */ 2390 /* Copy the packet to the our local buffer */ 2395 memcpy(&frame[frame_idx].data, packet, size); 2551 memcpy(nic->packet, data + bp->rx_offset, len); 2348 bnx2_transmit(struct nic *nic, const char *dst_addr, unsigned int type, unsigned int size, const char *packet) argument
|
H A D | eepro100.h | 128 char packet[RFD_PACKET_LEN]; member in struct:ifec_rfd
|
H A D | dmfe.c | 77 #define TX_MAX_SEND_CNT 0x1 /* Maximum tx packet per time */ 80 #define TX_FREE_DESC_CNT (TX_DESC_CNT - 2) /* Max TX packet count */ 113 #define DMFE_TX_TIMEOUT ((3*HZ)/2) /* tx packet time-out time 1.5 s" */ 114 #define DMFE_TX_KICK (HZ/2) /* tx packet Kick-out time 0.5 s" */ 214 4: TX pause packet */ 365 /* A packet without First/Last flag */ 370 /* A packet with First/Last flag */ 383 memcpy(nic->packet, rxb + (entry * RX_ALLOC_SIZE), 411 const char *packet) /* Packet */ 424 memcpy(ptxb + ETH_HLEN, packet, siz 407 dmfe_transmit(struct nic *nic, const char *dest, unsigned int type, unsigned int size, const char *packet) argument [all...] |
H A D | via-velocity.c | 137 or the packet will be droped when we receive it. (eg: IPVS) 147 VELOCITY_PARAM(txcsum_offload, "Enable transmit packet checksum offload"); 189 0: Wake up if recevied a magic packet. (Default) 191 2: Wake up if recevied an arp packet. 192 4: Wake up if recevied any unicast packet. 488 /* Work out whether or not there's an ethernet packet ready to 510 memcpy(nic->packet, bus_to_virt(rd->pa_low), 528 const char *packet) 545 memcpy(ptxb + ETH_HLEN, packet, size); 556 // printf("Padd that packet\ 525 velocity_transmit(struct nic *nic, const char *dest, unsigned int type, unsigned int size, const char *packet) argument [all...] |
/vbox/src/VBox/Main/webservice/jaxlibs/ |
H A D | jaxws-rt.jar | META-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ... |
/vbox/src/VBox/Additions/x11/x11include/libdrm-2.4.13/ |
H A D | radeon_drm.h | 66 /* New style per-packet identifiers for use in cmd_buffer ioctl with 68 * state bits and the packet size: 174 #define RADEON_CMD_PACKET3 5 /* emit hw packet */ 175 #define RADEON_CMD_PACKET3_CLIP 6 /* emit hw packet wrapped in cliprects */ 189 } packet; member in union:__anon3636 257 unsigned char cmd_type, packet, pad0, pad1; member in struct:__anon3644::__anon3648 260 unsigned char cmd_type, packet; member in struct:__anon3644::__anon3649 642 * - allows updating of tcl packet, vector and scalar state
|