Searched refs:status (Results 26 - 50 of 995) sorted by relevance

1234567891011>>

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
H A DWifiAwareNativeCallback.java146 public void notifyCapabilitiesResponse(short id, WifiNanStatus status, argument
149 Log.v(TAG, "notifyCapabilitiesResponse: id=" + id + ", status=" + statusString(status)
153 if (status.status == NanStatusType.SUCCESS) {
176 Log.e(TAG, "notifyCapabilitiesResponse: error code=" + status.status + " ("
177 + status.description + ")");
182 public void notifyEnableResponse(short id, WifiNanStatus status) { argument
183 if (mDbg) Log.v(TAG, "notifyEnableResponse: id=" + id + ", status
198 notifyConfigResponse(short id, WifiNanStatus status) argument
209 notifyDisableResponse(short id, WifiNanStatus status) argument
222 notifyStartPublishResponse(short id, WifiNanStatus status, byte publishId) argument
236 notifyStopPublishResponse(short id, WifiNanStatus status) argument
250 notifyStartSubscribeResponse(short id, WifiNanStatus status, byte subscribeId) argument
264 notifyStopSubscribeResponse(short id, WifiNanStatus status) argument
279 notifyTransmitFollowupResponse(short id, WifiNanStatus status) argument
293 notifyCreateDataInterfaceResponse(short id, WifiNanStatus status) argument
304 notifyDeleteDataInterfaceResponse(short id, WifiNanStatus status) argument
315 notifyInitiateDataPathResponse(short id, WifiNanStatus status, int ndpInstanceId) argument
330 notifyRespondToDataPathIndicationResponse(short id, WifiNanStatus status) argument
341 notifyTerminateDataPathResponse(short id, WifiNanStatus status) argument
373 eventDisabled(WifiNanStatus status) argument
381 eventPublishTerminated(byte sessionId, WifiNanStatus status) argument
392 eventSubscribeTerminated(byte sessionId, WifiNanStatus status) argument
452 eventTransmitFollowup(short id, WifiNanStatus status) argument
570 statusString(WifiNanStatus status) argument
[all...]
/frameworks/base/tests/JankBench/app/src/main/jni/
H A DWorkerPool.cpp40 int status = pthread_mutex_init(&mMutex, NULL); local
41 if (status) {
46 status = pthread_cond_init(&mCondition, NULL);
47 if (status) {
57 int status; local
59 status = pthread_mutex_lock(&mMutex);
60 if (status) {
61 __android_log_print(ANDROID_LOG_INFO, "bench", "WorkerPool: error %i locking for set condition.", status);
67 status = pthread_cond_signal(&mCondition);
68 if (status) {
79 int status; local
180 int status = pthread_attr_init(&threadAttr); local
[all...]
/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
H A Ddebug.h20 GLenum status = glCheckFramebufferStatus(GL_FRAMEBUFFER); \
21 switch (status) { \
28 ALOGE("FBO user error: %d", status); \
/frameworks/native/services/vr/virtual_touchpad/
H A DEvdevInjector.cpp42 if (const int status = ioctl(fd_.get(), request, value)) {
44 value, status, errno);
52 if (const int status = ioctl(fd_.get(), request)) {
53 ALOGE("ioctl(%d, 0x%X) failed (r=%d errno=%d)", fd_.get(), request, status,
73 if (const int status = RequireState(State::NEW)) {
74 return status;
80 if (const int status = uinput_->Open()) {
83 return Error(status);
102 if (const int status = RequireState(State::CONFIGURING)) {
103 return status;
[all...]
/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 DSharedRegionParcelable.cpp51 status_t status = AAudioConvert_aaudioToAndroidStatus(validate()); local
52 if (status != NO_ERROR) goto error;
54 status = parcel->writeInt32(mSizeInBytes);
55 if (status != NO_ERROR) goto error;
57 status = parcel->writeInt32(mSharedMemoryIndex);
58 if (status != NO_ERROR) goto error;
59 status = parcel->writeInt32(mOffsetInBytes);
60 if (status != NO_ERROR) goto error;
65 ALOGE("%s returning %d", __func__, status);
66 return status;
70 status_t status = parcel->readInt32(&mSizeInBytes); local
[all...]
/frameworks/av/soundtrigger/
H A DISoundTrigger.cpp62 status_t status = remote()->transact(LOAD_SOUND_MODEL, data, &reply); local
63 if (status != NO_ERROR) {
64 return status;
66 status = (status_t)reply.readInt32();
67 if (status == NO_ERROR) {
70 return status;
78 status_t status = remote()->transact(UNLOAD_SOUND_MODEL, data, &reply); local
79 if (status == NO_ERROR) {
80 status = (status_t)reply.readInt32();
82 return status;
97 status_t status = remote()->transact(START_RECOGNITION, data, &reply); local
109 status_t status = remote()->transact(STOP_RECOGNITION, data, &reply); local
137 status_t status = loadSoundModel(modelMemory, &handle); local
148 status_t status = unloadSoundModel(handle); local
160 status_t status = startRecognition(handle, dataMemory); local
168 status_t status = stopRecognition(handle); local
[all...]
H A DISoundTriggerHwService.cpp63 status_t status = remote()->transact(LIST_MODULES, data, &reply); local
64 if (status == NO_ERROR) {
65 status = (status_t)reply.readInt32();
68 ALOGV("listModules() status %d got *numModules %d", status, *numModules);
69 if (status == NO_ERROR) {
77 return status;
88 status_t status = remote()->transact(ATTACH, data, &reply); local
89 if (status != NO_ERROR) {
90 return status;
104 status_t status = remote()->transact(SET_CAPTURE_STATE, data, &reply); local
136 status_t status = listModules(modules, &numModules); local
159 status_t status = attach(handle, client, module); local
[all...]
/frameworks/av/media/libmedia/
H A DVisualizer.cpp76 status_t status = AudioEffect::setEnabled(enabled); local
79 if (enabled && status == NO_ERROR) {
90 return status;
145 status_t status = setParameter(p); local
147 ALOGV("setCaptureSize size %d status %d p->status %d", size, status, p->status);
149 if (status == NO_ERROR) {
150 status
174 status_t status = setParameter(p); local
204 status_t status = setParameter(p); local
237 status_t status = NO_ERROR; local
264 status_t status = NO_ERROR; local
288 status_t status = NO_ERROR; local
338 status_t status = getWaveForm(waveform); local
373 status_t status = getParameter(p); local
[all...]
/frameworks/av/media/libaudioclient/
H A DIAudioTrack.cpp61 status_t status = remote()->transact(GET_CBLK, data, &reply); local
62 if (status == NO_ERROR) {
75 status_t status = remote()->transact(START, data, &reply); local
76 if (status == NO_ERROR) {
77 status = reply.readInt32();
79 ALOGW("start() error: %s", strerror(-status));
81 return status;
110 status_t status = remote()->transact(ATTACH_AUX_EFFECT, data, &reply); local
111 if (status == NO_ERROR) {
112 status
123 status_t status = remote()->transact(SET_PARAMETERS, data, &reply); local
133 status_t status = remote()->transact(GET_TIMESTAMP, data, &reply); local
157 status_t status = configuration.get() == nullptr local
185 status_t status = remote()->transact(GET_VOLUME_SHAPER_STATE, data, &reply); local
245 status_t status = getTimestamp(timestamp); local
265 status_t status = data.readInt32(&present); local
284 status_t status = data.readInt32(&id); local
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattServerCallback.java28 * @param status Status of the connect or disconnect operation.
32 public void onConnectionStateChange(BluetoothDevice device, int status, argument
39 * @param status Returns {@link BluetoothGatt#GATT_SUCCESS} if the service was added
43 public void onServiceAdded(int status, BluetoothGattService service) { argument
138 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the operation was successful
140 public void onNotificationSent(BluetoothDevice device, int status) { argument
164 * @param status Status of the PHY update operation. {@link BluetoothGatt#GATT_SUCCESS} if the
167 public void onPhyUpdate(BluetoothDevice device, int txPhy, int rxPhy, int status) { argument
178 * @param status Status of the PHY read operation. {@link BluetoothGatt#GATT_SUCCESS} if the
181 public void onPhyRead(BluetoothDevice device, int txPhy, int rxPhy, int status) { argument
198 onConnectionUpdated(BluetoothDevice device, int interval, int latency, int timeout, int status) argument
[all...]
/frameworks/base/core/java/android/hardware/
H A DCameraStatus.java25 * Contains the name of the camera device, and its current status, one of the
32 public int status; field in class:CameraStatus
42 out.writeInt(status);
47 status = in.readInt();
54 CameraStatus status = new CameraStatus();
55 status.readFromParcel(in);
57 return status;
/frameworks/base/core/java/android/webkit/
H A DWebViewProviderResponse.java26 public WebViewProviderResponse(PackageInfo packageInfo, int status) { argument
28 this.status = status;
45 status = in.readInt();
56 out.writeInt(status);
60 public final int status; field in class:WebViewProviderResponse
/frameworks/av/camera/aidl/android/hardware/
H A DICameraServiceListener.aidl24 * Initial status will be transmitted with onStatusChange immediately
54 oneway void onStatusChanged(int status, String cameraId);
57 * The torch mode status of a camera.
59 * Initial status will be transmitted with onTorchStatusChanged immediately
78 oneway void onTorchStatusChanged(int status, String cameraId);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Ddec_pred_intra_dc.cpp32 PV_STATUS status = PV_SUCCESS; local
41 status = PV_VlcDecIntraDCPredSize(stream, compnum, &DC_size);
43 if (status == PV_SUCCESS)
73 return status;
/frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/
H A DIAutomationSupport.java32 * Allows the running test cases to send out interim status
35 * @param status status report, consisting of key value pairs
38 public void sendStatus(int resultCode, Bundle status); argument
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
H A DIAutomationSupport.java32 * Allows the running test cases to send out interim status
35 * @param status status report, consisting of key value pairs
38 public void sendStatus(int resultCode, Bundle status); argument
/frameworks/base/core/java/android/app/backup/
H A DIBackupObserver.aidl45 * @param status Zero on success; a nonzero error code if the backup operation failed.
47 void onResult(String target, int status);
53 * @param status Zero on success; a nonzero error code if the backup operation
56 void backupFinished(int status);
/frameworks/base/core/java/android/os/
H A DUpdateEngineCallback.java36 * Invoked when anything changes. The value of {@code status} will
41 public abstract void onStatusUpdate(int status, float percent); argument
/frameworks/base/libs/hwui/utils/
H A DGLUtils.cpp38 GLenum status = GL_NO_ERROR;
39 while ((status = glGetError()) != GL_NO_ERROR) {
41 switch (status) {
55 ALOGE("GL error: 0x%x", status);
/frameworks/native/libs/vr/libdisplay/
H A Ddisplay_manager_client.cpp25 auto status = InvokeRemoteMethod<DisplayManagerProtocol::GetSurfaceState>(); local
26 if (!status) {
29 status.GetErrorMessage().c_str());
32 return status;
37 auto status = InvokeRemoteMethod<DisplayManagerProtocol::GetSurfaceQueue>( local
39 if (!status) {
43 surface_id, queue_id, status.GetErrorMessage().c_str());
44 return status.error_status();
47 return {ConsumerQueue::Import(status.take())};
/frameworks/base/core/java/android/provider/
H A DDownloads.java210 * The name of the column containing the current status of the download.
216 public static final String COLUMN_STATUS = "status";
220 * status changed in the download. Stored as a System.currentTimeMillis()
519 * Returns whether the status is informational (i.e. 1xx).
521 public static boolean isStatusInformational(int status) { argument
522 return (status >= 100 && status < 200);
526 * Returns whether the status is a success (i.e. 2xx).
528 public static boolean isStatusSuccess(int status) { argument
529 return (status >
535 isStatusError(int status) argument
542 isStatusClientError(int status) argument
549 isStatusServerError(int status) argument
568 isStatusCompleted(int status) argument
732 statusToString(int status) argument
[all...]
/frameworks/native/libs/vr/libpdx/
H A Dclient.cpp25 auto status = channel_factory_->Connect(reconnect_timeout_ms_); local
26 if (!status) {
27 error_ = -status.error();
28 ret.SetError(status.error());
31 channel_ = status.take();
65 auto status = channel_factory_->Connect(timeout_ms); variable
66 if (!status) {
68 status.GetErrorMessage().c_str());
69 error_ = -status.error();
71 channel_ = status
86 auto status = CheckReconnect(); local
99 auto status = CheckReconnect(); local
156 auto status = client_.GetChannel()->SendWithInt( local
171 auto status = client_.CheckReconnect(); local
192 auto status = client_.CheckReconnect(); local
213 auto status = client_.CheckReconnect(); local
[all...]
/frameworks/native/libs/vr/libbufferhubqueue/
H A Dbuffer_hub_queue_client.cpp78 auto status = InvokeRemoteMethod<BufferHubRPC::GetQueueInfo>(); local
79 if (!status) {
81 status.GetErrorMessage().c_str());
82 return ErrorStatus(status.error());
84 SetupQueue(status.get());
99 if (auto status = CreateConsumerQueueHandle(/*silent*/ false))
100 return std::unique_ptr<ConsumerQueue>(new ConsumerQueue(status.take()));
106 if (auto status = CreateConsumerQueueHandle(/*silent*/ true))
107 return std::unique_ptr<ConsumerQueue>(new ConsumerQueue(status.take()));
114 auto status local
128 auto status = CreateConsumerQueueHandle(silent); local
221 auto status = buffers_[slot]->GetEventMask(poll_events); local
254 auto status = GetEventMask(poll_event); local
401 auto status = RemoveBuffer(slot); local
417 auto status = ImportQueue(); local
428 auto status = local
451 Status<std::vector<std::pair<LocalChannelHandle, size_t>>> status = local
498 auto status = local
520 auto status = BufferHubQueue::AddBuffer(buffer, slot); local
528 auto status = local
554 auto status = BufferHubQueue::Dequeue(timeout, slot); local
593 auto status = ImportQueue(); local
611 auto status = InvokeRemoteMethod<BufferHubRPC::ConsumerQueueImportBuffers>(); local
680 auto status = Dequeue(timeout, slot, &canonical_meta, acquire_fence); local
706 auto status = BufferHubQueue::Dequeue(timeout, slot); local
721 auto status = ImportBuffers(); local
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
H A DFwdLockConv.c241 * @return A status code.
244 FwdLockConv_Status_t status; local
253 status = FwdLockConv_Status_OutOfMemory;
257 status = FwdLockConv_Status_ProgramError;
264 status = FwdLockConv_Status_ProgramError;
271 status = FwdLockConv_Status_OK;
277 return status;
312 * @return A status code.
331 * @return A status code.
335 FwdLockConv_Status_t status local
472 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
529 FwdLockConv_Status_t status; local
551 FwdLockConv_Status_t status; local
598 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
870 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
938 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
1079 FwdLockConv_Status_t status; local
1112 FwdLockConv_Status_t status; local
1172 FwdLockConv_Status_t status; local
1202 FwdLockConv_Status_t status; local
1256 FwdLockConv_Status_t status; local
[all...]

Completed in 383 milliseconds

1234567891011>>