Home
last modified time | relevance | path

Searched refs:bytes_read (Results 1 – 3 of 3) sorted by relevance

/DragonOS/user/apps/test_dup3/
H A Dmain.c19 int bytes_read = read(new_fd, buffer, sizeof(buffer)); in main() local
20 if (bytes_read < 0) { in main()
25 printf("Data:\n %.*s\n", bytes_read, buffer); in main()
/DragonOS/user/apps/test_mkfifo/
H A Dmain.c18 int bytes_read; in main() local
40 bytes_read = read(pipe_fd, buffer, BUFFER_SIZE); in main()
41 if (bytes_read > 0) in main()
/DragonOS/user/apps/test-blockcache/src/
H A Dmain.rs16 let bytes_read = file.read_exact(&mut buffer)?; in main() localVariable