HelenOS sources

nic_frame_t      1188 uspace/drv/nic/e1k/e1k.c 		nic_frame_t *frame = nic_alloc_frame(nic, frame_size);
nic_frame_t       440 uspace/drv/nic/ne2k/dp8390.c static nic_frame_t *ne2k_receive_frame(nic_t *nic_data, uint8_t page,
nic_frame_t       445 uspace/drv/nic/ne2k/dp8390.c 	nic_frame_t *frame = nic_alloc_frame(nic_data, length);
nic_frame_t       528 uspace/drv/nic/ne2k/dp8390.c 				nic_frame_t *frame =
nic_frame_t       481 uspace/drv/nic/rtl8139/driver.c static nic_frame_t *rtl8139_read_frame(nic_t *nic_data,
nic_frame_t       484 uspace/drv/nic/rtl8139/driver.c 	nic_frame_t *frame = nic_alloc_frame(nic_data, frame_size);
nic_frame_t       594 uspace/drv/nic/rtl8139/driver.c 			nic_frame_t *frame = rtl8139_read_frame(nic_data, rx_buffer,
nic_frame_t       984 uspace/drv/nic/rtl8169/driver.c 	nic_frame_t *frame;
nic_frame_t        96 uspace/drv/nic/virtio-net/virtio-net.c 		nic_frame_t *frame = nic_alloc_frame(nic, len - sizeof(*hdr));
nic_frame_t      1666 uspace/lib/ieee80211/src/ieee80211.c 		nic_frame_t *frame = nic_alloc_frame(nic, frame_size);
nic_frame_t       244 uspace/lib/nic/include/nic.h extern void nic_received_frame(nic_t *, nic_frame_t *);
nic_frame_t       256 uspace/lib/nic/include/nic.h extern nic_frame_t *nic_alloc_frame(nic_t *, size_t);
nic_frame_t       258 uspace/lib/nic/include/nic.h extern void nic_frame_list_append(nic_frame_list_t *, nic_frame_t *);
nic_frame_t       259 uspace/lib/nic/include/nic.h extern void nic_release_frame(nic_t *, nic_frame_t *);
nic_frame_t       264 uspace/lib/nic/src/nic_driver.c nic_frame_t *nic_alloc_frame(nic_t *nic_data, size_t size)
nic_frame_t       266 uspace/lib/nic/src/nic_driver.c 	nic_frame_t *frame;
nic_frame_t       272 uspace/lib/nic/src/nic_driver.c 		frame = list_get_instance(first, nic_frame_t, link);
nic_frame_t       276 uspace/lib/nic/src/nic_driver.c 		frame = malloc(sizeof(nic_frame_t));
nic_frame_t       298 uspace/lib/nic/src/nic_driver.c void nic_release_frame(nic_t *nic_data, nic_frame_t *frame)
nic_frame_t       371 uspace/lib/nic/src/nic_driver.c     nic_frame_t *frame)
nic_frame_t       518 uspace/lib/nic/src/nic_driver.c void nic_received_frame(nic_t *nic_data, nic_frame_t *frame)
nic_frame_t       579 uspace/lib/nic/src/nic_driver.c 		nic_frame_t *frame =
nic_frame_t       580 uspace/lib/nic/src/nic_driver.c 		    list_get_instance(list_first(frames), nic_frame_t, link);
HelenOS homepage, sources at GitHub