OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:hfile_output
(Results
1 - 1
of
1
) sorted by null
/system/wlan/ti/sta_dk_4_0_4_32/CUDK/IPC/Linux/
proc_main.c
62
int
hfile_output
= -1;
local
79
hfile_output
= open((char *) argv[1], O_WRONLY );
80
if(
hfile_output
== -1 )
85
if( dup2( 1,
hfile_output
) == -1 )
87
fprintf(stderr, "dup2(1,
hfile_output
) failed: %d(%s)\n", errno, strerror(errno) );
89
if( dup2( 2,
hfile_output
) == -1 )
91
fprintf(stderr, "dup2(2,
hfile_output
) failed: %d(%s)\n", errno, strerror(errno) );
127
if(
hfile_output
> 0 )
128
close(
hfile_output
);
Completed in 662 milliseconds