Searched defs:status (Results 401 - 425 of 461) sorted by relevance

<<111213141516171819

/frameworks/base/test-runner/src/android/test/mock/
H A DMockPackageManager.java956 public boolean updateIntentVerificationStatusAsUser(String packageName, int status, int userId) { argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgePackageManager.java603 public boolean updateIntentVerificationStatusAsUser(String packageName, int status, int userId) { argument
/frameworks/base/wifi/java/android/net/wifi/
H A DRttManager.java590 /** status of the request */
591 public int status; field in class:RttManager.RttResult
606 * only valid when status == RTT_STATUS_FAIL_BUSY_TRY_LATER
747 dest.writeInt(result.status);
799 results[i].status = in.readInt();
H A DWifiConfiguration.java194 /** Possible status of a network configuration. */
219 * The current status of this network configuration entry.
220 * Fixme We need remove this field to use only Quality network selection status only
223 public int status; field in class:WifiConfiguration
470 * A summary of the RSSI and Band status for that configuration
536 * Cache the visibility status of this configuration.
549 public void setVisibility(Visibility status) { argument
550 visibility = status;
801 * Maximum Network selection status
806 * Quality network selection status Strin
1113 setNetworkSelectionStatus(int status) argument
[all...]
/frameworks/compile/mclinker/include/mcld/
H A DGeneralOptions.h335 enum status { YES, NO, Unknown }; enum in class:mcld::GeneralOptions::HashStyle
345 status m_ExecStack; // execstack, noexecstack
346 status m_NoUndefined; // defs, --no-undefined
347 status m_MulDefs; // muldefs, --allow-multiple-definition
/frameworks/minikin/libs/minikin/
H A DLayout.cpp555 UErrorCode status = U_ZERO_ERROR; local
562 ubidi_setPara(mBidi, buf, mBufSize, bidiReq, NULL, &status);
563 if (!U_SUCCESS(status)) {
564 ALOGE("error calling ubidi_setPara, status = %d", status);
568 const ssize_t rc = ubidi_countRuns(mBidi, &status);
569 if (!U_SUCCESS(status) || rc < 0) {
570 ALOGW("error counting bidi runs, status = %d", status);
572 if (!U_SUCCESS(status) || r
[all...]
/frameworks/native/cmds/dumpstate/
H A Dutils.cpp592 bool waitpid_with_timeout(pid_t pid, int timeout_seconds, int* status) { argument
624 pid_t child_pid = waitpid(pid, status, WNOHANG);
671 int status = run_command_always(title, DONT_DROP_ROOT, NORMAL_STDOUT, timeout_seconds, args); local
673 return status;
708 int status = run_command_always(title, DROP_ROOT, NORMAL_STDOUT, timeout_seconds, args); local
710 return status;
768 int status; local
769 bool ret = waitpid_with_timeout(pid, timeout_seconds, &status);
796 } else if (status) {
803 if (WIFSIGNALED(status)) {
1196 int status = property_set(key, value); local
1215 int status = property_set(key, value); local
[all...]
/frameworks/native/cmds/installd/
H A Dutils.cpp1175 int status; local
1179 got_pid = waitpid(pid, &status, 0);
1192 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
1195 return status; /* always nonzero */
/frameworks/native/libs/binder/
H A DParcel.cpp819 status_t status; local
821 status = BAD_VALUE;
822 return status;
825 status = parcel->writeInt32(val.size());
826 if (status != OK) {
827 return status;
832 status = BAD_VALUE;
833 return status;
837 return status;
1136 status_t status local
1210 status_t status; local
1449 status_t status = parcel->readInt32(&size); local
1481 status_t status = parcel->readInt32(&size); local
1553 status_t status = readInt32(&size); local
1574 status_t status = readInt32(&size); local
1705 status_t status; local
1813 status_t status = readInt32(&size); local
1866 status_t status = readInt32(&size); local
1934 status_t status = readInt32(&have_parcelable); local
1946 binder::Status status; local
2025 status_t status = readInt32(&blobType); local
[all...]
/frameworks/native/services/inputflinger/
H A DEventHub.cpp446 status_t status = NAME_NOT_FOUND; local
454 status = NO_ERROR;
459 if (status != NO_ERROR && device->keyMap.haveKeyLayout()) {
462 status = NO_ERROR;
466 if (status == NO_ERROR) {
475 if (status != NO_ERROR) {
481 return status;
1261 status_t status = loadVirtualKeyMapLocked(device); local
1262 if (!status) {
1428 status_t status local
[all...]
H A DInputDispatcher.h814 Status status; member in class:android::InputDispatcher::Connection
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/nan/
H A DWifiNanStateManager.java235 public void onPublishFail(short transactionId, int status) { argument
238 msg.arg2 = status;
248 public void onMessageSendFail(short transactionId, int status) { argument
251 msg.arg2 = status;
262 public void onSubscribeFail(short transactionId, int status) { argument
265 msg.arg2 = status;
269 public void onUnknownTransaction(int responseType, short transactionId, int status) { argument
275 msg.arg2 = status;
308 public void onPublishTerminated(int publishId, int status) { argument
311 msg.arg2 = status;
315 onSubscribeTerminated(int subscribeId, int status) argument
928 onPublishFailLocal(short transactionId, int status) argument
948 onPublishTerminatedLocal(int publishId, int status) argument
984 onSubscribeFailLocal(short transactionId, int status) argument
1004 onSubscribeTerminatedLocal(int subscribeId, int status) argument
1039 onMessageSendFailLocal(short transactionId, int status) argument
1060 onUnknownTransactionLocal(int responseType, short transactionId, int status) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pServiceImpl.java1775 P2pStatus status = (P2pStatus) message.obj;
1776 if (status == P2pStatus.NO_COMMON_CHANNEL) {
1790 status = (P2pStatus) message.obj;
1791 if (status == P2pStatus.NO_COMMON_CHANNEL) {
1797 status = (P2pStatus)message.obj;
1798 if (status == P2pStatus.SUCCESS) {
1803 loge("Invitation result " + status);
1804 if (status == P2pStatus.UNKNOWN_P2P_GROUP) {
1816 } else if (status == P2pStatus.INFORMATION_IS_CURRENTLY_UNAVAILABLE) {
1824 } else if (status
2837 updateThisDevice(int status) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSMSDispatcher.java118 /** Handle status report from {@code CdmaInboundSmsHandler}. */
248 * Pass the Message object to subclass to handle. Currently used to pass CDMA status reports
250 * @param o the SmsMessage containing the status report
256 /* TODO: Need to figure out how to keep track of status report routing in a
258 * we will lose this list and any status reports that come in after
261 /** Sent messages awaiting a delivery status report. */
635 // Expecting a status report. Add it to the list.
746 * raw pdu of the status report is in the extended data ("pdu").
827 * to the recipient. The raw pdu of the status report is in the
948 * raw pdu of the status repor
1366 updateSentMessageStatus(Context context, int status) argument
[all...]
H A DTelephonyEventLog.java131 public static final String DATA_KEY_DATA_CALL_STATUS = "status";
295 public void writeImsSetFeatureValue(int feature, int network, int value, int status) { argument
367 statuses[i] = dcs.status;
424 b.putInt(DATA_KEY_DATA_CALL_STATUS, dataCall.status);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataConnection.java440 response.status = mDcTesterFailBringUpAll.getDcFailBringUp().mFailCause.getErrorCode();
711 result.mFailCause = DcFailCause.fromInt(response.status);
713 } else if (response.status != 0) {
715 result.mFailCause = DcFailCause.fromInt(response.status);
1806 protected void networkStatus(int status, String redirectUrl) { argument
1808 log("validation status: " + status + " with redirection URL: " + redirectUrl);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java250 public void writeSmsToSim(int status, String smsc, String pdu, Message response) { argument
254 public void writeSmsToRuim(int status, String pdu, Message response) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java251 public void writeSmsToSim(int status, String smsc, String pdu, Message response) { argument
255 public void writeSmsToRuim(int status, String pdu, Message response) { argument
/frameworks/support/recommendation/src/android/support/app/recommendation/
H A DContentRecommendation.java630 * Sets the availability status value for the content. This status indicates whether the content
634 * @param status The status value for the content. (see the <code>CONTENT_STATUS_*</code> for
635 * the valid status values).
637 public void setStatus(@ContentStatus int status) { argument
638 mStatus = status;
642 * Returns availability status value for the content. This status indicates whether the content
646 * @return The status valu
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp120 // @param[out] status On exit contains the status code to be returned.
124 status_t *status)
130 *status = NOT_ENOUGH_DATA;
137 *status = BAD_VALUE;
152 *status = NOT_ENOUGH_DATA;
162 *status = BAD_VALUE;
174 *status = OK;
221 // @param[out] status On exit contains the status cod
122 unmarshallFilter(const Parcel& p, Metadata::Filter *filter, status_t *status) argument
697 setDataSource_post( const sp<MediaPlayerBase>& p, status_t status) argument
904 status_t status; local
1564 status_t status = mTrack->getTimestamp(&ets); local
[all...]
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp357 snprintf(buffer, SIZE, "Hardware status: %d\n"
586 status_t *status)
727 *status = lStatus;
996 status_t status = checkStreamType(stream); local
997 if (status != NO_ERROR) {
998 return status;
1031 status_t status = checkStreamType(stream); local
1032 if (status != NO_ERROR) {
1033 return status;
1052 status_t status local
573 createTrack( audio_stream_type_t streamType, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t *frameCount, IAudioFlinger::track_flags_t *flags, const sp<IMemory>& sharedBuffer, audio_io_handle_t output, pid_t pid, pid_t tid, audio_session_t *sessionId, int clientUid, status_t *status) argument
1074 status_t status = checkStreamType(stream); local
1459 openRecord( audio_io_handle_t input, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, const String16& opPackageName, size_t *frameCount, IAudioFlinger::track_flags_t *flags, pid_t pid, pid_t tid, int clientUid, audio_session_t *sessionId, size_t *notificationFrames, sp<IMemory>& cblk, sp<IMemory>& buffers, status_t *status) argument
1859 status_t status = outHwDev->openOutputStream( local
2120 status_t status = inHwHal->open_input_stream(inHwHal, *input, devices, &halconfig, local
2588 createEffect( effect_descriptor_t *pDesc, const sp<IEffectClient>& effectClient, int32_t priority, audio_io_handle_t io, audio_session_t sessionId, const String16& opPackageName, status_t *status, int *id, int *enabled) argument
2846 status_t status = NO_ERROR; local
[all...]
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp121 int32_t status; local
124 status = ICameraServiceListener::TORCH_STATUS_NOT_AVAILABLE;
127 status = ICameraServiceListener::TORCH_STATUS_AVAILABLE_OFF;
130 status = ICameraServiceListener::TORCH_STATUS_AVAILABLE_ON;
133 ALOGE("Unknown torch status %d", new_status);
139 status); local
315 ALOGE("%s: State transition to the same status %#x not allowed", __FUNCTION__, newStatus);
320 logDeviceRemoved(id, String8::format("Device status changed from %d to %d", oldStatus,
327 // Set the device status to NOT_PRESENT, clients will no longer be able to connect
328 // to this device until the status change
375 int32_t status; local
1380 int32_t status; local
2698 updateStatus(int32_t status, const String8& cameraId) argument
2702 updateStatus(int32_t status, const String8& cameraId, std::initializer_list<int32_t> rejectSourceStates) argument
2770 setTorchStatusLocked(const String8& cameraId, int32_t status) argument
[all...]
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp161 /** Start up status tracker thread */
165 SET_ERR_L("Unable to start status tracking thread: %s (%d)",
543 const char *status = local
551 lines.appendFormat(" Device status: %s\n", status);
662 SET_ERR_L("Unexpected status: %d", mStatus);
830 SET_ERR_L("Unexpected status: %d", mStatus);
877 SET_ERR_L("%s: Unexpected status: %d", mStatus);
948 SET_ERR_L("Unexpected status: %d", mStatus);
1024 SET_ERR_L("Unexpected status
1365 internalUpdateStatusLocked(Status status) argument
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java1641 public boolean updateIntentVerificationStatusAsUser(String packageName, int status, int userId) { argument
1643 return mPM.updateIntentVerificationStatus(packageName, status, userId);
2408 public void onStatusChanged(int moveId, int status, long estMillis) { argument
2411 args.argi2 = status;
/frameworks/base/core/jni/
H A Dandroid_media_AudioSystem.cpp269 static int check_AudioSystem_Command(status_t status) argument
271 switch (status) {
338 int status = check_AudioSystem_Command(AudioSystem::setParameters(c_keyValuePairs8)); local
339 return (jint) status;
440 int status = check_AudioSystem_Command(AudioSystem::setDeviceConnectionState(static_cast <audio_devices_t>(device), local
445 return (jint) status;
1123 status_t status; local
1135 status = TIMED_OUT;
1140 status = AudioSystem::listAudioPorts(AUDIO_PORT_ROLE_NONE,
1145 if (status !
1194 status_t status; local
1325 status_t status = AudioSystem::releaseAudioPatch(handle); local
1349 status_t status; local
1521 status_t status = AudioSystem::setAudioPortConfig(&nAudioPortConfig); local
1665 status_t status; local
[all...]

Completed in 7332 milliseconds

<<111213141516171819