OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mOutFile
(Results
1 - 3
of
3
) sorted by null
/cts/tests/tests/media/src/android/media/cts/
MediaRecorderTest.java
48
private File
mOutFile
;
68
mOutFile
= new File(OUTPUT_PATH);
87
if (
mOutFile
!= null &&
mOutFile
.exists()) {
88
mOutFile
.delete();
179
assertTrue(
mOutFile
.exists());
183
assertTrue(
mOutFile
.exists());
184
assertTrue(
mOutFile
.length() > 0);
185
assertTrue(
mOutFile
.delete());
445
assertTrue(
mOutFile
.exists())
[
all
...]
/frameworks/base/libs/audioflinger/
AudioDumpInterface.cpp
238
mBufferSize(1024), mFinalStream(finalStream),
mOutFile
(0), mFileCount(0)
260
if(!
mOutFile
) {
264
mOutFile
= fopen(name, "wb");
265
LOGV("Opening dump file %s, fh %p", name,
mOutFile
);
268
if (
mOutFile
) {
269
fwrite(buffer, bytes, 1,
mOutFile
);
276
LOGV("AudioStreamOutDump standby(),
mOutFile
%p, mFinalStream %p",
mOutFile
, mFinalStream);
333
if (
mOutFile
== 0) {
348
if (
mOutFile
== 0)
[
all
...]
AudioDumpInterface.h
72
FILE *
mOutFile
; // output file
Completed in 537 milliseconds