Searched refs:status (Results 126 - 150 of 648) sorted by relevance

1234567891011>>

/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.c51 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/base/core/jni/
H A Dandroid_database_CursorWindow.cpp71 status_t status = CursorWindow::create(name, cursorWindowSize, &window); local
72 if (status || !window) {
74 name.string(), cursorWindowSize, status);
86 status_t status = CursorWindow::createFromParcel(parcel, &window); local
87 if (status || !window) {
88 ALOGE("Could not create CursorWindow from Parcel due to error %d.", status);
115 status_t status = window->writeToParcel(parcel); local
116 if (status) {
118 msg.appendFormat("Could not write CursorWindow to Parcel due to error %d.", status);
126 status_t status local
140 status_t status = window->setNumColumns(columnNum); local
146 status_t status = window->allocRow(); local
404 status_t status = window->putBlob(row, column, value, len); local
426 status_t status = window->putString(row, column, valueStr, sizeIncludingNull); local
441 status_t status = window->putLong(row, column, value); local
455 status_t status = window->putDouble(row, column, value); local
469 status_t status = window->putNull(row, column); local
[all...]
H A Dandroid_view_DisplayEventReceiver.cpp131 status_t status = receiver->initialize(); local
132 if (status) {
134 message.appendFormat("Failed to initialize display event receiver. status=%d", status);
153 status_t status = receiver->scheduleVsync(); local
154 if (status) {
156 message.appendFormat("Failed to schedule next vertical sync pulse. status=%d", status);
/frameworks/base/libs/input/
H A DSpriteController.cpp167 status_t status = update.state.surfaceControl->setSize(desiredWidth, desiredHeight); local
168 if (status) {
170 status, update.state.surfaceWidth, update.state.surfaceHeight,
179 status = update.state.surfaceControl->hide();
180 if (status) {
181 ALOGE("Error %d hiding sprite surface after resize.", status);
207 status_t status = surface->lock(&outBuffer, NULL); local
208 if (status) {
209 ALOGE("Error %d locking sprite surface before drawing.", status);
233 status
257 status_t status; local
[all...]
/frameworks/av/media/utils/
H A DISchedulingPolicyService.cpp48 status_t status = remote()->transact(REQUEST_PRIORITY_TRANSACTION, data, &reply, flags); local
49 if (status != NO_ERROR) {
50 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/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/av/media/ndk/
H A DNdkMediaDrm.cpp114 static media_status_t translateStatus(status_t status) { argument
116 switch (status) {
242 status_t status = mObj->mDrm->openSession(session); local
243 if (status == OK) {
311 status_t status = mObj->mDrm->getKeyRequest(*iter, mdInit, String8(mimeType), local
314 if (status != OK) {
315 return translateStatus(status);
342 status_t status = mObj->mDrm->provideKeyResponse(*iter, mdResponse, mdKeySetId); local
343 if (status == OK) {
383 status_t status; local
410 status_t status = mObj->mDrm->queryKeyStatus(*iter, mObj->mQueryResults); local
439 status_t status = mObj->mDrm->getProvisionRequest(String8(""), String8(""), local
478 status_t status = mObj->mDrm->getSecureStops(mObj->mSecureStops); local
526 status_t status = mObj->mDrm->getPropertyString(String8(propertyName), local
547 status_t status = mObj->mDrm->getPropertyByteArray(String8(propertyName), local
596 status_t status = mObj->mDrm->setCipherAlgorithm(*iter, String8(cipherAlgorithm)); local
662 status_t status = mObj->mDrm->setMacAlgorithm(*iter, String8(macAlgorithm)); local
701 status_t status = mObj->mDrm->setMacAlgorithm(*iter, String8(macAlgorithm)); local
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/test/
H A Dh264_enc_test.cpp233 AVCEnc_Status status; local
234 status = PVAVCEncInitialize(&handle, &encParams, NULL, NULL);
235 if (status != AVCENC_SUCCESS) {
253 status = PVAVCEncodeNAL(&handle, outputBuf, &dataLength, &type);
260 status = PVAVCEncodeNAL(&handle, outputBuf, &dataLength, &type);
292 status = PVAVCEncSetInput(&handle, &vin);
293 if (status == AVCENC_SUCCESS || status == AVCENC_NEW_IDR) {
296 } else if (status < AVCENC_SUCCESS) {
297 fprintf(stderr, "Error %d while setting input frame\n", status);
[all...]
/frameworks/av/media/libstagefright/codecs/avcenc/
H A DSoftAVCEnc.cpp228 IV_STATUS_T status; local
241 status = ive_api_function(mCodecCtx, &s_dimensions_ip, &s_dimensions_op);
242 if (status != IV_SUCCESS) {
251 IV_STATUS_T status; local
263 status = ive_api_function(
265 if (status != IV_SUCCESS) {
276 IV_STATUS_T status; local
290 status = ive_api_function(mCodecCtx, &s_frame_rate_ip, &s_frame_rate_op);
291 if (status != IV_SUCCESS) {
302 IV_STATUS_T status; local
329 IV_STATUS_T status; local
353 IV_STATUS_T status; local
377 IV_STATUS_T status; local
409 IV_STATUS_T status; local
436 IV_STATUS_T status; local
461 IV_STATUS_T status; local
484 IV_STATUS_T status; local
515 IV_STATUS_T status; local
541 IV_STATUS_T status; local
566 IV_STATUS_T status; local
594 IV_STATUS_T status; local
614 IV_STATUS_T status; local
882 IV_STATUS_T status = IV_SUCCESS; local
1285 IV_STATUS_T status; local
[all...]
/frameworks/av/media/libmedia/
H A DIEffect.cpp87 status_t status = remote()->transact(COMMAND, data, &reply); local
88 if (status == NO_ERROR) {
89 status = reply.readInt32();
91 if (status != NO_ERROR) {
94 return status;
102 return status;
119 status_t status = remote()->transact(GET_CBLK, data, &reply); local
120 if (status == NO_ERROR) {
177 status_t status = command(cmdCode, cmdSize, cmd, &replySz, resp); local
178 reply->writeInt32(status);
[all...]
H A DAudioRecord.cpp47 status_t status = AudioSystem::getInputBufferSize(sampleRate, format, channelMask, &size); local
48 if (status != NO_ERROR) {
50 "channelMask %#x; status %d", sampleRate, format, channelMask, status);
51 return status;
260 status_t status = openRecord_l(0 /*epoch*/, mOpPackageName); local
262 if (status != NO_ERROR) {
268 return status;
321 status_t status = NO_ERROR; local
323 status
462 status_t status = mProxy->getTimestamp(timestamp); local
524 status_t status; local
783 status_t status = NO_ERROR; local
1197 status_t status = NO_ERROR; local
[all...]
/frameworks/av/media/libstagefright/codecs/mpeg2dec/
H A DSoftMPEG2.cpp124 IV_API_CALL_STATUS_T status; local
133 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip, (void *)&s_ctl_op);
135 if (status != IV_SUCCESS) {
148 IV_API_CALL_STATUS_T status; local
160 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip, (void *)&s_ctl_op);
162 if (status != IV_SUCCESS) {
187 IV_API_CALL_STATUS_T status; local
194 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip, (void *)&s_ctl_op);
195 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
531 IV_API_CALL_STATUS_T status; local
647 IV_API_CALL_STATUS_T status; local
[all...]
/frameworks/base/media/java/android/media/
H A DRemoteDisplayState.java106 public int status; field in class:RemoteDisplayState.RemoteDisplayInfo
114 status = STATUS_NOT_AVAILABLE;
123 status = other.status;
134 status = in.readInt();
155 dest.writeInt(status);
167 + ", status=" + status
/frameworks/base/tests/SoundTriggerTests/src/android/hardware/soundtrigger/stubhal/
H A DGenericSoundModelTest.java188 int status;
191 public ModelInfo(GenericSoundModel model, int status) {
192 this.status = status;
227 if (operation == 0 && modelInfo.status == STATUS_UNLOADED) {
231 modelInfo.status = STATUS_LOADED;
232 } else if (operation == 1 && modelInfo.status == STATUS_LOADED) {
238 modelInfo.status = STATUS_STARTED;
239 } else if (operation == 2 && modelInfo.status == STATUS_STARTED) {
250 } else if (operation == 3 && modelInfo.status
281 onError(int status) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiQualifiedNetworkSelector.java114 * class save the blacklist status of a given BSSID
406 * This API try to update all the saved networks' network selection status
418 WifiConfiguration.NetworkSelectionStatus status =
422 if (status.isNetworkTemporaryDisabled()) {
427 status.setCandidate(null);
428 status.setCandidateScore(Integer.MIN_VALUE);
429 status.setSeenInLastQualifiedNetworkSelection(false);
434 + status.getNetworkStatusString() + " Disable account: ");
435 for (int index = status.NETWORK_SELECTION_ENABLE;
436 index < status
[all...]
/frameworks/av/media/libstagefright/codecs/avcdec/
H A DSoftAVCDec.cpp166 IV_API_CALL_STATUS_T status; local
175 status =
178 if (status != IV_SUCCESS) {
191 IV_API_CALL_STATUS_T status; local
203 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip, (void *)&s_ctl_op);
205 if (status != IV_SUCCESS) {
230 IV_API_CALL_STATUS_T status; local
237 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip, (void *)&s_ctl_op);
238 if (IV_SUCCESS != status) {
254 IV_API_CALL_STATUS_T status; local
271 IV_API_CALL_STATUS_T status; local
295 IV_API_CALL_STATUS_T status; local
351 IV_API_CALL_STATUS_T status; local
453 IV_API_CALL_STATUS_T status; local
585 IV_API_CALL_STATUS_T status; local
[all...]
/frameworks/av/media/libstagefright/codecs/hevcdec/
H A DSoftHEVC.cpp123 IV_API_CALL_STATUS_T status; local
132 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip,
135 if (status != IV_SUCCESS) {
148 IV_API_CALL_STATUS_T status; local
160 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip,
163 if (status != IV_SUCCESS) {
188 IV_API_CALL_STATUS_T status; local
195 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip,
197 if (IV_SUCCESS != status) {
213 IV_API_CALL_STATUS_T status; local
231 IV_API_CALL_STATUS_T status; local
256 IV_API_CALL_STATUS_T status; local
312 IV_API_CALL_STATUS_T status; local
414 IV_API_CALL_STATUS_T status; local
533 IV_API_CALL_STATUS_T status; local
[all...]
/frameworks/native/libs/input/
H A DKeyboard.cpp48 status_t status = loadKeyLayout(deviceIdenfifier, keyLayoutName); local
49 if (status == NAME_NOT_FOUND) {
59 status_t status = loadKeyCharacterMap(deviceIdenfifier, keyCharacterMapName); local
60 if (status == NAME_NOT_FOUND) {
114 status_t status = KeyLayoutMap::load(path, &keyLayoutMap); local
115 if (status) {
116 return status;
131 status_t status = KeyCharacterMap::load(path, local
133 if (status) {
134 return status;
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/nan/
H A DWifiNanSessionState.java137 public void onPublishFail(int status) { argument
141 mListener.onPublishFail(status);
148 public void onPublishTerminated(int status) { argument
153 mListener.onPublishTerminated(status);
165 public void onSubscribeFail(int status) { argument
170 mListener.onSubscribeFail(status);
177 public void onSubscribeTerminated(int status) { argument
182 mListener.onSubscribeTerminated(status);
200 public void onMessageSendFail(int messageId, int status) { argument
204 mListener.onMessageSendFail(messageId, status);
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dbitstream_io.cpp122 PV_STATUS status; local
138 status = BitstreamSaveWord(stream);
139 if (status != PV_SUCCESS)
141 return status;
170 PV_STATUS status; local
179 status = BitstreamPutBits(stream, topLength, topValue);
181 if (status != PV_SUCCESS)
183 return status;
186 status = BitstreamPutBits(stream, 16, (UInt)(Value & 0xFFFF));
188 return status;
418 PV_STATUS status; local
534 PV_STATUS status = PV_SUCCESS; local
[all...]
/frameworks/base/core/java/android/os/
H A DParcelFileDescriptor.java61 * Optional socket used to communicate close events, status at close, and
73 * Maximum {@link #mStatusBuf} size; longer status messages will be
256 Status status = null;
259 status = readCommStatus(fd, buf);
261 status = new Status(Status.DEAD);
263 if (status != null) {
266 listener.onClose(status.asIOException());
479 // Use SOCK_SEQPACKET so that we have a guarantee that the status
686 private void closeWithStatus(int status, String msg) { argument
691 writeCommStatusAndClose(status, ms
711 writeCommStatusAndClose(int status, String msg) argument
1053 public final int status; field in class:ParcelFileDescriptor.Status
1056 Status(int status) argument
1060 Status(int status, String msg) argument
[all...]
/frameworks/av/camera/ndk/impl/
H A DACameraManager.cpp168 int32_t status = pair.second; local
171 ACameraManager_AvailabilityCallback cb = isStatusAvailable(status) ?
188 bool CameraManagerGlobal::validStatus(int32_t status) { argument
189 switch (status) {
200 bool CameraManagerGlobal::isStatusAvailable(int32_t status) { argument
201 switch (status) {
250 int32_t status, int32_t cameraId) {
253 cm->onStatusChanged(status, cameraId);
255 ALOGE("Cannot deliver status change. Global camera manager died");
261 int32_t status, int32_
249 onStatusChanged( int32_t status, int32_t cameraId) argument
260 onStatusChanged( int32_t status, int32_t cameraId) argument
266 onStatusChangedLocked( int32_t status, int32_t cameraId) argument
[all...]
/frameworks/base/core/java/android/print/
H A DIPrintSpooler.aidl44 void setPrintJobState(in PrintJobId printJobId, int status, String stateReason,
56 * Set the status of this print job
59 * @param status The new status, can be null
61 void setStatus(in PrintJobId printJobId, in CharSequence status);
64 * Set the status of this print job
67 * @param status The new status as a string resource
70 void setStatusRes(in PrintJobId printJobId, int status, in CharSequence appPackageName);

Completed in 1057 milliseconds

1234567891011>>