Searched defs:status (Results 101 - 125 of 305) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/
H A DAudioSource.cpp61 status_t status = AudioRecord::getMinFrameCount(&minFrameCount, local
65 if (status == OK) {
85 mInitCheck = status;
H A DTimedEventQueue.cpp334 status_t status = mPowerManager->acquireWakeLock(POWERMANAGER_PARTIAL_WAKE_LOCK, local
339 if (status == NO_ERROR) {
/frameworks/av/media/libstagefright/codecs/avc/common/src/
H A Ddpb.cpp235 int ii, status; local
250 status = avcHandle->CBAVC_FrameBind(avcHandle->userData, ii, &(video->currFS->base_dpb));
251 if (status == AVC_FAIL)
343 AVCStatus status; local
407 status = sliding_window_process(avcHandle, video, dpb); /* we may have to do this after adaptive_memory_marking */
411 status = adaptive_memory_marking(avcHandle, video, dpb, sliceHdr);
413 if (status != AVC_SUCCESS)
415 return status;
H A Dreflist.cpp142 AVCStatus status = AVC_SUCCESS; local
149 status = ReorderRefPicList(video, 0);
150 if (status != AVC_SUCCESS)
151 return status;
158 return status;
164 AVCStatus status; local
232 status = ReorderShortTerm(video, picNumLX, &refIdxLX, isL1);
233 if (status != AVC_SUCCESS)
235 return status;
240 status
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Davcenc_api.cpp59 AVCEnc_Status status; local
144 status = SetEncodeParam(avcHandle, encParam, extSPS, extPPS); /* initialized variables to be used in SPS*/
145 if (status != AVCENC_SUCCESS)
147 return status;
282 AVCEnc_Status status; local
322 status = InitFrame(encvid);
324 if (status == AVCENC_SUCCESS)
328 else if (status == AVCENC_NEW_IDR)
351 else if (status == AVCENC_PICTURE_READY) // no buffers returned back to the encoder
357 return status; // retur
373 AVCEnc_Status status; local
[all...]
H A Dresidual.cpp22 AVCEnc_Status status = AVCENC_SUCCESS; local
58 status = BitstreamWriteBits(stream, 32, code);
67 status = BitstreamWriteBits(stream, 16, code);
74 if (status != AVCENC_SUCCESS) /* check only once per line */
75 return status;
91 status = BitstreamWriteBits(stream, 32, code);
100 status = BitstreamWriteBits(stream, 16, code);
108 if (status != AVCENC_SUCCESS) /* check only once per line */
109 return status;
124 status
147 AVCEnc_Status status = AVCENC_SUCCESS; local
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dbitstream.cpp177 PV_STATUS status = PV_SUCCESS; local
182 status = BitstreamFillCache(stream);
185 return status;
195 PV_STATUS status = PV_SUCCESS; local
200 status = BitstreamFillCache(stream);
203 return status;
217 PV_STATUS status = PV_SUCCESS; local
223 status = BitstreamFillCache(stream);
227 return status;
240 PV_STATUS status local
259 PV_STATUS status = PV_SUCCESS; local
273 PV_STATUS status; local
288 PV_STATUS status = PV_SUCCESS; local
357 PV_STATUS status = PV_SUCCESS; local
424 PV_STATUS status = PV_SUCCESS; local
443 PV_STATUS status = PV_SUCCESS; local
462 PV_STATUS status = PV_SUCCESS; local
605 PV_STATUS status = PV_SUCCESS; local
634 PV_STATUS status = PV_SUCCESS; local
684 PV_STATUS status = PV_SUCCESS; local
708 PV_STATUS status = PV_SUCCESS; local
787 PV_STATUS status; local
878 PV_STATUS status; local
952 PV_STATUS status; local
[all...]
H A Dcombined_decode.cpp44 PV_STATUS status; local
155 status = GetMBheader(video, &QP);
157 if (status != PV_SUCCESS)
171 status = GetMBData(video);
172 if (status != PV_SUCCESS)
205 status = BitstreamShowBits32(stream, GOB_RESYNC_MARKER_LENGTH, &tmpvar);
213 status = PV_BitstreamShowBitsByteAlign(stream, GOB_RESYNC_MARKER_LENGTH, &tmpvar);
261 status = PV_BitstreamShowBitsByteAlign(stream, 23, &tmpvar); /* this call is valid for f_code < 8 */
281 while ((status = PV_GobHeader(video)) == PV_FAIL)
283 if ((status
545 PV_STATUS status; local
[all...]
H A Ddatapart_decode.cpp41 PV_STATUS status; local
86 status = DecodeDataPart_I_VideoPacket(video, slice_counter);
90 status = DecodeDataPart_P_VideoPacket(video, slice_counter);
98 while ((status = PV_ReadVideoPacketHeader(video, &mbnum)) == PV_FAIL)
100 if ((status = quickSearchVideoPacketHeader(stream, resync_marker_length)) != PV_SUCCESS)
106 if (status == PV_END_OF_VOP)
140 PV_STATUS status; local
175 status = GetMBheaderDataPart_DQUANT_DC(video, &QP);
198 status = BitstreamShowBits32(stream, DC_MARKER_LENGTH, &tmpvar);
209 status
305 PV_STATUS status; local
518 PV_STATUS status = PV_SUCCESS; local
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dbitstream_io.cpp122 PV_STATUS status; local
138 status = BitstreamSaveWord(stream);
139 if (status != PV_SUCCESS)
141 return status;
170 PV_STATUS status; local
179 status = BitstreamPutBits(stream, topLength, topValue);
181 if (status != PV_SUCCESS)
183 return status;
186 status = BitstreamPutBits(stream, 16, (UInt)(Value & 0xFFFF));
188 return status;
418 PV_STATUS status; local
534 PV_STATUS status = PV_SUCCESS; local
[all...]
H A Dcombined_encode.cpp39 PV_STATUS status = PV_SUCCESS; local
119 status = EncodeGOBHeader(video, slice_counter, QP, 0); //ind_y /* Encode GOB Header */
148 status = EncodeVideoPacketHeader(video, mbnum, video->QP_prev, 0);
159 status = (*CodeMB)(video, &fastDCTfunction, (offset << 5) + QP, ncoefblck);
182 status = BitstreamAppendPacket(currVol->stream, bs1); /* Put Packet to Buffer */
183 /* continue even if status == PV_END_OF_BUF, to get the stats */
192 status = BitstreamAppendEnc(currVol->stream, bs1); /* Initialize to 0 */
193 /* continue even if status == PV_END_OF_BUF, to get the stats */
201 status = BitstreamAppendEnc(currVol->stream, bs1); /* Initialize to 0 */
202 /* continue even if status
264 PV_STATUS status = PV_SUCCESS; local
683 PV_STATUS status = PV_SUCCESS; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_sei.c187 u32 tmp, payloadType, payloadSize, status; local
223 status = DecodeBufferingPeriod(
235 status = DecodePictureTiming(
251 status = DecodePanScanRectangle(
257 status = DecodeFillerPayload(pStrmData, payloadSize);
261 status = DecodeUserDataRegisteredITuTT35(
268 status = DecodeUserDataUnregistered(
275 status = DecodeRecoveryPoint(
281 status = DecodeDecRefPicMarkingRepetition(
289 status
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4ElementaryAssembler.cpp401 AssemblyStatus status = addPacket(source); local
402 if (status == MALFORMED_PACKET) {
405 return status;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattServer.java75 public void onServerRegistered(int status, int serverIf) {
76 if (DBG) Log.d(TAG, "onServerRegistered() - status=" + status
102 public void onServerConnectionState(int status, int serverIf,
104 if (DBG) Log.d(TAG, "onServerConnectionState() - status=" + status
107 mCallback.onConnectionStateChange(mAdapter.getRemoteDevice(address), status,
119 public void onServiceAdded(int status, int srvcType,
123 + "status=" + status);
462 sendResponse(BluetoothDevice device, int requestId, int status, int offset, byte[] value) argument
[all...]
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardware.java169 * Returns current status of a hardware geofence monitoring system.
181 * @return Current status of the monitoring type.
482 public void onGeofenceAdd(int geofenceId, int status) { argument
484 if (c != null) c.onGeofenceAdd(geofenceId, status);
487 public void onGeofenceRemove(int geofenceId, int status) { argument
490 c.onGeofenceRemove(geofenceId, status);
495 public void onGeofencePause(int geofenceId, int status) { argument
498 c.onGeofencePause(geofenceId, status);
502 public void onGeofenceResume(int geofenceId, int status) { argument
504 if (c != null) c.onGeofenceResume(geofenceId, status);
[all...]
/frameworks/base/core/java/android/net/http/
H A DRequest.java262 mEventHandler.status(v.getMajor(), v.getMinor(),
336 // don't throw if we have a non-OK status code
472 * @param response the response, to obtain the status code
476 final int status) {
481 return status >= HttpStatus.SC_OK
482 && status != HttpStatus.SC_NO_CONTENT
483 && status != HttpStatus.SC_NOT_MODIFIED;
475 canResponseHaveBody(final HttpRequest request, final int status) argument
/frameworks/base/core/java/android/print/
H A DPrinterInfo.java27 * major components, printer properties such as name, id, status,
33 /** Printer status: the printer is idle and ready to print. */
36 /** Printer status: the printer is busy printing. */
39 /** Printer status: the printer is not available. */
101 * Gets the printer status.
103 * @return The status.
209 builder.append(", status=").append(mStatus);
227 * @param status The printer status. Must be a valid status
231 Builder(PrinterId printerId, String name, int status) argument
267 setStatus(int status) argument
316 isValidStatus(int status) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_media_AudioSystem.cpp42 static int check_AudioSystem_Command(status_t status) argument
44 switch (status) {
103 int status = check_AudioSystem_Command(AudioSystem::setParameters(0, c_keyValuePairs8)); local
104 return status;
138 int status = check_AudioSystem_Command(AudioSystem::setDeviceConnectionState(static_cast <audio_devices_t>(device), local
142 return status;
H A Dandroid_view_DisplayEventReceiver.cpp86 ALOGW("Failed to initialize display event receiver, status=%d", result);
116 status_t status = mReceiver.requestNextVsync(); local
117 if (status) {
118 ALOGW("Failed to request next vsync, status=%d", status);
119 return status;
182 ALOGW("Failed to get events from display event receiver, status=%d", status_t(n));
220 status_t status = receiver->initialize(); local
221 if (status) {
223 message.appendFormat("Failed to initialize display event receiver. status
242 status_t status = receiver->scheduleVsync(); local
[all...]
H A Dandroid_view_InputEventReceiver.cpp123 status_t status = mInputConsumer.sendFinishedSignal(seq, handled); local
124 if (status) {
125 if (status == WOULD_BLOCK) {
139 ALOGW("Failed to send finished signal on channel '%s'. status=%d",
140 getInputChannelName(), status);
142 return status;
171 status_t status = consumeEvents(env, false /*consumeBatches*/, -1, NULL); local
173 return status == OK || status == NO_MEMORY ? 1 : 0;
179 status_t status local
236 status_t status = mInputConsumer.consume(&mInputEventFactory, local
350 status_t status = receiver->initialize(); local
373 status_t status = receiver->finishInputEvent(seq, handled); local
386 status_t status = receiver->consumeEvents(env, true /*consumeBatches*/, frameTimeNanos, local
[all...]
H A Dandroid_view_InputEventSender.cpp115 status_t status = mInputPublisher.publishKeyEvent(publishedSeq, local
119 if (status) {
120 ALOGW("Failed to send key event on channel '%s'. status=%d",
121 getInputChannelName(), status);
122 return status;
136 status_t status = mInputPublisher.publishMotionEvent(publishedSeq, local
144 if (status) {
145 ALOGW("Failed to send motion event sample on channel '%s'. status=%d",
146 getInputChannelName(), status);
147 return status;
173 status_t status = receiveFinishedSignals(env); local
188 status_t status = mInputPublisher.receiveFinishedSignal(&publishedSeq, &handled); local
250 status_t status = sender->initialize(); local
275 status_t status = sender->sendKeyEvent(seq, &event); local
284 status_t status = sender->sendMotionEvent(seq, event); local
[all...]
H A Dandroid_view_InputQueue.cpp221 status_t status = android_view_KeyEvent_toNative(env, eventObj, event); local
222 if (status) {
H A Dandroid_view_TextureView.cpp150 int32_t status = native_window_lock(window.get(), &buffer, &rect); local
151 if (status) return false;
/frameworks/base/libs/androidfw/
H A DCursorWindow.cpp125 status_t status = parcel->writeString8(mName); local
126 if (!status) {
127 status = parcel->writeDupFileDescriptor(mAshmemFd);
129 return status;
/frameworks/base/media/java/android/media/audiofx/
H A DEqualizer.java387 * @param status status of the set parameter operation.
392 void onParameterChange(Equalizer effect, int status, int param1, int param2, int value); argument
403 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
429 l.onParameterChange(Equalizer.this, status, p1, p2, v);

Completed in 477 milliseconds

1234567891011>>