Searched refs:my_fildes (Results 1 - 1 of 1) sorted by relevance

/darwin-on-arm/xnu/tools/tests/xnu_quick_test/
H A Dtests.c1539 int my_fildes[2] = {-1, -1}; local
1543 my_err = pipe( &my_fildes[0] );
1550 my_current_offset = lseek( my_fildes[0], 0, SEEK_CUR );
1567 close( my_fildes[1] ); /* close write end of pipe */
1568 my_fildes[1] = -1;
1571 my_count = read( my_fildes[0], &my_buffer[0], sizeof(my_buffer) );
1592 close( my_fildes[0] ); /* close read end of pipe */
1593 my_fildes[0] = -1;
1597 my_count = write( my_fildes[1], &my_pid_string[0], sizeof(my_pid_string) );
1628 if ( my_fildes[
[all...]

Completed in 74 milliseconds