Searched defs:status (Results 251 - 275 of 693) sorted by relevance

<<11121314151617181920>>

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvop.cpp84 PV_STATUS status; local
103 status = BitstreamShowBits32HC(stream, &startCode);
144 status = BitstreamShowBits32HC(stream, &tmpvar);
148 status = DecodeUserData(stream);
149 if (status != PV_SUCCESS) return PV_FAIL;
158 status = PVSearchNextM4VFrame(stream); /* search 0x00 0x00 0x01 */
159 if (status != PV_SUCCESS) return PV_FAIL; /* breaks the loop */
210 status = PVSearchNextM4VFrame(stream); /* search 0x00 0x00 0x01 */
211 if (status != PV_SUCCESS) return PV_FAIL; /* breaks the loop */
220 status
810 PV_STATUS status = PV_SUCCESS; local
1020 PV_STATUS status = PV_SUCCESS; local
1538 PV_STATUS status; 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/opus/dec/
H A DSoftOpus.cpp454 int status = OPUS_INVALID_STATE; local
460 &status);
461 if (!mDecoder || status != OPUS_OK) {
462 ALOGV("opus_multistream_decoder_create failed status=%s",
463 opus_strerror(status));
467 status =
470 if (status != OPUS_OK) {
471 ALOGV("Failed to set OPUS header gain; status=%s",
472 opus_strerror(status));
/frameworks/av/media/libstagefright/flac/dec/
H A DFLACDecoder.cpp114 void FLACDecoder::errorCallback(FLAC__StreamDecoderErrorStatus status) argument
116 ALOGE("errorCallback: status=%d", status);
117 mErrorStatus = status;
300 FLAC__StreamDecoderErrorStatus status,
302 ((FLACDecoder *) client_data)->errorCallback(status); };
/frameworks/av/media/libstagefright/mpeg2ts/
H A DCasManager.cpp138 Status status; local
147 [&status, &sessionId] (Status _status, const hidl_vec<uint8_t>& _sessionId) {
148 status = _status;
151 if (!returnVoid.isOk() || status != Status::OK) {
152 ALOGE("Failed to open session: trans=%s, status=%d",
153 returnVoid.description().c_str(), status);
159 ALOGE("Failed to set private data: trans=%s, status=%d",
178 ALOGE("Failed to init descrambler: : trans=%s, status=%d",
342 ALOGE("Failed to process ECM: trans=%s, status=%d",
/frameworks/av/media/libstagefright/omx/1.0/
H A DWGraphicBufferSource.cpp146 [&fnStatus, &params](Status status, hidl_vec<uint8_t> const& outParams) {
147 fnStatus = toStatusT(status);
221 status_t status; local
223 status = mBase->getStopTimeOffsetUs(&stopTimeOffsetUs);
224 _hidl_cb(toStatus(status), stopTimeOffsetUs);
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4ElementaryAssembler.cpp410 AssemblyStatus status = addPacket(source); local
411 if (status == MALFORMED_PACKET) {
415 return status;
/frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/media/
H A DMediaItemStatus.java25 * Describes the playback status of a media item.
38 * While the item is playing, the playback status may also include progress information
43 * To monitor playback status, the application should supply a {@link PendingIntent} to use as the
44 * {@link MediaControlIntent#EXTRA_ITEM_STATUS_UPDATE_RECEIVER item status update receiver}
46 * the status update receiver will only be invoked for major status changes such as a
49 * The status update receiver will not be invoked for minor progress updates such as
52 * {@link MediaControlIntent#ACTION_GET_STATUS get status request} to poll for changes
168 * Integer extra: HTTP status code.
170 * Specifies the HTTP status cod
332 Builder(MediaItemStatus status) argument
[all...]
/frameworks/av/services/audioflinger/
H A DFastMixer.cpp256 status_t status = mMixer->create( local
260 LOG_ALWAYS_FATAL_IF(status != NO_ERROR,
474 status_t status = mOutputSink->getTimestamp(timestamp); local
475 if (status == NO_ERROR) {
488 status = INVALID_OPERATION;
491 if (status == NO_ERROR) {
H A DPatchPanel.cpp142 status_t status = NO_ERROR; local
226 status = BAD_VALUE;
235 status = INVALID_OPERATION;
241 status = BAD_VALUE;
260 status = INVALID_OPERATION;
269 status = INVALID_OPERATION;
288 status = NO_MEMORY;
325 status = NO_MEMORY;
328 status = createPatchConnections(newPatch, patch);
329 if (status !
432 status_t status = createAudioPatch(&subPatch, &patch->mRecordPatchHandle); local
575 status_t status = NO_ERROR; local
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioInputDescriptor.cpp214 status_t status = mClientInterface->openInput(mProfile->getModuleHandle(), local
225 if (status == NO_ERROR) {
237 return status;
H A DConfigParsingUtils.cpp224 status_t status = NAME_NOT_FOUND; local
232 if (status == NAME_NOT_FOUND || status == NO_ERROR) {
233 status = tmpStatus;
245 if (status == NAME_NOT_FOUND || status == NO_ERROR) {
246 status = tmpStatus;
257 if (status == NAME_NOT_FOUND || status == NO_ERROR) {
258 status
[all...]
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3IOStreamBase.cpp154 camera3_buffer_status_t status,
166 buffer.status = status;
150 handoutBufferLocked(camera3_stream_buffer &buffer, buffer_handle_t *handle, int acquireFence, int releaseFence, camera3_buffer_status_t status, bool output) argument
/frameworks/av/services/oboeservice/
H A DAAudioServiceEndpointMMAP.cpp154 status_t status = MmapStreamInterface::openMmapStream(streamDirection, local
165 if (status != OK) {
166 ALOGE("%s() openMmapStream() returned status %d", __func__, status);
191 status = mMmapStream->createMmapBuffer(minSizeFrames, &mMmapBufferinfo);
192 if (status != OK) {
193 ALOGE("%s() - createMmapBuffer() failed with status %d %s",
194 __func__, status, strerror(-status));
200 __func__, status,
315 status_t status = mMmapStream->start(client, clientHandle); local
336 status_t status = mMmapStream->getMmapPosition(&position); local
[all...]
/frameworks/av/soundtrigger/
H A DSoundTrigger.cpp104 status_t status = service->attach(module, soundTrigger, soundTrigger->mISoundTrigger); local
106 if (status == NO_ERROR && soundTrigger->mISoundTrigger != 0) {
109 ALOGW("Error %d connecting to sound trigger service", status);
/frameworks/base/cmds/incident/
H A Dmain.cpp47 virtual Status onReportSectionStatus(int32_t section, int32_t status);
48 virtual Status onReportServiceStatus(const String16& service, int32_t status);
68 StatusListener::onReportSectionStatus(int32_t section, int32_t status) argument
70 fprintf(stderr, "section %d status %d\n", section, status);
75 StatusListener::onReportServiceStatus(const String16& service, int32_t status) argument
77 fprintf(stderr, "service '%s' status %d\n", String8(service).string(), status);
188 Status status; local
264 status
[all...]
/frameworks/base/cmds/incidentd/src/
H A DReporter.cpp66 // TODO: dedup on exact same args and fd, report the status back to listener!
244 Status status = dropbox->addFile(String16("incident"), mFilename, 0); local
245 ALOGD("Incident report done. dropbox status=%s\n", status.toString8().string());
246 if (!status.isOk()) {
250 // If the status was ok, delete the file. If not, leave it around until the next
318 Status status = dropbox->addFile(String16("incident"), filename.string(), 0); local
319 ALOGD("Incident report done. dropbox status=%s\n", status.toString8().string());
320 if (!status
[all...]
/frameworks/base/cmds/incidentd/tests/
H A DReporter_test.cpp53 virtual Status onReportSectionStatus(int section, int status) { argument
54 switch (status) {
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattServer.java65 public void onServerRegistered(int status, int serverIf) {
67 Log.d(TAG, "onServerRegistered() - status=" + status
86 public void onServerConnectionState(int status, int serverIf,
89 Log.d(TAG, "onServerConnectionState() - status=" + status
93 mCallback.onConnectionStateChange(mAdapter.getRemoteDevice(address), status,
106 public void onServiceAdded(int status, BluetoothGattService service) {
109 + " uuid=" + service.getUuid() + " status=" + status);
637 sendResponse(BluetoothDevice device, int requestId, int status, int offset, byte[] value) argument
[all...]
/frameworks/base/core/java/android/bluetooth/le/
H A DBluetoothLeScanner.java437 public void onScannerRegistered(int status, int scannerId) { argument
438 Log.d(TAG, "onScannerRegistered() - status=" + status
441 if (status == BluetoothGatt.GATT_SUCCESS) {
456 } else if (status == ScanCallback.SCAN_FAILED_SCANNING_TOO_FREQUENTLY) {
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardware.java196 * Returns current status of a hardware geofence monitoring system.
208 * @return Current status of the monitoring type.
516 public void onGeofenceAdd(int geofenceId, int status) { argument
518 if (c != null) c.onGeofenceAdd(geofenceId, status);
521 public void onGeofenceRemove(int geofenceId, int status) { argument
524 c.onGeofenceRemove(geofenceId, status);
529 public void onGeofencePause(int geofenceId, int status) { argument
532 c.onGeofencePause(geofenceId, status);
536 public void onGeofenceResume(int geofenceId, int status) { argument
538 if (c != null) c.onGeofenceResume(geofenceId, status);
[all...]
/frameworks/base/core/java/android/hardware/radio/
H A DTunerCallbackAdapter.java116 public void onError(int status) { argument
117 mHandler.post(() -> mCallback.onError(status));
121 public void onTuneFailed(int status, @Nullable ProgramSelector selector) { argument
122 mHandler.post(() -> mCallback.onTuneFailed(status, selector));
125 switch (status) {
134 Log.i(TAG, "Got an error with no mapping to the legacy API (" + status
/frameworks/base/core/java/android/net/
H A DIpSecTransform.java106 * Checks the result status and throws an appropriate exception if the status is not Status.OK.
108 private void checkResultStatus(int status) argument
111 switch (status) {
123 "Failed to Create a Transform with status code " + status);
135 int status = result.status;
136 checkResultStatus(status);
252 * A callback class to provide status informatio
[all...]
/frameworks/base/core/java/android/print/
H A DPrinterInfo.java46 * major components, printer properties such as name, id, status,
65 /** Printer status: the printer is idle and ready to print. */
68 /** Printer status: the printer is busy printing. */
71 /** Printer status: the printer is not available. */
96 private PrinterInfo(@NonNull PrinterId printerId, @NonNull String name, @Status int status, argument
102 mStatus = status;
189 * Gets the printer status.
191 * @return The status.
243 * Check if status is valid.
245 * @param status Th
249 checkStatus(int status) argument
423 Builder(@onNull PrinterId printerId, @NonNull String name, @Status int status) argument
455 setStatus(@tatus int status) argument
[all...]

Completed in 475 milliseconds

<<11121314151617181920>>