Searched defs:status (Results 226 - 250 of 596) sorted by relevance

1234567891011>>

/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/codecs/opus/dec/
H A DSoftOpus.cpp374 int status = OPUS_INVALID_STATE; local
380 &status);
381 if (!mDecoder || status != OPUS_OK) {
382 ALOGV("opus_multistream_decoder_create failed status=%s",
383 opus_strerror(status));
387 status =
390 if (status != OPUS_OK) {
391 ALOGV("Failed to set OPUS header gain; status=%s",
392 opus_strerror(status));
/frameworks/av/media/libstagefright/mpeg2ts/
H A DCasManager.cpp142 Status status = cas->openSession(&sessionId); local
143 if (!status.isOk()) {
145 status.exceptionCode(), status.serviceSpecificErrorCode());
150 if (!status.isOk()) {
152 status.exceptionCode(), status.serviceSpecificErrorCode());
156 status = casService->createDescrambler(descriptor.mSystemID, &descrambler);
157 if (!status.isOk() || descrambler == NULL) {
159 status
320 Status status = mICas->processEcm(mCAPidToSessionIdMap[index], ecm); local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4ElementaryAssembler.cpp410 AssemblyStatus status = addPacket(source); local
411 if (status == MALFORMED_PACKET) {
415 return status;
/frameworks/av/radio/
H A DIRadio.cpp69 status_t status = remote()->transact(SET_CONFIGURATION, data, &reply); local
70 if (status == NO_ERROR) {
71 status = (status_t)reply.readInt32();
73 return status;
83 status_t status = remote()->transact(GET_CONFIGURATION, data, &reply); local
84 if (status == NO_ERROR) {
85 status = (status_t)reply.readInt32();
86 if (status == NO_ERROR) {
90 return status;
98 status_t status local
112 status_t status = remote()->transact(GET_MUTE, data, &reply); local
129 status_t status = remote()->transact(SCAN, data, &reply); local
142 status_t status = remote()->transact(STEP, data, &reply); local
155 status_t status = remote()->transact(TUNE, data, &reply); local
166 status_t status = remote()->transact(CANCEL, data, &reply); local
181 status_t status = remote()->transact(GET_PROGRAM_INFORMATION, data, &reply); local
211 status_t status = remote()->transact(HAS_CONTROL, data, &reply); local
240 status_t status = setConfiguration(&config); local
247 status_t status = getConfiguration(&config); local
257 status_t status = setMute(mute); local
264 status_t status = getMute(&mute); local
275 status_t status = scan(direction, skipSubChannel); local
283 status_t status = step(direction, skipSubChannel); local
291 status_t status = tune(channel, subChannel); local
297 status_t status = cancel(); local
306 status_t status = getProgramInformation(&info); local
323 status_t status = hasControl(&control); local
[all...]
H A DRadio.cpp106 status_t status = service->attach(handle, radio, config, withAudio, radio->mIRadio); local
108 if (status == NO_ERROR && radio->mIRadio != 0) {
111 ALOGW("Error %d connecting to radio service", status);
288 event.status = DEAD_OBJECT;
/frameworks/av/services/audioflinger/
H A DFastMixer.cpp472 status_t status = mOutputSink->getTimestamp(timestamp); local
473 if (status == NO_ERROR) {
486 status = INVALID_OPERATION;
489 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
576 status_t status = NO_ERROR; local
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
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/audiopolicy/service/
H A DAudioPolicyEffects.cpp84 status_t status = NO_ERROR; local
94 return status;
115 status_t status = fx->initCheck(); local
116 if (status != NO_ERROR && status != ALREADY_EXISTS) {
132 return status;
139 status_t status = NO_ERROR; local
144 return status;
155 return status;
162 status_t status local
195 status_t status = NO_ERROR; local
228 status_t status = NO_ERROR; local
264 status_t status = fx->initCheck(); local
286 status_t status = NO_ERROR; local
[all...]
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3IOStreamBase.cpp152 camera3_buffer_status_t status,
164 buffer.status = status;
148 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 DAAudioServiceStreamMMAP.cpp129 status_t status = MmapStreamInterface::openMmapStream(streamDirection, local
136 if (status != OK) {
137 ALOGE("openMmapStream returned status %d", status);
146 status = mMmapStream->createMmapBuffer(minSizeFrames, &mMmapBufferinfo);
147 if (status != OK) {
148 ALOGE("%s: createMmapBuffer() returned status %d, return AAUDIO_ERROR_UNAVAILABLE",
149 __FILE__, status);
152 ALOGD("createMmapBuffer status %d shared_address = %p buffer_size %d burst_size %d",
153 status, mMmapBufferinf
199 status_t status = mMmapStream->start(mMmapClient, &mPortHandle); local
217 status_t status = mMmapStream->stop(mPortHandle); local
226 aaudio_result_t status = mMmapStream->stop(mPortHandle); local
250 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/bmgr/src/com/android/commands/bmgr/
H A DBmgr.java232 public void onResult(String currentPackage, int status) { argument
234 + convertBackupStatusToString(status));
238 public void backupFinished(int status) { argument
240 + convertBackupStatusToString(status));
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattServer.java69 public void onServerRegistered(int status, int serverIf) {
70 if (DBG) Log.d(TAG, "onServerRegistered() - status=" + status
88 public void onServerConnectionState(int status, int serverIf,
90 if (DBG) Log.d(TAG, "onServerConnectionState() - status=" + status
93 mCallback.onConnectionStateChange(mAdapter.getRemoteDevice(address), status,
106 public void onServiceAdded(int status, BluetoothGattService service) {
108 + " uuid=" + service.getUuid() + " status=" + status);
614 sendResponse(BluetoothDevice device, int requestId, int status, int offset, byte[] value) argument
[all...]
/frameworks/base/core/java/android/bluetooth/le/
H A DBluetoothLeScanner.java420 public void onScannerRegistered(int status, int scannerId) { argument
421 Log.d(TAG, "onScannerRegistered() - status=" + status +
424 if (status == BluetoothGatt.GATT_SUCCESS) {
/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 DRadioTuner.java271 * status is one of {@link #ERROR_HARDWARE_FAILURE}, {@link #ERROR_SERVER_DIED},
275 public void onError(int status) {} argument
/frameworks/base/core/java/android/net/
H A DIpSecTransform.java117 private void checkResultStatusAndThrow(int status) argument
120 switch (status) {
132 "Failed to Create a Transform with status code " + status);
143 int status = result.getInt(KEY_STATUS);
144 checkResultStatusAndThrow(status);
/frameworks/base/core/java/android/print/
H A DPrinterInfo.java45 * major components, printer properties such as name, id, status,
61 /** Printer status: the printer is idle and ready to print. */
64 /** Printer status: the printer is busy printing. */
67 /** Printer status: the printer is not available. */
92 private PrinterInfo(@NonNull PrinterId printerId, @NonNull String name, @Status int status, argument
98 mStatus = status;
185 * Gets the printer status.
187 * @return The status.
239 * Check if status is valid.
241 * @param status Th
245 checkStatus(int status) argument
419 Builder(@onNull PrinterId printerId, @NonNull String name, @Status int status) argument
451 setStatus(@tatus int status) argument
[all...]
/frameworks/base/core/java/android/printservice/
H A DPrintJob.java207 * This resets the print status to null. Set the new status by using {@link #setStatus}.
326 * Sets the status of this print job. This should be a human readable, short, and translated
329 * This overrides any previously set status set via {@link #setStatus(CharSequence)},
332 * @param status The new status. If null the status will be empty.
335 public void setStatus(@Nullable CharSequence status) { argument
339 mPrintServiceClient.setStatus(mCachedInfo.getId(), status);
341 Log.e(LOG_TAG, "Error setting status fo
[all...]
/frameworks/base/core/jni/android/graphics/
H A DGraphicBuffer.cpp175 status_t status = buffer->lock(LOCK_CANVAS_USAGE, rect, &bits); local
177 if (status) return JNI_FALSE;
220 status_t status = wrapper->buffer->unlock(); local
221 return status == 0 ? JNI_TRUE : JNI_FALSE;
/frameworks/base/core/jni/
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.cpp116 status_t status = mInputPublisher.publishKeyEvent(publishedSeq, local
120 if (status) {
121 ALOGW("Failed to send key event on channel '%s'. status=%d",
122 getInputChannelName(), status);
123 return status;
137 status_t status = mInputPublisher.publishMotionEvent(publishedSeq, local
146 if (status) {
147 ALOGW("Failed to send motion event sample on channel '%s'. status=%d",
148 getInputChannelName(), status);
149 return status;
176 status_t status = receiveFinishedSignals(env); local
191 status_t status = mInputPublisher.receiveFinishedSignal(&publishedSeq, &handled); local
253 status_t status = sender->initialize(); local
278 status_t status = sender->sendKeyEvent(seq, &event); local
287 status_t status = sender->sendMotionEvent(seq, event); local
[all...]
H A Dandroid_view_InputQueue.cpp223 status_t status = android_view_KeyEvent_toNative(env, eventObj, event); local
224 if (status) {

Completed in 6856 milliseconds

1234567891011>>