Searched refs:status (Results 51 - 75 of 995) sorted by relevance

1234567891011>>

/frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/
H A DInstrumentationAutomationSupport.java37 public void sendStatus(int resultCode, Bundle status) { argument
38 mInstrumentation.sendStatus(resultCode, status);
/frameworks/base/core/java/android/hardware/hdmi/
H A DIHdmiDeviceEventListener.aidl23 * the CEC logical device status change event.
31 * status has changed
32 * @param status device status. It should be one of the following values
39 void onStatusChanged(in HdmiDeviceInfo deviceInfo, in int status);
/frameworks/base/core/java/android/os/
H A DIIncidentReportStatusListener.aidl20 * Listener for incident report status
30 void onReportSectionStatus(int section, int status);
/frameworks/base/core/java/android/os/storage/
H A DIObbActionListener.aidl34 * @param status status code as defined in {@link OnObbStateChangeListener}
36 void onObbResult(in String filename, int nonce, int status) = 0;
/frameworks/base/location/java/android/location/
H A DIGnssMeasurementsListener.aidl26 void onStatusChanged(in int status);
H A DIGnssNavigationMessageListener.aidl26 void onStatusChanged(in int status);
/frameworks/base/telephony/java/com/android/ims/internal/
H A DIImsServiceFeatureCallback.aidl27 void imsStatusChanged(int slotId, int feature, int status);
/frameworks/base/wifi/java/android/net/wifi/
H A DWpsResult.java34 public Status status; field in class:WpsResult
39 status = Status.FAILURE;
44 status = s;
50 sbuf.append(" status: ").append(status.toString());
65 status = source.status;
72 dest.writeString(status.name());
81 result.status = Status.valueOf(in.readString());
/frameworks/base/wifi/java/android/net/wifi/hotspot2/
H A DProvisioningCallback.java72 * The status code for Provisioning flow to indicate connecting to OSU AP
78 * The status code for Provisioning flow to indicate connected to OSU AP
84 * The status code for Provisioning flow to indicate connecting to OSU AP
90 * The status code for Provisioning flow to indicate connecting to OSU AP
96 * The status code for Provisioning flow to indicate connecting to OSU AP
102 * Provisioning status for OSU failure
103 * @param status indicates error condition
105 public abstract void onProvisioningFailure(int status); argument
108 * Provisioning status when OSU is in progress
109 * @param status indicate
111 onProvisioningStatus(int status) argument
[all...]
/frameworks/native/cmds/dumpstate/binder/android/os/
H A DIDumpstateListener.aidl31 * @param status values from status_t
35 * @param size size in bytes, may be invalid if status != OK
38 void onSectionComplete(@utf8InCpp String name, int status, int size, int durationMs);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCallForwardInfo.java29 public int status; /*1 = active, 0 = not active */ field in class:CallForwardInfo
38 return "[CallForwardInfo: status=" + (status == 0 ? " not active " : " active ")
/frameworks/av/media/libaudioclient/
H A DPlayerBase.cpp90 status_t status = playerStart(); local
91 if (status == NO_ERROR) {
94 ALOGW("PlayerBase::start() error %d", status);
96 return status;
100 status_t status = playerPause(); local
101 if (status == NO_ERROR) {
104 ALOGW("PlayerBase::pause() error %d", status);
106 return status;
111 status_t status = playerStop(); local
112 if (status
148 status_t status = playerSetVolume(); local
168 status_t status = playerSetVolume(); local
[all...]
/frameworks/base/core/java/android/net/
H A DIpSecTransformResponse.java22 * This class is used to return an IpSecTransform resource Id and and corresponding status from the
31 public final int status; field in class:IpSecTransformResponse
41 out.writeInt(status);
47 throw new IllegalArgumentException("Valid status implies other args must be provided");
49 status = inStatus;
54 status = inStatus;
59 status = in.readInt();
/frameworks/base/libs/hwui/debug/
H A DGlesErrorCheckWrapper.cpp26 GLenum status = GL_NO_ERROR; local
29 while ((status = mBase.glGetError_()) != GL_NO_ERROR) {
30 lastError = status;
31 switch (status) {
49 ALOGE("GL error: 0x%x", status);
/frameworks/native/libs/gui/
H A DStreamSplitter.cpp51 status_t status = splitter->mInput->consumerConnect(splitter, false); local
52 if (status == NO_ERROR) {
56 return status;
87 status_t status = outputQueue->connect(listener, NATIVE_WINDOW_API_CPU, local
89 if (status != NO_ERROR) {
90 ALOGE("addOutput: failed to connect (%d)", status);
91 return status;
130 status_t status = mInput->acquireBuffer(&bufferItem, /* presentWhen */ 0); local
131 LOG_ALWAYS_FATAL_IF(status != NO_ERROR,
132 "acquiring buffer from input failed (%d)", status);
196 status_t status = from->detachNextBuffer(&buffer, &fence); local
[all...]
/frameworks/av/services/audioflinger/
H A DAudioStreamOut.cpp61 status_t status = stream->getRenderPosition(&halPosition); local
62 if (status != NO_ERROR) {
63 return status;
77 return status;
84 status_t status = getRenderPosition(&position64); local
85 if (status == NO_ERROR) {
88 return status;
98 status_t status = stream->getPresentationPosition(&halPosition, timestamp); local
99 if (status != NO_ERROR) {
100 return status;
130 int status = hwDev()->openOutputStream( local
[all...]
H A DAudioHwDevice.cpp53 status_t status = outputStream->open(handle, devices, config, address); local
55 if (status != NO_ERROR) {
64 "channelMask %#x, status %d",
68 status);
78 status = outputStream->open(handle, devices, &originalConfig, address);
79 if (status != NO_ERROR) {
81 status);
93 return status;
/frameworks/native/libs/vr/libvrsensor/
H A Dpose_client.cpp101 Status<int> status = trans.Send<int>(DVR_POSE_LOG_CONTROLLER, &enable, local
103 ALOGE_IF(!status, "Pose LogController() failed because: %s",
104 status.GetErrorMessage().c_str());
105 return ReturnStatusOrError(status);
114 Status<int> status = trans.Send<int>(DVR_POSE_FREEZE, &frozen_state, local
116 ALOGE_IF(!status, "Pose Freeze() failed because: %s\n",
117 status.GetErrorMessage().c_str());
118 return ReturnStatusOrError(status);
124 Status<int> status = local
126 ALOGE_IF(!status, "Pos
135 Status<int> status = local
147 Status<LocalChannelHandle> status = trans.Send<LocalChannelHandle>( local
165 Status<int> status = trans.Send<int>(DVR_POSE_DATA_CAPTURE, request, local
174 Status<int> status = trans.Send<int>(DVR_POSE_TANGO_READER_DESTROY, local
185 Status<int> status = trans.Send<int>(DVR_POSE_SENSORS_ENABLE, &enabled, local
217 Status<LocalChannelHandle> status = trans.Send<LocalChannelHandle>( local
[all...]
/frameworks/av/media/libaaudio/src/binding/
H A DSharedMemoryParcelable.cpp51 status_t status = AAudioConvert_aaudioToAndroidStatus(validate()); local
52 if (status != NO_ERROR) return status;
54 status = parcel->writeInt32(mSizeInBytes);
55 if (status != NO_ERROR) return status;
58 status = parcel->writeUniqueFileDescriptor(mFd);
59 ALOGE_IF(status != NO_ERROR, "SharedMemoryParcelable writeDupFileDescriptor failed : %d",
60 status);
62 return status;
66 status_t status = parcel->readInt32(&mSizeInBytes); local
[all...]
/frameworks/base/tools/validatekeymaps/
H A DMain.cpp101 status_t status = KeyLayoutMap::load(String8(filename), &map); local
102 if (status) {
103 error("Error %d parsing key layout file.\n\n", status);
111 status_t status = KeyCharacterMap::load(String8(filename), local
113 if (status) {
114 error("Error %d parsing key character map file.\n\n", status);
122 status_t status = PropertyMap::load(String8(filename), &map); local
123 if (status) {
124 error("Error %d parsing input device configuration file.\n\n", status);
133 status_t status local
[all...]
/frameworks/native/libs/vr/libdvr/
H A Ddvr_surface.cpp107 auto status = Surface::CreateSurface(surface_attributes); local
108 if (!status) {
110 status.GetErrorMessage().c_str());
111 return -status.error();
114 *out_surface = new DvrSurface{status.take()};
144 auto status = surface->surface->SetAttributes(surface_attributes); local
145 if (!status) {
147 status.GetErrorMessage().c_str());
148 return -status.error();
167 auto status local
236 auto status = client->GetGlobalBuffer(key); local
261 auto status = client->GetDisplayMetrics(); local
[all...]
/frameworks/native/libs/vr/libpdx/
H A Dstatus_tests.cpp1 #include <pdx/status.h>
9 Status<int> status; local
10 EXPECT_FALSE(status.ok());
11 EXPECT_TRUE(status.empty());
12 EXPECT_EQ(0, status.get());
13 EXPECT_EQ(0, status.error());
50 Status<int> status = ErrorStatus(EIO); local
51 EXPECT_EQ(status.GetErrorMessage(), strerror(EIO));
53 status = ErrorStatus(EINVAL);
54 EXPECT_EQ(status
[all...]
/frameworks/av/media/libmedia/
H A DCharacterEncodingDetector.cpp35 UErrorCode status = U_ZERO_ERROR; local
36 mUtf8Conv = ucnv_open("UTF-8", &status);
37 if (U_FAILURE(status)) {
85 UErrorCode status = U_ZERO_ERROR; local
86 UCharsetDetector *csd = ucsdet_open(&status);
118 ucsdet_setText(csd, buf, strlen(buf), &status);
120 const UCharsetMatch** ucma = ucsdet_detectAll(csd, &matches, &status);
147 ucsdet_setText(csd, buf, strlen(buf), &status);
148 ucma = ucsdet_detectAll(csd, &matches, &status);
161 combinedenc = ucsdet_getName(bestCombinedMatch, &status);
303 UErrorCode status = U_ZERO_ERROR; local
[all...]
/frameworks/base/drm/java/android/drm/
H A DDrmOutputStream.java69 final DrmConvertedStatus status = mClient.closeConvertSession(mSessionId);
70 if (status.statusCode == STATUS_OK) {
72 Os.lseek(mFd, status.offset, SEEK_SET);
76 IoBridge.write(mFd, status.convertedData, 0, status.convertedData.length);
79 throw new IOException("Unexpected DRM status: " + status.statusCode);
104 final DrmConvertedStatus status = mClient.convertData(mSessionId, exactBuffer);
105 if (status.statusCode == STATUS_OK) {
106 IoBridge.write(mFd, status
[all...]
/frameworks/base/core/java/android/content/pm/
H A DIPackageMoveObserver.aidl28 void onStatusChanged(int moveId, int status, long estMillis);

Completed in 404 milliseconds

1234567891011>>