Searched refs:event (Results 1 - 25 of 495) sorted by path

1234567891011>>

/frameworks/av/drm/common/
H A DIDrmServiceListener.cpp27 status_t BpDrmServiceListener::notify(const DrmInfoEvent& event) { argument
31 data.writeInt32(event.getUniqueId());
32 data.writeInt32(event.getType());
33 data.writeString8(event.getMessage());
/frameworks/av/drm/drmserver/
H A DDrmManager.cpp625 void DrmManager::onInfo(const DrmInfoEvent& event) { argument
630 if (uniqueId == event.getUniqueId()) {
632 serviceListener->notify(event);
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp335 status_t DrmManagerClientImpl::notify(const DrmInfoEvent& event) { argument
339 listener->onInfo(event);
/frameworks/av/drm/libdrmframework/include/
H A DDrmManager.h135 void onInfo(const DrmInfoEvent& event);
H A DDrmManagerClientImpl.h404 * Notify the event to the registered listener
406 * @param[in] event The event to be notified
410 status_t notify(const DrmInfoEvent& event);
H A DIDrmServiceListener.h43 virtual status_t notify(const DrmInfoEvent& event) = 0;
55 virtual status_t notify(const DrmInfoEvent& event);
/frameworks/av/drm/libdrmframework/plugins/common/include/
H A DIDrmEngine.h49 virtual void onInfo(const DrmInfoEvent& event) = 0;
/frameworks/av/include/drm/
H A DDrmManagerClient.h55 virtual void onInfo(const DrmInfoEvent& event) = 0;
/frameworks/av/include/media/
H A DAudioEffect.h159 * The EVENT_CONTROL_STATUS_CHANGED event is received when an application loses or
164 * The EVENT_ENABLE_STATUS_CHANGED event is received by all applications not having the
166 * The EVENT_PARAMETER_CHANGED event is received by all applications not having the
168 * The EVENT_ERROR event is received when the media server process dies.
172 * event: type of event notified (see enum AudioEffect::event_type).
174 * info: Pointer to optional parameter according to event type:
183 typedef void (*effect_callback_t)(int32_t event, void* user, void *info);
H A DAudioRecord.h80 * event: type of event notified (see enum AudioRecord::event_type).
82 * info: Pointer to optional parameter according to event type:
91 typedef void (*callback_t)(int event, void* user, void *info);
194 * if event is not AudioSystem::SYNC_EVENT_NONE, the capture start will be delayed until
195 * the specified event occurs on the specified trigger session.
197 status_t start(AudioSystem::sync_event_t event = AudioSystem::SYNC_EVENT_NONE,
212 * a callback with event type EVENT_MARKER is called. Calling setMarkerPosition
230 * a callback with event type EVENT_NEW_POS is called.
H A DAudioSystem.h169 SYNC_EVENT_SAME = -1, // used internally to indicate restart with same event
180 // if the trigger event is not fired.
260 virtual void ioConfigChanged(int event, audio_io_handle_t ioHandle, const void *param2);
H A DAudioTrack.h95 * event: type of event notified (see enum AudioTrack::event_type).
97 * info: Pointer to optional parameter according to event type:
108 typedef void (*callback_t)(int event, void* user, void *info);
183 * EVENT_UNDERRUN event.
313 * event type EVENT_MARKER is called. Calling setMarkerPosition with marker == 0 cancels marker
330 * a callback with event type EVENT_NEW_POS is called.
H A DIAudioFlingerClient.h36 virtual void ioConfigChanged(int event, audio_io_handle_t ioHandle, const void *param2) = 0;
H A DIAudioRecord.h40 virtual status_t start(int /*AudioSystem::sync_event_t*/ event, int triggerSession) = 0;
H A DIOMX.h141 OMX_EVENTTYPE event; member in struct:android::omx_message::__anon23::__anon24
H A DSoundPool.h47 typedef void SoundPoolCallback(SoundPoolEvent event, SoundPool* soundPool, void* user);
144 static void callback(int event, void* user, void *info);
145 void process(int event, void *info, unsigned long toggle);
203 void notify(SoundPoolEvent event);
H A DToneGenerator.h276 static void audioCallback(int event, void* user, void *info);
/frameworks/av/include/media/stagefright/
H A DAudioPlayer.h105 static void AudioCallback(int event, void *user, void *info);
106 void AudioCallback(int event, void *info);
H A DOMXCodec.h318 // Returns true iff a flush was initiated and a completion event is
331 void onEvent(OMX_EVENTTYPE event, OMX_U32 data1, OMX_U32 data2);
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorAudioPlayer.cpp304 void VideoEditorAudioPlayer::AudioCallback(int event, void *user, void *info) { argument
305 static_cast<VideoEditorAudioPlayer *>(user)->AudioCallback(event, info);
309 void VideoEditorAudioPlayer::AudioCallback(int event, void *info) { argument
310 if (event != AudioTrack::EVENT_MORE_DATA) {
H A DVideoEditorAudioPlayer.h122 static void AudioCallback(int event, void *user, void *info);
123 void AudioCallback(int event, void *info);
H A DVideoEditorPlayer.cpp541 int event, void *cookie, void *info) {
543 if (event != AudioTrack::EVENT_MORE_DATA) {
540 CallbackWrapper( int event, void *cookie, void *info) argument
H A DVideoEditorPlayer.h72 int event, void *me, void *info);
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp276 status_t AudioRecord::start(AudioSystem::sync_event_t event, int triggerSession) argument
281 ALOGV("start, sync event %d trigger session %d", event, triggerSession);
297 ret = mAudioRecord->start(event, triggerSession);
309 cblk->bufferTimeoutMs = (event == AudioSystem::SYNC_EVENT_NONE) ? MAX_RUN_TIMEOUT_MS :
520 // callback thread or sync event hasn't changed
773 // callback thread or sync event hasn't changed
H A DAudioSystem.cpp429 void AudioSystem::AudioFlingerClient::ioConfigChanged(int event, audio_io_handle_t ioHandle, argument
431 ALOGV("ioConfigChanged() event %d", event);
439 switch (event) {

Completed in 773 milliseconds

1234567891011>>