Searched defs:status (Results 451 - 475 of 693) sorted by relevance

<<11121314151617181920>>

/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DSerializer.cpp95 status_t status = Trait::deserialize(doc, child, element, serializingContext); local
96 if (status != NO_ERROR) {
97 return status;
/frameworks/av/services/soundtrigger/
H A DSoundTriggerHwService.cpp592 status_t status = AudioSystem::acquireSoundTriggerSession(&session, &ioHandle, &device); local
593 if (status != NO_ERROR) {
594 return status;
603 status = INVALID_OPERATION;
607 status = mHalInterface->loadSoundModel(sound_model,
610 if (status != NO_ERROR) {
619 if (status != NO_ERROR) {
623 return status;
629 status_t status; local
647 status
696 status_t status = mHalInterface->startRecognition(handle, config, local
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHeadset.java283 * Intent used to broadcast the headset's indicator status
985 public void clccResponse(int index, int direction, int status, int mode, boolean mpty, argument
990 service.clccResponse(index, direction, status, mode, mpty, number, type);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java404 AcquiredConnectionStatus status = mAcquiredConnections.remove(connection);
405 if (status == null) {
414 if (recycleConnectionLocked(connection, status)) {
422 if (recycleConnectionLocked(connection, status)) {
433 AcquiredConnectionStatus status) {
434 if (status == AcquiredConnectionStatus.RECONFIGURE) {
440 status = AcquiredConnectionStatus.DISCARD;
443 if (status == AcquiredConnectionStatus.DISCARD) {
655 private void markAcquiredConnectionsLocked(AcquiredConnectionStatus status) { argument
662 if (status !
432 recycleConnectionLocked(SQLiteConnection connection, AcquiredConnectionStatus status) argument
[all...]
/frameworks/base/core/java/android/hardware/soundtrigger/
H A DSoundTrigger.java605 * Recognition status e.g RECOGNITION_STATUS_SUCCESS
609 public final int status; field in class:SoundTrigger.RecognitionEvent
665 public RecognitionEvent(int status, int soundModelHandle, boolean captureAvailable, argument
668 this.status = status;
732 int status = in.readInt();
751 return new RecognitionEvent(status, soundModelHandle, captureAvailable, captureSession,
762 dest.writeInt(status);
796 result = prime * result + status;
821 if (status !
1119 KeyphraseRecognitionEvent(int status, int soundModelHandle, boolean captureAvailable, int captureSession, int captureDelayMs, int capturePreambleMs, boolean triggerInData, AudioFormat captureFormat, byte[] data, KeyphraseRecognitionExtra[] keyphraseExtras) argument
1239 GenericRecognitionEvent(int status, int soundModelHandle, boolean captureAvailable, int captureSession, int captureDelayMs, int capturePreambleMs, boolean triggerInData, AudioFormat captureFormat, byte[] data) argument
1302 public final int status; field in class:SoundTrigger.SoundModelEvent
1308 SoundModelEvent(int status, int soundModelHandle, byte[] data) argument
[all...]
/frameworks/base/core/java/android/os/
H A DParcelFileDescriptor.java72 * Optional socket used to communicate close events, status at close, and
84 * Maximum {@link #mStatusBuf} size; longer status messages will be
267 Status status = null;
270 status = readCommStatus(fd, buf);
272 status = new Status(Status.DEAD);
274 if (status != null) {
277 listener.onClose(status.asIOException());
510 // Use SOCK_SEQPACKET so that we have a guarantee that the status
737 private void closeWithStatus(int status, String msg) { argument
744 writeCommStatusAndClose(status, ms
764 writeCommStatusAndClose(int status, String msg) argument
1106 public final int status; field in class:ParcelFileDescriptor.Status
1109 Status(int status) argument
1113 Status(int status, String msg) argument
[all...]
/frameworks/base/core/java/android/print/
H A DPrintJobInfo.java192 /** A short string describing the status of this job. */
195 /** A string resource describing the status of this job. */
387 * Sets the status of the print job.
389 * @param status the status of the job, can be null
393 public void setStatus(@Nullable CharSequence status) { argument
397 mStatus = status;
401 * Sets the status of the print job.
403 * @param status The new status a
408 setStatus(@tringRes int status, @NonNull CharSequence appPackageName) argument
830 setStatus(@ullable CharSequence status) argument
[all...]
/frameworks/base/core/java/android/service/voice/
H A DAlwaysOnHotwordDetector.java295 public abstract void onAvailabilityChanged(int status); argument
635 public void onError(int status) { argument
636 Slog.i(TAG, "onError: " + status);
715 * @return The initial availability without checking the enrollment status.
/frameworks/base/core/jni/
H A Dandroid_os_HwParcel.cpp366 Status status;
369 status = Status::ok();
372 status = Status::fromStatusT(UNKNOWN_ERROR);
381 status_t err = ::android::hardware::writeToParcel(status, parcel);
391 Status status; local
392 status_t err = ::android::hardware::readFromParcel(&status, *parcel);
395 if (!status.isOk()) {
818 status_t status = parcel->readBuffer(expectedSize, &handle, &ptr); local
820 if (status != OK) {
837 status_t status local
[all...]
H A Dcom_android_internal_content_NativeLibraryHelper.cpp455 int status = NO_NATIVE_LIBRARIES; local
460 if (status == NO_NATIVE_LIBRARIES) {
461 status = INSTALL_FAILED_NO_MATCHING_ABIS;
474 if (((i < status) && (status >= 0)) || (status < 0) ) {
475 status = i;
485 return status;
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerBaseTest.java150 int status = cursor.getInt(cursor.getColumnIndex(
152 Log.i(LOG_TAG, "Download status is: " + status);
154 fail("No status found for completed download!");
253 * @param status The HTTP status code to return for this response
256 protected MockResponse buildResponse(int status) { argument
257 MockResponse response = new MockResponse().setResponseCode(status);
265 * @param status The HTTP status cod
269 buildResponse(int status, byte[] body) argument
280 buildResponse(int status, File bodyFile) argument
[all...]
/frameworks/base/media/java/android/media/
H A DSoundPool.java485 * @param status the status of the load operation (0 = success)
487 public void onLoadComplete(SoundPool soundPool, int sampleId, int status); argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp748 status_t status = mr->getActiveMicrophones(&activeMicrophones); local
749 if (status != NO_ERROR) {
750 ALOGE_IF(status != NO_ERROR, "MediaRecorder::getActiveMicrophones error %d", status);
751 jStatus = nativeToJavaStatus(status);
/frameworks/base/media/jni/audioeffect/
H A Dandroid_media_AudioEffect.cpp580 lStatus = p->status;
640 lStatus = p->status;
823 status_t status = AudioEffect::queryDefaultPreProcessing((audio_session_t) audioSession, local
826 if (status != NO_ERROR || numEffects == 0) {
H A Dandroid_media_Visualizer.cpp604 jint status = translateError(lpVisualizer->getWaveForm((uint8_t *)nWaveform)); local
607 return status;
622 jint status = translateError(lpVisualizer->getFft((uint8_t *)nFft)); local
626 return status;
637 jint status = translateError( local
640 if (status == VISUALIZER_SUCCESS) {
645 return status;
/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
H A DScoAudioTest.java511 public void onInit(int status) { argument
512 // status can be either TextToSpeech.SUCCESS or TextToSpeech.ERROR.
514 if (status != TextToSpeech.SUCCESS) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DKeyguardIndicationController.java497 public void onRefreshBatteryInfo(KeyguardUpdateMonitor.BatteryStatus status) { argument
498 boolean isChargingOrFull = status.status == BatteryManager.BATTERY_STATUS_CHARGING
499 || status.status == BatteryManager.BATTERY_STATUS_FULL;
501 mPowerPluggedInWired = status.isPluggedInWired() && isChargingOrFull;
502 mPowerPluggedIn = status.isPluggedIn() && isChargingOrFull;
503 mPowerCharged = status.isCharged();
504 mChargingWattage = status.maxChargingWattage;
505 mChargingSpeed = status
[all...]
/frameworks/base/services/core/java/com/android/server/job/
H A DJobStore.java206 Slog.d(TAG, "Added job status to store: " + jobStatus);
568 private static boolean isSyncJob(JobStatus status) { argument
570 .equals(status.getServiceComponent().getClassName());
/frameworks/base/services/midi/java/com/android/server/midi/
H A DMidiService.java220 public void deviceStatusChanged(Device device, MidiDeviceStatus status) { argument
226 listener.onDeviceStatusChanged(status);
370 public void setDeviceStatus(MidiDeviceStatus status) { argument
371 mDeviceStatus = status;
615 // Inform listener of the status of all known devices.
622 MidiDeviceStatus status = device.getDeviceStatus();
623 if (status != null) {
624 listener.onDeviceStatusChanged(status);
761 public void setDeviceStatus(IMidiDeviceServer server, MidiDeviceStatus status) { argument
768 device.setDeviceStatus(status);
773 notifyDeviceStatusChanged(Device device, MidiDeviceStatus status) argument
[all...]
/frameworks/base/services/print/java/com/android/server/print/
H A DRemotePrintService.java770 public void setStatus(@NonNull PrintJobId printJobId, @Nullable CharSequence status) { argument
775 service.mSpooler.setStatus(printJobId, status);
783 public void setStatusRes(@NonNull PrintJobId printJobId, @StringRes int status, argument
789 service.mSpooler.setStatus(printJobId, status, appPackageName);
H A DRemotePrintSpooler.java306 * Set status of a print job.
309 * @param status The new status
311 public final void setStatus(@NonNull PrintJobId printJobId, @Nullable CharSequence status) { argument
318 getRemoteInstanceLazy().setStatus(printJobId, status);
320 Slog.e(LOG_TAG, "Error setting status.", e);
333 * Set status of a print job.
336 * @param status The new status as a string resource
339 public final void setStatus(@NonNull PrintJobId printJobId, @StringRes int status, argument
774 setPrintJobState(IPrintSpooler target, PrintJobId printJobId, int status, String error) argument
[all...]
/frameworks/base/services/usb/java/com/android/server/usb/descriptors/
H A DUsbDescriptor.java156 public void setStatus(int status) { argument
157 mStatus = status;
241 int status = getStatus();
242 switch (status) {
249 canvas.writeParagraph("status: " + getStatusString()
/frameworks/base/telecomm/java/android/telecom/
H A DInCallService.java570 * @param handler A handler which commands and status changes will be delivered to.
727 * @param status Status of the session modify request. Valid values are
736 public abstract void onSessionModifyResponseReceived(int status, argument
/frameworks/base/telephony/java/android/telephony/ims/compat/stub/
H A DImsCallSessionImplBase.java361 * @param status true if the the request was accepted or false of the request is defined.
364 public void sendRttModifyResponse(boolean status) { argument
585 public void callSessionRttModifyResponseReceived(int status) throws RemoteException { argument
586 mNewListener.callSessionRttModifyResponseReceived(status);
/frameworks/base/tests/CoreTests/android/core/
H A DTestEventHandler.java66 /* Expected status codes */
150 * Implements the EventHandler status method called when a server status
154 * @param code The status code
157 public void status(int major_version, int minor_version, method in class:TestEventHandler
160 Log.v(LOGTAG, "TestEventHandler:status() major: " + major_version +

Completed in 929 milliseconds

<<11121314151617181920>>