Searched defs:status (Results 76 - 100 of 380) sorted by relevance

1234567891011>>

/frameworks/av/media/libmediaplayerservice/
H A DMetadataRetrieverClient.cpp175 status_t status = p->setDataSource(fd, offset, length); local
176 if (status == NO_ERROR) mRetriever = p;
178 return status;
/frameworks/av/media/libstagefright/
H A DAMRWriter.cpp169 status_t status = mSource->stop(); local
171 (status != OK && status != ERROR_END_OF_STREAM)) {
172 err = status;
H A DStagefrightMediaScanner.cpp101 status_t status = client->addStringTag("duration", buffer); local
102 if (status != OK) {
148 status_t status; local
151 status = mRetriever->setDataSource(NULL /* httpService */, path);
153 status = mRetriever->setDataSource(fd, 0, 0x7ffffffffffffffL);
157 if (status) {
164 status = client.setMimeType(value);
165 if (status) {
196 status = client.addStringTag(kKeyMap[i].tag, value);
197 if (status !
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dinit.cpp34 AVCEnc_Status status; local
553 status = VerifyProfile(encvid, seqParam, picParam);
554 if (status != AVCENC_SUCCESS)
556 return status;
559 status = VerifyLevel(encvid, seqParam, picParam);
560 if (status != AVCENC_SUCCESS)
562 return status;
572 AVCEnc_Status status = AVCENC_SUCCESS; local
626 status = AVCENC_TOOLS_NOT_SUPPORTED;
632 status
706 AVCEnc_Status status; local
[all...]
H A Dvlc_encode.cpp35 AVCEnc_Status status; local
46 status = ue_v(bitstream, codeNum);
48 return status;
53 AVCEnc_Status status; local
61 status = BitstreamWrite1Bit(bitstream, 1 - value);
62 return status;
72 AVCEnc_Status status; local
78 status = BitstreamWrite1Bit(bitstream, 1);
79 return status;
91 status
108 AVCEnc_Status status; local
150 AVCEnc_Status status = AVCENC_SUCCESS; local
204 AVCEnc_Status status = AVCENC_SUCCESS; local
255 AVCEnc_Status status; local
283 AVCEnc_Status status; local
319 AVCEnc_Status status; local
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvop.cpp82 PV_STATUS status; local
101 status = BitstreamShowBits32HC(stream, &startCode);
142 status = BitstreamShowBits32HC(stream, &tmpvar);
146 status = DecodeUserData(stream);
147 if (status != PV_SUCCESS) return PV_FAIL;
156 status = PVSearchNextM4VFrame(stream); /* search 0x00 0x00 0x01 */
157 if (status != PV_SUCCESS) return PV_FAIL; /* breaks the loop */
208 status = PVSearchNextM4VFrame(stream); /* search 0x00 0x00 0x01 */
209 if (status != PV_SUCCESS) return PV_FAIL; /* breaks the loop */
218 status
808 PV_STATUS status = PV_SUCCESS; local
1018 PV_STATUS status = PV_SUCCESS; local
1530 PV_STATUS status; local
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddatapart_encode.cpp38 PV_STATUS status = PV_SUCCESS; local
119 status = EncodeVideoPacketHeader(video, mbnum, video->QP_prev, 0);
130 status = (*CodeMB)(video, &fastDCTfunction, (offset << 5) + QP, ncoefblck);
159 status = BitstreamAppendPacket(currVol->stream, bs1); /* Put Packet to Buffer */
160 /* continue even if status == PV_END_OF_BUF, to get the stats */
189 status = BitstreamAppendPacket(currVol->stream, bs1); /* Put Packet to Buffer */
190 /* continue even if status == PV_END_OF_BUF, to get the stats */
196 return status; /* if status == PV_END_OF_BUF, this frame will be pre-skipped */
213 PV_STATUS status local
[all...]
H A Dvop.cpp42 PV_STATUS status; local
81 status = RC_VopQPSetting(video, rc);
82 if (status == PV_FAIL)
98 return status;
101 status = EncodeVop_NoME(video);
110 return status;
130 PV_STATUS status = PV_SUCCESS; local
135 status = EncodeShortHeader(stream, currVop); /* Encode Short Header */
139 status = EncodeFrameCombinedMode(video);
147 status
199 PV_STATUS status = PV_SUCCESS; local
278 PV_STATUS status; local
311 PV_STATUS status; local
355 PV_STATUS status; local
415 PV_STATUS status; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_dpb.h47 /* enumeration to represent status of buffered image */
62 dpbPictureStatus_e status; member in struct:__anon600
/frameworks/av/media/libstagefright/rtsp/
H A DAAVCAssembler.cpp361 AssemblyStatus status = addNALUnit(source); local
362 if (status == MALFORMED_PACKET) {
365 return status;
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3IOStreamBase.cpp142 camera3_buffer_status_t status,
154 buffer.status = status;
138 handoutBufferLocked(camera3_stream_buffer &buffer, buffer_handle_t *handle, int acquireFence, int releaseFence, camera3_buffer_status_t status, bool output) argument
/frameworks/base/core/java/android/net/http/
H A DEventHandler.java22 * processed. The normal order of callbacks is status(), headers(),
72 * Called after status line has been sucessfully processed.
80 public void status(int major_version, method in interface:EventHandler
/frameworks/base/libs/hwui/
H A DProgram.cpp60 GLint status; local
61 glGetProgramiv(mProgramId, GL_LINK_STATUS, &status);
62 if (status != GL_TRUE) {
141 GLint status; local
142 glGetShaderiv(shader, GL_COMPILE_STATUS, &status);
143 if (status != GL_TRUE) {
/frameworks/base/location/java/android/location/
H A DGpsStatus.java90 * Event sent periodically to report GPS satellite status.
91 * Call {@link #getSatellites()} to retrieve the status for each satellite.
96 * Used for receiving notifications when GPS status has changed.
100 * Called to report changes in the GPS status.
111 * status information.
137 * Used internally within {@link LocationManager} to copy GPS status
139 * Is synchronized to ensure that GPS status updates are atomic.
173 void setStatus(GpsStatus status) { argument
174 mTimeToFirstFix = status.getTimeToFirstFix();
177 mSatellites[i].setStatus(status
[all...]
/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
/frameworks/base/media/java/android/media/audiofx/
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 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);
/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/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
H A DCameraBinderTest.java315 public void onStatusChanged(int status, int cameraId) argument
317 Log.v(TAG, String.format("Camera %d has status changed to 0x%x", cameraId, status));
/frameworks/base/media/tests/audiotests/
H A Dshared_mem_test.cpp104 status_t status = track->initCheck(); local
105 if(status != NO_ERROR) {
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DRoutingControlAction.java134 private static boolean isPowerOnOrTransient(int status) { argument
135 return status == HdmiControlManager.POWER_STATUS_ON
136 || status == HdmiControlManager.POWER_STATUS_TRANSIENT_TO_ON;
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationDelegate.java20 void onSetDisabled(int status); argument
/frameworks/base/telephony/java/com/android/ims/
H A DImsConferenceState.java45 // user > endpoint > status
46 public static final String STATUS = "status";
49 * status-type (String) :
84 * conference-info : SIP status code (integer)
146 * Translates an {@code ImsConferenceState} status type to a telecom connection state.
148 * @param status The status type.
151 public static int getConnectionStateForStatus(String status) { argument
152 if (status.equals(STATUS_PENDING)) {
154 } else if (status
[all...]

Completed in 2612 milliseconds

1234567891011>>