Searched defs:status (Results 201 - 225 of 461) sorted by last modified time

1234567891011>>

/frameworks/base/media/java/android/media/
H A DRemoteDisplayState.java106 public int status; field in class:RemoteDisplayState.RemoteDisplayInfo
114 status = STATUS_NOT_AVAILABLE;
123 status = other.status;
134 status = in.readInt();
155 dest.writeInt(status);
167 + ", status=" + status
H A DSoundPool.java470 * @param status the status of the load operation (0 = success)
472 public void onLoadComplete(SoundPool soundPool, int sampleId, int status); argument
/frameworks/base/media/java/android/media/audiofx/
H A DAudioEffect.java174 * Internal operation status. Not returned by any method.
705 int status = getParameter(p, v);
707 if (status == 4 || status == 8) {
709 if (status == 8) {
712 status /= 4;
714 status = ERROR;
716 return status;
736 int status = getParameter(p, v);
738 if (status
1000 onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) argument
1266 checkStatus(int status) argument
1284 isError(int status) argument
[all...]
H A DBassBoost.java155 * @param status status of the set parameter operation.
159 void onParameterChange(BassBoost effect, int status, int param, short value); argument
170 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
189 l.onParameterChange(BassBoost.this, status, p, v);
H A DEnvironmentalReverb.java440 * @param status status of the set parameter operation.
444 void onParameterChange(EnvironmentalReverb effect, int status, int param, int value); argument
455 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
476 l.onParameterChange(EnvironmentalReverb.this, status, p, v);
H A DEqualizer.java380 * @param status status of the set parameter operation.
385 void onParameterChange(Equalizer effect, int status, int param1, int param2, int value); argument
396 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
422 l.onParameterChange(Equalizer.this, status, p1, p2, v);
H A DLoudnessEnhancer.java166 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
168 if (status != AudioEffect.SUCCESS) {
H A DPresetReverb.java171 * @param status status of the set parameter operation.
175 void onParameterChange(PresetReverb effect, int status, int param, short value); argument
186 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
205 l.onParameterChange(PresetReverb.this, status, p, v);
H A DVirtualizer.java212 int status = getParameter(paramsConverter.array(), result);
215 + Integer.toHexString(deviceType) + ") returns " + status);
218 if (status >= 0) {
239 } else if (status == AudioEffect.ERROR_BAD_VALUE) {
245 checkStatus(status);
248 Log.e(TAG, "unexpected status code " + status
438 int status = setParameter(PARAM_FORCE_VIRTUALIZATION_MODE, internalDevice);
440 if (status >= 0) {
442 } else if (status
500 onParameterChange(Virtualizer effect, int status, int param, short value) argument
511 onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) argument
[all...]
/frameworks/base/media/java/android/media/midi/
H A DMidiDeviceServer.java67 // for reporting device status
78 * Called to notify when an our device status has changed
80 * @param status the {@link MidiDeviceStatus} for the device
82 public void onDeviceStatusChanged(MidiDeviceServer server, MidiDeviceStatus status); argument
334 MidiDeviceStatus status = new MidiDeviceStatus(mDeviceInfo, mInputPortOpen,
337 mCallback.onDeviceStatusChanged(this, status);
340 mMidiManager.setDeviceStatus(mServer, status);
H A DMidiDeviceService.java59 public void onDeviceStatusChanged(MidiDeviceServer server, MidiDeviceStatus status) {
60 MidiDeviceService.this.onDeviceStatusChanged(status);
126 * @param status the number of the port that was opened
128 public void onDeviceStatusChanged(MidiDeviceStatus status) { argument
H A DMidiManager.java106 public void onDeviceStatusChanged(MidiDeviceStatus status) { argument
108 final MidiDeviceStatus statusF = status;
115 mCallback.onDeviceStatusChanged(status);
141 * Called to notify when the status of a MIDI device has changed
143 * @param status a {@link MidiDeviceStatus} for the changed device
145 public void onDeviceStatusChanged(MidiDeviceStatus status) { argument
/frameworks/base/media/java/android/media/soundtrigger/
H A DSoundTriggerDetector.java187 public abstract void onAvailabilityChanged(int status); argument
310 public void onError(int status) { argument
311 Slog.d(TAG, "onError()" + status);
/frameworks/base/media/java/android/media/tv/
H A DTvInputManager.java75 * status. Once an application find the input to use, it uses {@link TvView} or
151 * {@link TvView.TvInputCallback#onTimeShiftStatusChanged(String, int)}: Unknown status. Also
152 * the status prior to calling {@code notifyTimeShiftStatusChanged}.
173 * currently available. In this status, the application assumes it can pause/resume playback,
477 * This is called when the time shift status is changed.
480 * @param status The current time shift status. Should be one of the followings.
487 public void onTimeShiftStatusChanged(Session session, int status) { argument
661 void postTimeShiftStatusChanged(final int status) { argument
665 mSessionCallback.onTimeShiftStatusChanged(mSession, status);
[all...]
H A DTvInputService.java605 * Informs the application that the time shift status is changed.
607 * <p>Prior to calling this method, the application assumes the status
609 * is important to invoke the method with the status
612 * to notifying the current status change immediately might result in an undesirable
615 * <p>If the status {@link TvInputManager#TIME_SHIFT_STATUS_AVAILABLE} is reported, the
622 * @param status The current time shift status. Should be one of the followings.
629 public void notifyTimeShiftStatusChanged(@TvInputManager.TimeShiftStatus final int status) { argument
637 mSessionCallback.onTimeShiftStatusChanged(status);
H A DTvView.java887 * Callback used to receive various status updates on the {@link TvView}.
1008 * This is called when the time shift status is changed.
1011 * @param status The current time shift status. Should be one of the followings.
1019 String inputId, @TvInputManager.TimeShiftStatus int status) {
1276 public void onTimeShiftStatusChanged(Session session, int status) { argument
1285 mCallback.onTimeShiftStatusChanged(mInputId, status);
1018 onTimeShiftStatusChanged( String inputId, @TvInputManager.TimeShiftStatus int status) argument
/frameworks/base/media/jni/audioeffect/
H A Dandroid_media_AudioEffect.cpp579 lStatus = p->status;
639 lStatus = p->status;
822 status_t status = AudioEffect::queryDefaultPreProcessing((audio_session_t) audioSession, local
825 if (status != NO_ERROR || numEffects == 0) {
H A Dandroid_media_Visualizer.cpp603 jint status = translateError(lpVisualizer->getWaveForm((uint8_t *)nWaveform)); local
606 return status;
621 jint status = translateError(lpVisualizer->getFft((uint8_t *)nFft)); local
625 return status;
636 jint status = translateError( local
639 if (status == VISUALIZER_SUCCESS) {
644 return status;
/frameworks/base/media/jni/soundpool/
H A DSoundPool.cpp575 ALOGE("AMediaCodec_queueInputBuffer returned status %d, short decode",
584 int status = AMediaCodec_dequeueOutputBuffer(codec, &info, 1); local
585 ALOGV("dequeueoutput returned: %d", status);
586 if (status >= 0) {
593 uint8_t *buf = AMediaCodec_getOutputBuffer(codec, status, NULL /* out_size */);
607 codec, status, false /* render */);
610 ALOGE("AMediaCodec_releaseOutputBuffer returned status %d, short decode",
618 } else if (status == AMEDIACODEC_INFO_OUTPUT_BUFFERS_CHANGED) {
620 } else if (status == AMEDIACODEC_INFO_OUTPUT_FORMAT_CHANGED) {
624 } else if (status
657 status_t status; local
710 status_t status = NO_ERROR; local
[all...]
H A DSoundPoolThread.cpp107 status_t status = -1; local
109 status = sample->doLoad();
111 mSoundPool->notify(SoundPoolEvent(SoundPoolEvent::SAMPLE_LOADED, sampleID, status));
/frameworks/base/media/lib/remotedisplay/java/com/android/media/remotedisplay/
H A DRemoteDisplay.java107 return mMutableInfo.status;
110 public void setStatus(int status) { argument
111 if (mMutableInfo.status != status) {
112 mMutableInfo.status = status;
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DAsyncRunner.java39 public int status = RESULT_UNKNOWN; field in class:AsyncRunner.RunnerResult
67 result.status = RESULT_RUNNING;
68 while (!isCancelled() && result.status == RESULT_RUNNING) {
70 result.status = runner[0].determinePostRunState();
71 if (result.status == GraphRunner.RESULT_SLEEPING) {
73 result.status = RESULT_RUNNING;
80 result.status = RESULT_STOPPED;
84 result.status = RESULT_ERROR;
92 result.status = RESULT_ERROR;
111 result.status
[all...]
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DBassBoostTest.java202 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
206 Log.d(TAG,"onParameterChange, status: "+status+" p: "+p+" v: "+v);
H A DEqualizerTest.java337 public void onParameterChange(Equalizer effect, int status, int param1, int param2, int value) { argument
338 Log.d(TAG,"onParameterChange EQ, status: "+status+" p1: "+param1+" p2: "+param2+" v: "+value);
H A DPresetReverbTest.java231 public void onParameterChange(PresetReverb effect, int status, int param, short value) { argument
232 Log.d(TAG,"onParameterChange, status: "+status+" p: "+param+" v: "+value);

Completed in 729 milliseconds

1234567891011>>