OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fpOutput
(Results
1 - 3
of
3
) sorted by null
/external/srec/audio/test/AudioHardwareRecord/src/
AudioHardwareRecord.c
85
FILE *
fpOutput
;
88
fpOutput
= fopen(szFilename, "wb");
89
if (
fpOutput
== NULL)
94
fwrite(recordedSamples, sizeof(typeSample), i,
fpOutput
);
95
fclose(
fpOutput
);
/external/srec/audio/test/AudioHardwareRecordLoop/src/
AudioHardwareRecordLoop.c
120
FILE *
fpOutput
;
125
fpOutput
= fopen(szFilename, "wb");
126
if (
fpOutput
== NULL)
131
fwrite(recordedSamples, sizeof(typeSample), i,
fpOutput
);
132
fclose(
fpOutput
);
/external/srec/audio/test/AudioInRecord/src/
AudioInRecord.c
130
FILE *
fpOutput
;
133
fpOutput
= fopen(szFilename, "wb");
134
if (
fpOutput
== NULL)
139
fwrite(recordedSamples, sizeof(typeSample), nSamples,
fpOutput
);
140
fclose(
fpOutput
);
Completed in 327 milliseconds