Searched refs:status (Results 26 - 50 of 425) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/tests/sandbox/
H A Dreverb.c188 // Prefetch status callback
197 SLuint32 status; local
198 result = (*caller)->GetPrefetchStatus(caller, &status);
202 && level == 0 && status == SL_PREFETCHSTATUS_UNDERFLOW) {
205 status == SL_PREFETCHSTATUS_SUFFICIENTDATA) {
206 new_prefetch_status = status;
593 // get the prefetch status interface
599 // enable prefetch status callbacks
611 // wait for prefetch status callback to indicate either sufficient data or error
H A Dxaplay.c90 // prefetch status callback
99 XAuint32 status; local
100 result = (*caller)->GetPrefetchStatus(caller, &status);
106 printf("PrefetchEventCallback: Prefetch Status is = %u\n", status);
110 && (level == 0) && (status == XA_PREFETCHSTATUS_UNDERFLOW)) {
114 new_prefetch_status = status;
505 // get the prefetch status interface
511 // register prefetch status callback
578 // wait for prefetch status callback to indicate either sufficient data or error
799 XAuint32 status; local
[all...]
/frameworks/rs/cpp/
H A DRenderScript.cpp60 int status = pthread_join(mMessageThreadId, &res); local
490 int status = pthread_create(&mMessageThreadId, NULL, threadProc, this); local
491 if (status) {
/frameworks/rs/cpu_ref/
H A DrsCpuCore.cpp134 int status = pthread_setspecific(gThreadTLSKey, &dc->mTlsStruct); local
135 if (status) {
136 ALOGE("pthread_setspecific %i", status);
243 int status = pthread_key_create(&gThreadTLSKey, NULL); local
244 if (status) {
255 int status = pthread_setspecific(gThreadTLSKey, &mTlsStruct); local
256 if (status) {
257 ALOGE("pthread_setspecific %i", status);
290 status = pthread_attr_init(&threadAttr);
291 if (status) {
[all...]
H A DrsCpuScript.cpp242 int status = 0;
243 pid_t w = waitpid(pid, &status, 0);
249 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
/frameworks/rs/driver/
H A DrsdFrameBufferObj.cpp50 GLenum status; local
51 status = glCheckFramebufferStatus(GL_FRAMEBUFFER);
52 switch (status) {
/frameworks/rs/driver/runtime/
H A Drs_core.c58 uint32_t prev, status; local
62 status = rsAtomicCas((volatile int32_t*) ptr, (int32_t) prev, (int32_t)n);
63 } while (status != prev);
68 int32_t prev, status; local
72 status = rsAtomicCas(ptr, prev, n);
73 } while (status != prev);
78 uint32_t prev, status; local
82 status = rsAtomicCas((volatile int32_t*) ptr, (int32_t) prev, (int32_t) n);
83 } while (status != prev);
88 int32_t prev, status; local
[all...]
/frameworks/rs/
H A DrsContext.cpp559 int status; local
566 status = pthread_attr_init(&threadAttr);
567 if (status) {
579 status = pthread_create(&mThreadId, &threadAttr, threadProc, this);
580 if (status) {
606 int status = pthread_join(mThreadId, &res); local
H A DrsFileA3D.cpp357 int status = fclose(writeHandle); local
359 if (status != 0) {
H A DrsMutex.cpp31 int status = pthread_mutex_init(&mMutex, NULL); local
32 if (status) {
40 int status; local
41 status = pthread_mutex_lock(&mMutex);
42 if (status) {
43 ALOGE("Mutex: error %i locking.", status);
50 int status; local
51 status = pthread_mutex_unlock(&mMutex);
52 if (status) {
53 ALOGE("Mutex error %i unlocking.", status);
[all...]
H A DrsSignal.cpp34 int status = pthread_mutex_init(&mMutex, NULL); local
35 if (status) {
40 status = pthread_cond_init(&mCondition, NULL);
41 if (status) {
51 int status; local
53 status = pthread_mutex_lock(&mMutex);
54 if (status) {
55 ALOGE("LocklessCommandFifo: error %i locking for set condition.", status);
61 status = pthread_cond_signal(&mCondition);
62 if (status) {
73 int status; local
[all...]
/frameworks/support/v7/mediarouter/jellybean/android/support/v7/media/
H A DMediaRouterJellybean.java199 public static void setStatus(Object routeObj, CharSequence status) { argument
200 ((android.media.MediaRouter.UserRouteInfo)routeObj).setStatus(status);
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaItemStatus.java25 * Describes the playback status of a media item.
38 * While the item is playing, the playback status may also include progress information
43 * To monitor playback status, the application should supply a {@link PendingIntent} to use as the
44 * {@link MediaControlIntent#EXTRA_ITEM_STATUS_UPDATE_RECEIVER item status update receiver}
46 * the status update receiver will only be invoked for major status changes such as a
49 * The status update receiver will not be invoked for minor progress updates such as
52 * {@link MediaControlIntent#ACTION_GET_STATUS get status request} to poll for changes
168 * Integer extra: HTTP status code.
170 * Specifies the HTTP status cod
332 Builder(MediaItemStatus status) argument
[all...]
H A DMediaSessionStatus.java25 * Describes the playback status of a media session.
38 * To monitor session status, the application should supply a {@link PendingIntent} to use as the
39 * {@link MediaControlIntent#EXTRA_SESSION_STATUS_UPDATE_RECEIVER session status update receiver}
90 * Gets the timestamp associated with the status information in
93 * @return The status timestamp in the {@link SystemClock#elapsedRealtime()} time base.
119 * Gets a bundle of extras for this status object.
173 * Builder for {@link MediaSessionStatus media session status objects}.
179 * Creates a media session status builder using the current time as the
191 * Creates a media session status builder whose initial contents are
192 * copied from an existing status
194 Builder(MediaSessionStatus status) argument
[all...]
/frameworks/testing/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/
H A DIAutomationSupport.java29 * Allows the running test cases to send out interim status
32 * @param status status report, consisting of key value pairs
35 public void sendStatus(int resultCode, Bundle status); argument
H A DInstrumentationAutomationSupport.java37 public void sendStatus(int resultCode, Bundle status) { argument
38 mInstrumentation.sendStatus(resultCode, status);
/frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
H A DIAutomationSupport.java29 * Allows the running test cases to send out interim status
32 * @param status status report, consisting of key value pairs
35 public void sendStatus(int resultCode, Bundle status); argument
H A DUiAutomatorTestRunner.java70 public void sendStatus(int resultCode, Bundle status) {
71 mWatcher.instrumentationStatus(null, resultCode, status);
273 * send a status for the start of a each test, so long tests can be seen
/frameworks/testing/uiautomator/samples/SkeletonTest/src/com/android/uiautomator/samples/skeleton/
H A DDemoTestCase.java29 Bundle status = new Bundle();
30 status.putString("msg", "This is a demo test and I just pressed HOME");
31 status.putString("product", getUiDevice().getProductName());
33 status.putInt("dp-width", p.x);
34 status.putInt("dp-height", p.y);
35 getAutomationSupport().sendStatus(Activity.RESULT_OK, status);
/frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/common/helpers/
H A DAppHelperBase.java72 int status = p.waitFor();
73 if (status != 0) {
74 System.err.println(String.format("Run shell command: %s, status: %s", command,
75 status));
/frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/platform/
H A DJankTestBase.java66 // File that hold test status, e.g successful test iterations
152 int status = p.waitFor();
153 if (status != 0) {
154 Log.e(TAG, String.format("Run shell command: %s, status: %s",
155 command, status));
358 // write test status into status file
H A DSurfaceFlingerHelper.java98 int status = p.waitFor();
99 if (status != 0) {
100 Log.e(TAG, String.format("Run shell command: %s, status: %s",
101 command, status));
148 int status = p.waitFor();
149 if (status != 0) {
150 Log.e(TAG, String.format("Run shell command: %s, status: %s",command, status));
/frameworks/uiautomator/samples/SkeletonTest/src/com/android/uiautomator/samples/skeleton/
H A DDemoTestCase.java29 Bundle status = new Bundle();
30 status.putString("msg", "This is a demo test and I just pressed HOME");
31 status.putString("product", getUiDevice().getProductName());
33 status.putInt("dp-width", p.x);
34 status.putInt("dp-height", p.y);
35 getAutomationSupport().sendStatus(Activity.RESULT_OK, status);
/frameworks/uiautomator/testrunner/com/android/uiautomator/testrunner/
H A DIAutomationSupport.java29 * Allows the running test cases to send out interim status
32 * @param status status report, consisting of key value pairs
35 public void sendStatus(int resultCode, Bundle status); argument
H A DInstrumentationAutomationSupport.java37 public void sendStatus(int resultCode, Bundle status) { argument
38 mInstrumentation.sendStatus(resultCode, status);

Completed in 252 milliseconds

1234567891011>>