MCPcopy Index your code
hub / github.com/RsyncProject/rsync / raw_read_int

Function raw_read_int

io.c:933–941  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

931}
932
933static int32 raw_read_int(void)
934{
935 char *data, buf[4];
936 if (iobuf.in.size - iobuf.in.pos >= 4)
937 data = perform_io(4, PIO_INPUT_AND_CONSUME);
938 else
939 raw_read_buf(data = buf, 4);
940 return IVAL(data, 0);
941}
942
943void noop_io_until_death(void)
944{

Callers 1

read_a_msgFunction · 0.85

Calls 3

perform_ioFunction · 0.85
raw_read_bufFunction · 0.85
IVALFunction · 0.85

Tested by

no test coverage detected