Searched refs:status (Results 176 - 200 of 835) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/bluetooth/le/
H A DBluetoothLeAdvertiser.java85 * Returns immediately, the operation status is delivered through {@code callback}.
91 * @param callback Callback for advertising status.
101 * active scan request. This method returns immediately, the operation status is delivered
109 * @param callback Callback for advertising status.
169 int status) {
170 if (status != AdvertisingSetCallback.ADVERTISE_SUCCESS) {
171 postStartFailure(callback, status);
181 int status) {
218 * method returns immediately, the operation status is delivered through
247 * method returns immediately, the operation status i
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DSupplicantStaIfaceHal.java269 mISupplicant.listInterfaces((SupplicantStatus status,
271 if (status.code != SupplicantStatusCode.SUCCESS) {
272 Log.e(TAG, "Getting Supplicant Interfaces failed: " + status.code);
291 (SupplicantStatus status, ISupplicantIface iface) -> {
292 if (status.code != SupplicantStatusCode.SUCCESS) {
293 Log.e(TAG, "Failed to get ISupplicantIface " + status.code);
658 mISupplicantStaIface.addNetwork((SupplicantStatus status,
660 if (checkStatusAndLogFailure(status, methodStr)) {
686 SupplicantStatus status = mISupplicantStaIface.removeNetwork(id);
687 return checkStatusAndLogFailure(status, methodSt
1683 checkStatusAndLogFailure(SupplicantStatus status, final String methodStr) argument
[all...]
/frameworks/av/media/common_time/
H A Dcc_helper.cpp102 status_t status = common_clock_->call; \
103 if (DEAD_OBJECT == status) { \
106 status = common_clock_->call; \
109 return status; \
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DUserInputListener.java23 * Notification that status of the OSU operation has changed. The implementation may choose to
27 * Returning a null string on the initial status update of UserInputComplete or UserInputAborted
32 * @param status
36 public String operationStatus(String spIdentity, OSUOperationStatus status, String message); argument
/frameworks/wilhelm/src/itf/
H A DIPresetReverb.cpp51 android::status_t status = android_prev_setPreset(thiz->mPresetReverbEffect, preset); local
52 result = android_fx_statusToResult(status);
83 android::status_t status = android_prev_getPreset(thiz->mPresetReverbEffect, &preset); local
84 result = android_fx_statusToResult(status);
/frameworks/av/media/libstagefright/codecs/mpeg2dec/
H A DSoftMPEG2.cpp123 IV_API_CALL_STATUS_T status; local
132 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip, (void *)&s_ctl_op);
134 if (status != IV_SUCCESS) {
147 IV_API_CALL_STATUS_T status; local
159 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip, (void *)&s_ctl_op);
161 if (status != IV_SUCCESS) {
186 IV_API_CALL_STATUS_T status; local
193 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip, (void *)&s_ctl_op);
194 if (IV_SUCCESS != status) {
214 IV_API_CALL_STATUS_T status; local
231 IV_API_CALL_STATUS_T status; local
256 IV_API_CALL_STATUS_T status; local
466 IV_API_CALL_STATUS_T status; local
574 IV_API_CALL_STATUS_T status; local
704 IV_API_CALL_STATUS_T status; local
[all...]
/frameworks/base/core/jni/
H A Dandroid_database_CursorWindow.cpp93 status_t status = CursorWindow::create(name, cursorWindowSize, &window); local
94 if (status || !window) {
96 name.string(), cursorWindowSize, status);
108 status_t status = CursorWindow::createFromParcel(parcel, &window); local
109 if (status || !window) {
111 status, getFdCount());
138 status_t status = window->writeToParcel(parcel); local
139 if (status) {
141 msg.appendFormat("Could not write CursorWindow to Parcel due to error %d.", status);
149 status_t status local
163 status_t status = window->setNumColumns(columnNum); local
169 status_t status = window->allocRow(); local
435 status_t status = window->putBlob(row, column, value, len); local
457 status_t status = window->putString(row, column, valueStr, sizeIncludingNull); local
472 status_t status = window->putLong(row, column, value); local
486 status_t status = window->putDouble(row, column, value); local
500 status_t status = window->putNull(row, column); local
[all...]
/frameworks/base/libs/input/
H A DSpriteController.cpp166 status_t status = update.state.surfaceControl->setSize(desiredWidth, desiredHeight); local
167 if (status) {
169 status, update.state.surfaceWidth, update.state.surfaceHeight,
178 status = update.state.surfaceControl->hide();
179 if (status) {
180 ALOGE("Error %d hiding sprite surface after resize.", status);
206 status_t status = surface->lock(&outBuffer, NULL); local
207 if (status) {
208 ALOGE("Error %d locking sprite surface before drawing.", status);
232 status
256 status_t status; local
[all...]
/frameworks/av/media/libaaudio/src/utility/
H A DAAudioUtilities.cpp208 status_t status; local
212 status = DEAD_OBJECT;
215 status = INVALID_OPERATION;
221 status = BAD_VALUE;
224 status = WOULD_BLOCK;
227 status = UNEXPECTED_NULL;
238 status = UNKNOWN_ERROR;
241 return status;
244 aaudio_result_t AAudioConvert_androidToAAudioResult(status_t status) { argument
246 if (status >
[all...]
/frameworks/av/media/libaudiohal/
H A DEffectHalLocal.cpp32 int status = EffectRelease(mHandle); local
33 ALOGW_IF(status, "Error releasing effect %p: %s", mHandle, strerror(-status));
/frameworks/av/media/utils/
H A DISchedulingPolicyService.cpp50 status_t status = remote()->transact(REQUEST_PRIORITY_TRANSACTION, data, &reply, flags); local
51 if (status != NO_ERROR) {
52 return status;
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiPlaybackClient.java52 * Listener used by the client to get display device status.
56 * Called when display device status is reported.
58 * @param status display device status. It should be one of the following values.
67 public void onComplete(int status); argument
96 * Gets the status of display device connected through HDMI bus.
132 public void onComplete(int status) {
133 callback.onComplete(status);
/frameworks/base/services/core/java/com/android/server/
H A DRecoverySystemService.java111 // Read the status from the socket.
119 int status = dis.readInt();
121 if (status == lastStatus && lastStatus != Integer.MIN_VALUE) {
124 lastStatus = status;
126 if (status >= 0 && status <= 100) {
127 // Update status
128 Slog.i(TAG, "uncrypt read status: " + status);
131 listener.onProgress(status);
[all...]
/frameworks/compile/mclinker/lib/Support/
H A DDemangle.cpp28 int status; local
30 abi::__cxa_demangle(pName.c_str(), /*buffer=*/0, &output_leng, &status);
31 if (status != 0) { // Failed
/frameworks/native/services/vr/hardware_composer/
H A Dvr_hardware_composer_service.cpp50 android::status_t status = sm->addService( local
53 LOG_ALWAYS_FATAL_IF(status != android::OK,
54 "VrDisplay service failed to start: %" PRId32, status);
/frameworks/av/media/ndk/
H A DNdkMediaDrm.cpp115 static media_status_t translateStatus(status_t status) { argument
117 switch (status) {
243 status_t status = mObj->mDrm->openSession(session); local
244 if (status == OK) {
312 status_t status = mObj->mDrm->getKeyRequest(*iter, mdInit, String8(mimeType), local
315 if (status != OK) {
316 return translateStatus(status);
343 status_t status = mObj->mDrm->provideKeyResponse(*iter, mdResponse, mdKeySetId); local
344 if (status == OK) {
384 status_t status; local
411 status_t status = mObj->mDrm->queryKeyStatus(*iter, mObj->mQueryResults); local
440 status_t status = mObj->mDrm->getProvisionRequest(String8(""), String8(""), local
479 status_t status = mObj->mDrm->getSecureStops(mObj->mSecureStops); local
527 status_t status = mObj->mDrm->getPropertyString(String8(propertyName), local
548 status_t status = mObj->mDrm->getPropertyByteArray(String8(propertyName), local
597 status_t status = mObj->mDrm->setCipherAlgorithm(*iter, String8(cipherAlgorithm)); local
663 status_t status = mObj->mDrm->setMacAlgorithm(*iter, String8(macAlgorithm)); local
702 status_t status = mObj->mDrm->setMacAlgorithm(*iter, String8(macAlgorithm)); local
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGatt.java146 public void onClientRegistered(int status, int clientIf) {
147 if (DBG) Log.d(TAG, "onClientRegistered() - status=" + status
157 if (status != GATT_SUCCESS) {
186 public void onPhyUpdate(String address, int txPhy, int rxPhy, int status) {
187 if (DBG) Log.d(TAG, "onPhyUpdate() - status=" + status
197 mCallback.onPhyUpdate(BluetoothGatt.this, txPhy, rxPhy, status);
208 public void onPhyRead(String address, int txPhy, int rxPhy, int status) {
209 if (DBG) Log.d(TAG, "onPhyRead() - status
[all...]
/frameworks/av/media/libstagefright/codecs/avcenc/
H A DSoftAVCEnc.cpp227 IV_STATUS_T status; local
240 status = ive_api_function(mCodecCtx, &s_dimensions_ip, &s_dimensions_op);
241 if (status != IV_SUCCESS) {
250 IV_STATUS_T status; local
262 status = ive_api_function(
264 if (status != IV_SUCCESS) {
275 IV_STATUS_T status; local
289 status = ive_api_function(mCodecCtx, &s_frame_rate_ip, &s_frame_rate_op);
290 if (status != IV_SUCCESS) {
301 IV_STATUS_T status; local
328 IV_STATUS_T status; local
352 IV_STATUS_T status; local
376 IV_STATUS_T status; local
408 IV_STATUS_T status; local
435 IV_STATUS_T status; local
460 IV_STATUS_T status; local
483 IV_STATUS_T status; local
514 IV_STATUS_T status; local
540 IV_STATUS_T status; local
565 IV_STATUS_T status; local
593 IV_STATUS_T status; local
613 IV_STATUS_T status; local
882 IV_STATUS_T status = IV_SUCCESS; local
1290 IV_STATUS_T status; local
[all...]
/frameworks/av/services/camera/libcameraservice/common/
H A DCameraProviderManager.cpp206 [&support](auto status, bool supported) {
207 if (status == Status::OK) {
230 Status status; local
234 status = s;
244 if (status != Status::OK) {
245 return mapToStatusT(status);
280 Status status; local
282 ret = deviceInfo3->mInterface->open(callback, [&status, &session]
284 status = s;
285 if (status
310 hardware::Return<Status> status = deviceInfo1->mInterface->open(callback); local
476 hardware::Return<Status> status = mInterface->setCallback(this); local
729 Status status; local
763 Status status; local
788 Status status; local
828 hardware::Return<Status> status = mInterface->open(nullptr); local
915 Status status; local
[all...]
/frameworks/av/media/libstagefright/codecs/avcdec/
H A DSoftAVCDec.cpp119 IV_API_CALL_STATUS_T status; local
128 status =
131 if (status != IV_SUCCESS) {
144 IV_API_CALL_STATUS_T status; local
156 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip, (void *)&s_ctl_op);
158 if (status != IV_SUCCESS) {
183 IV_API_CALL_STATUS_T status; local
190 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip, (void *)&s_ctl_op);
191 if (IV_SUCCESS != status) {
207 IV_API_CALL_STATUS_T status; local
224 IV_API_CALL_STATUS_T status; local
248 IV_API_CALL_STATUS_T status; local
304 IV_API_CALL_STATUS_T status; local
338 IV_API_CALL_STATUS_T status; local
448 IV_API_CALL_STATUS_T status; local
576 IV_API_CALL_STATUS_T status; local
[all...]
/frameworks/av/media/libstagefright/codecs/hevcdec/
H A DSoftHEVC.cpp115 IV_API_CALL_STATUS_T status; local
124 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip,
127 if (status != IV_SUCCESS) {
140 IV_API_CALL_STATUS_T status; local
152 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip,
155 if (status != IV_SUCCESS) {
178 IV_API_CALL_STATUS_T status; local
191 status = ivdec_api_function(
195 if (status != IV_SUCCESS) {
222 IV_API_CALL_STATUS_T status; local
247 IV_API_CALL_STATUS_T status; local
265 IV_API_CALL_STATUS_T status; local
290 IV_API_CALL_STATUS_T status; local
346 IV_API_CALL_STATUS_T status; local
448 IV_API_CALL_STATUS_T status; local
567 IV_API_CALL_STATUS_T status; local
[all...]
/frameworks/native/services/vr/bufferhubd/
H A Dconsumer_queue_channel.cpp118 auto status = producer_channel->CreateConsumer(message); local
124 if (!status) {
128 status.GetErrorMessage().c_str());
131 return status.error_status();
137 buffer_handles.emplace_back(status.take(), producer_slot);
/frameworks/native/libs/vr/libpdx_uds/
H A Dservice_endpoint.cpp229 auto status = CreateChannelSocketPair(&local_socket, &remote_socket); local
230 if (!status)
231 return status;
235 status = OnNewChannel(std::move(local_socket));
236 if (!status)
237 return status;
242 status = SendData(connection_fd.Borrow(), connection_info);
244 if (status) {
246 status = ReceiveMessageForChannel(channel_handle, message);
254 return status;
273 Status<void> status; local
334 Status<void> status; local
367 Status<void> status; local
429 auto status = CreateChannelSocketPair(&local_socket, &remote_socket); local
494 auto status = ReceiveData(channel_fd.Borrow(), &request); local
589 auto status = AcceptConnection(message); local
631 auto status = SendData(channel_socket, state->response); local
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
H A DWifiAwareNativeApi.java79 WifiStatus status = iface.getCapabilitiesRequest(transactionId);
80 if (status.code == WifiStatusCode.SUCCESS) {
83 Log.e(TAG, "getCapabilities: error: " + statusString(status));
117 WifiStatus status;
190 status = iface.enableRequest(transactionId, req);
238 status = iface.configRequest(transactionId, req);
240 if (status.code == WifiStatusCode.SUCCESS) {
243 Log.e(TAG, "enableAndConfigure: error: " + statusString(status));
268 WifiStatus status = iface.disableRequest(transactionId);
269 if (status
810 statusString(WifiStatus status) argument
[all...]
/frameworks/av/media/libaudioclient/
H A DIEffect.cpp90 status_t status = remote()->transact(COMMAND, data, &reply); local
91 if (status == NO_ERROR) {
92 status = reply.readInt32();
94 if (status != NO_ERROR) {
97 return status;
105 return status;
122 status_t status = remote()->transact(GET_CBLK, data, &reply); local
123 if (status == NO_ERROR) {
189 status_t status = command(cmdCode, cmdSize, cmd, &replySz, resp); local
190 reply->writeInt32(status);
[all...]

Completed in 1013 milliseconds

1234567891011>>