Searched refs:testFd (Results 1 – 1 of 1) sorted by relevance
/aosp12/frameworks/av/media/libaaudio/examples/write_sine/src/ |
H A D | write_sine.cpp | 56 int testFd = -1; in main() local 115 testFd = open("/data/aaudio_temp.raw", O_CREAT | O_RDWR, S_IRWXU); in main() 116 printf("testFd = %d, pid = %d\n", testFd, getpid()); in main() 226 testFd, fcntl(testFd, F_GETFD)); in main() 229 testFd, fcntl(testFd, F_GETFD)); in main() 230 if (::close(testFd) != 0) { in main() 232 testFd, strerror(errno)); in main() 234 printf("testFd = %d, fcntl after close() returns 0x%08X\n", testFd, fcntl(testFd, F_GETFD)); in main()
|