Searched defs:mAudioRecord (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/speech/srec/
H A DMicrophoneInputStream.java37 private long mAudioRecord = 0; field in class:MicrophoneInputStream
47 mAudioRecord = AudioRecordNew(sampleRate, fifoDepth);
48 if (mAudioRecord == 0) throw new IOException("AudioRecord constructor failed - busy?");
49 int status = AudioRecordStart(mAudioRecord);
58 if (mAudioRecord == 0) throw new IllegalStateException("not open");
59 int rtn = AudioRecordRead(mAudioRecord, mOneByte, 0, 1);
65 if (mAudioRecord == 0) throw new IllegalStateException("not open");
66 return AudioRecordRead(mAudioRecord, b, 0, b.length);
71 if (mAudioRecord == 0) throw new IllegalStateException("not open");
73 return AudioRecordRead(mAudioRecord,
[all...]
/frameworks/av/include/media/
H A DAudioRecord.h503 sp<IAudioRecord> mAudioRecord; member in class:android::AudioRecord
525 DeathNotifier(AudioRecord* audioRecord) : mAudioRecord(audioRecord) { }
529 const wp<AudioRecord> mAudioRecord; member in class:android::AudioRecord::DeathNotifier
/frameworks/wilhelm/src/
H A Dclasses.h155 android::sp<android::AudioRecord> mAudioRecord; member in struct:CAudioRecorder_struct
/frameworks/base/media/java/android/media/
H A DAudioRecord.java863 private final AudioRecord mAudioRecord; field in class:AudioRecord.NativeEventHandler
867 mAudioRecord = recorder;
874 listener = mAudioRecord.mPositionListener;
880 listener.onMarkerReached(mAudioRecord);
885 listener.onPeriodicNotification(mAudioRecord);

Completed in 471 milliseconds