Searched refs:status (Results 451 - 475 of 835) sorted by relevance

<<11121314151617181920>>

/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp778 } else if (key == "param-track-time-status") {
912 status_t status = OK; local
919 status = setupMPEG4orWEBMRecording();
924 status = setupAMRRecording();
929 status = setupAACRecording();
933 status = setupRTPRecording();
937 status = setupMPEG2TSRecording();
942 status = UNKNOWN_ERROR;
949 return status;
969 status_t status local
1175 status_t status = BAD_VALUE; local
1771 status_t status = BAD_VALUE; local
[all...]
/frameworks/base/core/java/android/print/
H A DPrintJobInfo.java186 /** A short string describing the status of this job. */
189 /** A string resource describing the status of this job. */
381 * Sets the status of the print job.
383 * @param status the status of the job, can be null
387 public void setStatus(@Nullable CharSequence status) { argument
391 mStatus = status;
395 * Sets the status of the print job.
397 * @param status The new status a
402 setStatus(@tringRes int status, @NonNull CharSequence appPackageName) argument
824 setStatus(@ullable CharSequence status) argument
[all...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGLTextureViewActivity.java297 int[] status = new int[1];
298 glGetProgramiv(program, GL_LINK_STATUS, status, 0);
299 if (status[0] != GL_TRUE) {
320 int[] status = new int[1];
321 glGetShaderiv(shader, GL_COMPILE_STATUS, status, 0);
322 if (status[0] != GL_TRUE) {
/frameworks/base/tests/UiBench/src/com/android/test/uibench/opengl/
H A DImageFlipRenderThread.java250 int[] status = new int[1];
251 glGetProgramiv(program, GL_LINK_STATUS, status, 0);
252 if (status[0] != GL_TRUE) {
273 int[] status = new int[1];
274 glGetShaderiv(shader, GL_COMPILE_STATUS, status, 0);
275 if (status[0] != GL_TRUE) {
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsVideoCallProviderWrapper.java53 void onReceiveSessionModifyResponse(int status, VideoProfile requestProfile, argument
92 int status, VideoProfile requestProfile, VideoProfile responseProfile) {
94 args.arg1 = status;
159 int status = (int) args.arg1;
163 receiveSessionModifyResponse(status, requestProfile, responseProfile);
168 callback.onReceiveSessionModifyResponse(status, requestProfile,
91 receiveSessionModifyResponse( int status, VideoProfile requestProfile, VideoProfile responseProfile) argument
/frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/
H A DUT_reduce.java198 String status = (success ? "PASSED" : "FAILED");
200 status += " " + t.string();
201 Log.i(TAG, testName + ": java " + javaResult + ", rs " + rsResult + ": " + status);
219 String status = "PASSED";
221 status += " " + t.string();
222 Log.i(TAG, testName + ": " + status);
240 String status = "PASSED";
242 status += " " + t.string();
243 Log.i(TAG, testName + ": " + status);
254 String status
[all...]
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestSlowDownUri.cpp116 SLuint32 status; local
117 result = (*caller)->GetPrefetchStatus(caller, &status);
123 fprintf(stdout, "\t\tPrefetchEventCallback: Prefetch Status is = %u\n", status);
127 && level == 0 && status == SL_PREFETCHSTATUS_UNDERFLOW) {
131 status == SL_PREFETCHSTATUS_SUFFICIENTDATA) {
132 new_prefetch_status = status;
339 // wait for prefetch status callback to indicate either sufficient data or error
/frameworks/av/services/soundtrigger/
H A DSoundTriggerHwService.cpp604 status_t status = mHalInterface->loadSoundModel(sound_model, local
608 if (status != NO_ERROR) {
609 return status;
615 status = AudioSystem::acquireSoundTriggerSession(&session, &ioHandle, &device);
616 if (status != NO_ERROR) {
617 return status;
624 return status;
694 status_t status = mHalInterface->startRecognition(handle, config, local
698 if (status == NO_ERROR) {
703 return status;
[all...]
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareImpl.java505 * Used to report Monitor status changes.
524 * Internal generic status report function for Geofence operations.
528 * @param operationStatus The status of the operation as defined in GeofenceHardware class. This
529 * status is independent of the statuses reported by different HALs.
540 * Used to report the status of a Geofence Add operation.
542 public void reportGeofenceAddStatus(int geofenceId, int status) { argument
543 if(DEBUG) Log.d(TAG, "AddCallback| id:" + geofenceId + ", status:" + status);
544 reportGeofenceOperationStatus(ADD_GEOFENCE_CALLBACK, geofenceId, status);
548 * Used to report the status o
550 reportGeofenceRemoveStatus(int geofenceId, int status) argument
558 reportGeofencePauseStatus(int geofenceId, int status) argument
566 reportGeofenceResumeStatus(int geofenceId, int status) argument
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.cpp685 status_t status = onPrepareDrm(msg); local
687 response->setInt32("status", status);
696 status_t status = onReleaseDrm(); local
698 response->setInt32("status", status);
1770 // Enquires buffering status every second.
1905 status_t status = msg->postAndAwaitResponse(&response); local
1907 if (status == OK && response != NULL) {
1908 CHECK(response->findInt32("status",
1927 status_t status = msg->postAndAwaitResponse(&response); local
1953 status_t status = OK; local
[all...]
H A DNuPlayer.cpp1381 status_t status = onPrepareDrm(msg); local
1384 response->setInt32("status", status);
1393 status_t status = onReleaseDrm(); local
1396 response->setInt32("status", status);
1582 // Audio decoder is no longer needed if it's in shut/shutting down status.
2705 status_t status = msg->postAndAwaitResponse(&response); local
2707 if (status == OK && response != NULL) {
2708 CHECK(response->findInt32("status",
2724 status_t status = msg->postAndAwaitResponse(&response); local
2741 status_t status = INVALID_OPERATION; local
2788 status_t status; local
[all...]
/frameworks/av/media/libmedia/
H A DIResourceManagerService.cpp104 status_t status = remote()->transact(RECLAIM_RESOURCE, data, &reply); local
105 if (status == NO_ERROR) {
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h419 * Typesafe version of device status, containing both the HAL-layer and the service interface-
431 * Container class for the state of each logical camera device, including: ID, status, and
450 * Return the status for this device.
457 * This function updates the status for this camera device, unless the given status
458 * is in the given list of rejected status states, and execute the function passed in
460 * if the status has changed.
467 void updateStatus(StatusInternal status,
688 * Update the status for the given camera id (if that device exists), and broadcast the
689 * status updat
[all...]
/frameworks/av/services/camera/libcameraservice/tests/
H A DCameraProviderManagerTest.cpp45 hardware::camera::common::V1_0::Status status,
56 hardware::camera::common::V1_0::Status status,
71 ::android::hardware::camera::common::V1_0::Status status,
108 using getVendorTags_cb = std::function<void(Status status,
116 ::android::hardware::camera::common::V1_0::Status status,
124 using getCameraIdList_cb = std::function<void(Status status,
131 using getCameraDeviceInterface_V1_x_cb = std::function<void(Status status,
142 using getCameraDeviceInterface_V3_x_cb = std::function<void(Status status,
/frameworks/base/core/java/com/android/internal/util/
H A DAsyncChannel.java171 /** Successful status always 0, !0 is an unsuccessful status */
293 int status = connectSync(srcContext, srcHandler, dstHandler);
294 if (status == STATUS_SUCCESSFUL) {
296 status = response.arg1;
298 return status;
305 * msg.arg1 = status
351 * msg.arg1 = status
366 * msg.arg1 = status
425 * msg.arg1 = status
842 replyHalfConnected(int status) argument
879 replyDisconnected(int status) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_PointerIcon.cpp118 status_t status = android_view_PointerIcon_load(env, pointerIconObj, local
121 return status;
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerBaseTest.java153 int status = cursor.getInt(cursor.getColumnIndex(
155 Log.i(LOG_TAG, "Download status is: " + status);
157 fail("No status found for completed download!");
256 * @param status The HTTP status code to return for this response
259 protected MockResponse buildResponse(int status) { argument
260 MockResponse response = new MockResponse().setResponseCode(status);
268 * @param status The HTTP status cod
272 buildResponse(int status, byte[] body) argument
283 buildResponse(int status, File bodyFile) argument
[all...]
/frameworks/base/libs/hwui/
H A DPixelBuffer.cpp127 GLboolean status = glUnmapBuffer(GL_PIXEL_UNPACK_BUFFER); local
128 if (status == GL_FALSE) {
/frameworks/base/location/java/android/location/
H A DGpsNavigationMessage.java223 * Sets the status of the navigation message.
230 * Gets a string representation of the 'status'.
263 int status = parcel.readInt();
264 navigationMessage.setStatus((short) status);
/frameworks/base/media/java/android/media/
H A DAudioPortEventHandler.java87 int status = AudioManager.updateAudioPortCache(ports, patches, null);
88 if (status != AudioManager.SUCCESS) {
/frameworks/base/telecomm/java/android/telecom/
H A DVideoCallbackServant.java119 public void receiveSessionModifyResponse(int status, VideoProfile requestedProfile,
122 args.argi1 = status;
/frameworks/base/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/
H A DSoundTriggerTestService.java251 boolean status = mSoundTriggerUtil.addOrUpdateSoundModel(soundModel);
252 if (status) {
276 boolean status = mSoundTriggerUtil.deleteSoundModel(modelUuid);
277 if (status) {
300 boolean status = mSoundTriggerUtil.addOrUpdateSoundModel(updated);
301 if (status) {
655 public void onAvailabilityChanged(int status) { argument
656 postMessage(mModelInfo.name + " availability changed to: " + status);
/frameworks/compile/mclinker/include/mcld/LD/
H A DArchive.h98 : name(pName), fileOffset(pOffset), status(pStatus) {}
105 enum Status status; member in struct:mcld::Archive::Symbol
195 /// getSymbolStatus - get the status of a symbol
198 /// setSymbolStatus - set the status of a symbol
/frameworks/compile/mclinker/lib/Support/
H A DDirectory.cpp99 FileStatus Directory::status() const { function in class:mcld::sys::fs::Directory
101 // optimization: if the symlink status is known, and it isn't a symlink,
102 // then status and symlink_status are identical so just copy the
103 // symlink status to the regular status.
107 detail::status(m_Path, m_FileStatus);
/frameworks/native/include/android/
H A Dsensor.h214 int8_t status; member in struct:ASensorVector
244 int8_t status; member in struct:AHeartRateEvent

Completed in 818 milliseconds

<<11121314151617181920>>