Searched defs:status (Results 76 - 100 of 693) sorted by relevance

1234567891011>>

/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/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pUpnpServiceResponse.java75 * @param status status code
80 protected WifiP2pUpnpServiceResponse(int status, argument
83 status, transId, dev, data);
123 sbuf.append(" status:").append(Status.toString(mStatus));
139 * @param status status code.
146 static WifiP2pUpnpServiceResponse newInstance(int status, argument
148 if (status != WifiP2pServiceResponse.Status.SUCCESS) {
149 return new WifiP2pUpnpServiceResponse(status, transI
[all...]
/frameworks/minikin/app/
H A DHyphTool.cpp16 int status = stat(fn, &statbuf); local
17 if (status < 0) {
/frameworks/ml/nn/runtime/test/benchmark/libnnbenchmark/
H A Drun_tflite.cpp83 auto status = mTfliteInterpreter->Invoke(); local
84 if (status != kTfLiteOk) {
85 __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, "Failed to invoke: %d!", (int)status);
/frameworks/native/cmds/surfacereplayer/replayer/
H A DBufferQueueScheduler.cpp84 status_t status = s->lock(&outBuffer, nullptr); local
86 if (status != NO_ERROR) {
87 ALOGE("fillSurface: failed to lock buffer, (%d)", status);
106 status = s->unlockAndPost();
108 ALOGE_IF(status != NO_ERROR, "fillSurface: failed to unlock and post buffer, (%d)", status);
/frameworks/native/libs/vr/libdisplay/include/private/dvr/
H A Ddisplay_client.h23 pdx::Status<std::unique_ptr<Surface>> status; local
25 status.SetValue(std::move(surface));
27 status.SetError(error);
28 return status;
84 // Temporary query for current VR status. Will be removed later.
/frameworks/native/libs/vr/libpdx_default_transport/private/pdx/default_transport/
H A Dservice_utility.h9 #include <pdx/status.h>
70 auto status = utility->ReloadSystemProperties(); local
71 if (!status) {
75 fpath, status.GetErrorMessage().c_str());
76 return kIgnoreErrors ? 0 : -status.error();
/frameworks/native/libs/vr/libpdx_uds/
H A Dipc_helper_tests.cpp126 auto status = SendAll(&sender_, kSocket, IntToConstPtr(kPtr), 100); local
127 EXPECT_TRUE(status);
140 auto status = SendAll(&sender_, kSocket, IntToConstPtr(kPtr), 100); local
141 EXPECT_TRUE(status);
149 auto status = SendAll(&sender_, kSocket, IntToConstPtr(kPtr), 100); local
150 EXPECT_TRUE(status);
157 auto status = SendAll(&sender_, kSocket, IntToConstPtr(kPtr), 100); local
158 ASSERT_FALSE(status);
159 EXPECT_EQ(EIO, status.error());
169 auto status local
180 auto status = RecvAll(&receiver_, kSocket, IntToPtr(kPtr), 100); local
192 auto status = RecvAll(&receiver_, kSocket, IntToPtr(kPtr), 100); local
201 auto status = RecvAll(&receiver_, kSocket, IntToPtr(kPtr), 100); local
209 auto status = RecvAll(&receiver_, kSocket, IntToPtr(kPtr), 100); local
220 auto status = RecvAll(&receiver_, kSocket, IntToPtr(kPtr), 100); local
230 auto status = SendMsgAll(&sender_, kSocket, &msg_); local
245 auto status = SendMsgAll(&sender_, kSocket, &msg_); local
254 auto status = SendMsgAll(&sender_, kSocket, &msg_); local
270 auto status = SendMsgAll(&sender_, kSocket, &msg_); local
278 auto status = SendMsgAll(&sender_, kSocket, &msg_); local
288 auto status = SendMsgAll(&sender_, kSocket, &msg_); local
299 auto status = RecvMsgAll(&receiver_, kSocket, &msg_); local
315 auto status = RecvMsgAll(&receiver_, kSocket, &msg_); local
325 auto status = RecvMsgAll(&receiver_, kSocket, &msg_); local
341 auto status = RecvMsgAll(&receiver_, kSocket, &msg_); local
349 auto status = RecvMsgAll(&receiver_, kSocket, &msg_); local
360 auto status = RecvMsgAll(&receiver_, kSocket, &msg_); local
[all...]
/frameworks/native/libs/vr/libperformance/
H A Dperformance_client.cpp88 auto status = InvokeRemoteMethodInPlace<PerformanceRPC::GetCpuPartition>( local
90 return status ? 0 : -status.error();
102 auto status = InvokeRemoteMethodInPlace<PerformanceRPC::GetCpuPartition>( local
104 if (!status)
105 return -status.error();
/frameworks/native/services/utils/
H A DPriorityDumper.cpp41 status_t status; local
42 status = dumpCritical(fd, args, asProto);
43 if (status != OK) return status;
44 status = dumpHigh(fd, args, asProto);
45 if (status != OK) return status;
46 status = dumpNormal(fd, args, asProto);
47 if (status != OK) return status;
52 status_t status; local
[all...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
H A DProtocolPortTupleTest.java43 * @param status Status value
46 private ByteBuffer getTestBuffer(int protocol, int port, int status) { argument
51 buffer.put((byte) status);
68 * the complete tuple data (missing status field).
/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
H A DPhotoBitmapLoaderInterface.java20 public int status; field in class:PhotoBitmapLoaderInterface.BitmapResult
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DNotifyRespInd.java31 * @param status the status value
38 int status) throws InvalidHeaderValueException {
43 setStatus(status);
36 NotifyRespInd(int mmsVersion, byte[] transactionId, int status) argument
/frameworks/rs/cpp/
H A DrsCppUtils.cpp86 int status = 0; local
87 pid_t w = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
94 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
98 ALOGE("Child process \"%s\" terminated with status %d", exe, status);
/frameworks/rs/
H A DrsCppUtils.cpp86 int status = 0; local
87 pid_t w = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
94 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
98 ALOGE("Child process \"%s\" terminated with status %d", exe, status);
/frameworks/av/camera/include/camera/
H A DCameraBase.h69 * Basic status information about a camera device - its name and its current
79 * Its current status, one of the ICameraService::STATUS_* fields
81 int32_t status; member in struct:android::hardware::CameraStatus
86 CameraStatus(String8 id, int32_t s) : cameraId(id), status(s) {}
87 CameraStatus() : status(ICameraServiceListener::STATUS_PRESENT) {}
/frameworks/av/include/camera/
H A DCameraBase.h69 * Basic status information about a camera device - its name and its current
79 * Its current status, one of the ICameraService::STATUS_* fields
81 int32_t status; member in struct:android::hardware::CameraStatus
86 CameraStatus(String8 id, int32_t s) : cameraId(id), status(s) {}
87 CameraStatus() : status(ICameraServiceListener::STATUS_PRESENT) {}
/frameworks/av/media/libaaudio/src/binding/
H A DAudioEndpointParcelable.cpp67 status_t status = AAudioConvert_aaudioToAndroidStatus(validate()); local
68 if (status != NO_ERROR) goto error;
70 status = parcel->writeInt32(mNumSharedMemories);
71 if (status != NO_ERROR) goto error;
74 status = mSharedMemories[i].writeToParcel(parcel);
75 if (status != NO_ERROR) goto error;
77 status = mUpMessageQueueParcelable.writeToParcel(parcel);
78 if (status != NO_ERROR) goto error;
79 status = mDownMessageQueueParcelable.writeToParcel(parcel);
80 if (status !
94 status_t status = parcel->readInt32(&mNumSharedMemories); local
[all...]
H A DIAAudioService.cpp247 status_t status = NO_ERROR; local
292 status = data.readInt32(&streamHandle);
293 if (status != NO_ERROR) {
294 return status;
301 status = reply->writeInt32(result);
302 if (status != NO_ERROR) {
303 return status;
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/av/media/libaudioclient/
H A DTrackPlayerBase.cpp66 status_t status = NO_INIT; local
68 status = mAudioTrack->start();
70 return status;
74 status_t status = NO_INIT; local
77 status = NO_ERROR;
79 return status;
84 status_t status = NO_INIT; local
87 status = NO_ERROR;
89 return status;
97 status_t status local
117 VolumeShaper::Status status = mAudioTrack->applyVolumeShaper(spConfiguration, spOperation); local
[all...]
/frameworks/av/media/libaudioclient/tests/
H A Dtest_create_audiorecord.cpp72 status_t status; local
111 status = record->initCheck();
112 sprintf(statusStr, "\n#### Test %u status %d\n", testCount, status);
114 if (status != NO_ERROR) {
/frameworks/av/media/libaudiohal/2.0/
H A DConversionHelperHidl.cpp44 status_t status = halKeys.getAt(i, key); local
45 if (status != OK) return status;
65 status_t status = params.getAt(i, key, value); local
66 if (status != OK) return status;
/frameworks/av/media/libmedia/omx/1.0/
H A DWOmxBufferSource.cpp61 ::android::binder::Status status = toBinderStatus( local
66 return status;
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.cpp125 status_t status = parseUrl(); local
127 if (OK != status) {
129 return status;

Completed in 407 milliseconds

1234567891011>>