Searched defs:res (Results 1 - 25 of 337) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/src/android/
H A DAudioPlayer_to_android.cpp1805 SLresult res = SL_RESULT_SUCCESS; local
1814 res = SL_RESULT_PARAMETER_INVALID;
1824 res = SL_RESULT_PARAMETER_INVALID;
1827 return res;
1841 SLresult res = SL_RESULT_SUCCESS; local
1851 res = SL_RESULT_PARAMETER_INVALID;
1861 res = SL_RESULT_PARAMETER_INVALID;
1864 return res;
1878 SLresult res = SL_RESULT_SUCCESS; local
1887 res
1914 SLresult res = SL_RESULT_SUCCESS; local
[all...]
H A Dandroid_Effect.cpp646 android::status_t res = android::AudioEffect::queryNumberEffects(&numEffects); local
647 if (android::NO_ERROR != res) {
654 res = android::AudioEffect::queryEffect(i, &descriptor);
655 if ((android::NO_ERROR == res) &&
/frameworks/wilhelm/tests/automated/
H A DBufferQueue_test.cpp53 void CheckErr(SLresult res) { argument
54 if (SL_RESULT_SUCCESS != res) {
55 const char *str = slesutResultToString(res);
58 fprintf(stderr, "CheckErr failure: %s (0x%x), exiting\n", str, res);
74 SLresult res; member in class:TestBufferQueue
102 res = slCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
103 CheckErr(res);
104 res = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
105 CheckErr(res);
106 res
[all...]
/frameworks/wilhelm/tests/examples/
H A DslesTestDecodeAac.cpp211 SLresult res = (*caller)->GetPosition(caller, &position); local
212 ExitOnError(res);
243 SLresult res; local
274 res = (*caller)->Enqueue(caller, (void *)&kEosBufferCntxt /*pBufferContext*/,
278 ExitOnError(res);
289 res = (*caller)->Enqueue(caller, NULL /*pBufferContext*/,
291 ExitOnError(res);
333 SLresult res; local
334 res = (*queueItf)->Enqueue(queueItf, pCntxt->pData, BUFFER_SIZE_IN_BYTES);
335 ExitOnError(res);
458 SLresult res; local
858 SLresult res; local
[all...]
H A DslesTestDecodeToBuffQueue.cpp246 SLresult res = (*pCntxt->metaItf)->GetValue(pCntxt->metaItf, sampleRateKeyIndex, local
247 PCM_METADATA_VALUE_SIZE, pcmMetaData); ExitOnError(res);
253 res = (*pCntxt->metaItf)->GetValue(pCntxt->metaItf, channelCountKeyIndex,
254 PCM_METADATA_VALUE_SIZE, pcmMetaData); ExitOnError(res);
H A DslesTestSawtoothBufferQueue.cpp59 void CheckErr( SLresult res )
61 if ( res != SL_RESULT_SUCCESS )
63 fprintf(stdout, "%u SL failure, exiting\n", res);
67 //fprintf(stdout, "%d SL success, proceeding...\n", res);
88 SLresult res; local
95 res = (*queueItf)->Enqueue(queueItf, (void*) pCntxt->pData,
97 CheckErr(res);
112 SLresult res; local
138 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
139 CheckErr(res);
277 SLresult res; local
[all...]
H A DxaVideoDecoderCapabilities.cpp226 XAresult res; local
236 res = xaCreateEngine( &xa, 1, EngineOption, NUM_ENGINE_INTERFACES, itfIidArray, itfRequired);
237 ExitOnError(res);
240 res = (*xa)->Realize(xa, XA_BOOLEAN_FALSE); ExitOnError(res);
244 res = (*xa)->GetInterface(xa, XA_IID_VIDEODECODERCAPABILITIES, (void*)&decItf);
245 ExitOnError(res);
252 res = (*decItf)->GetVideoDecoders(decItf, &numDecoders, NULL); ExitOnError(res);
261 res
[all...]
/frameworks/wilhelm/tests/listening/
H A DslesTest_playMuteSolo.cpp108 SLresult res = (*muteSolo)->GetNumChannels(muteSolo, &numChannels); ExitOnError(res); local
111 res = (*playItf)->GetPosition(playItf, &position); ExitOnError(res);
119 res = (*muteSolo)->GetChannelMute(muteSolo, 0, &leftMuted); ExitOnError(res);
121 res = (*muteSolo)->SetChannelMute(muteSolo, 0,
123 ExitOnError(res);
124 res = (*muteSolo)->SetChannelMute(muteSolo, 1,
126 ExitOnError(res);
[all...]
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestGetPositionUri.cpp69 SLresult res = (*caller)->GetFillLevel(caller, &level); CheckErr(res); local
72 res = (*caller)->GetPrefetchStatus(caller, &status); CheckErr(res);
96 SLresult res; local
100 res = (*caller)->GetPosition(caller, &posMsec); CheckErr(res);
113 res = (*caller)->GetPosition(caller, &posMsec); CheckErr(res);
118 res
134 SLresult res; local
316 SLresult res; local
[all...]
H A DslesTestLoopUri.cpp129 SLresult res; local
149 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
150 CheckErr(res);
161 res = (*EngineItf)->CreateOutputMix(EngineItf, &OutputMix, 0,
162 iidArray, required); CheckErr(res);
165 res = (*OutputMix)->Realize(OutputMix, SL_BOOLEAN_FALSE);
166 CheckErr(res);
189 res = (*EngineItf)->CreateAudioPlayer(EngineItf, &player, &audioSource, &audioSink,
190 MAX_NUMBER_INTERFACES, iidArray, required); CheckErr(res);
193 res
291 SLresult res; local
[all...]
H A DslesTestManyPlayers.cpp76 SLresult res; local
79 res = (*caller)->GetFillLevel(caller, &level); CheckErrPlyr(res, *pPlayerId);
82 res = (*caller)->GetPrefetchStatus(caller, &status); CheckErrPlyr(res, *pPlayerId);
107 SLresult res; local
116 res = (*caller)->GetPosition(caller, &pMsec); CheckErrPlyr(res, *pPlayerId);
123 res = (*caller)->GetPosition(caller, &pMsec); CheckErrPlyr(res, *pPlayerI
134 SLresult res; local
209 SLresult res; local
[all...]
H A DslesTestPlayUri.cpp132 SLresult res; local
152 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
153 CheckErr(res);
167 res = (*EngineItf)->CreateOutputMix(EngineItf, &OutputMix, 0,
168 iidArray, required); CheckErr(res);
171 res = (*OutputMix)->Realize(OutputMix, SL_BOOLEAN_FALSE);
172 CheckErr(res);
191 res = (*EngineItf)->CreateAudioPlayer(EngineItf, &player, &audioSource, &audioSink,
192 MAX_NUMBER_INTERFACES, iidArray, required); CheckErr(res);
195 res
325 SLresult res; local
[all...]
H A DslesTestSlowDownUri.cpp75 SLresult res = (*pRateItf)->GetRate(pRateItf, &rate); CheckErr(res); local
76 res = (*pRateItf)->GetRateRange(pRateItf, 0, &minRate, &maxRate, &stepSize, &capa);
77 CheckErr(res);
84 res = (*pRateItf)->SetRate(pRateItf, rate); CheckErr(res);
85 if (res == SL_RESULT_FEATURE_UNSUPPORTED) {
88 CheckErr(res);
185 SLresult res; local
206 res
396 SLresult res; local
[all...]
/frameworks/wilhelm/tests/
H A DmimeUri_test.cpp63 void CheckErr( SLresult res )
65 if ( res != SL_RESULT_SUCCESS ) {
66 fprintf(stderr, "%u SL failure, exiting\n", res);
106 SLresult res; local
126 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
127 CheckErr(res);
141 res = (*EngineItf)->CreateOutputMix(EngineItf, &OutputMix, 0,
142 iidArray, required); CheckErr(res);
145 res = (*OutputMix)->Realize(OutputMix, SL_BOOLEAN_FALSE);
146 CheckErr(res);
269 SLresult res; member in class:MimeUri
[all...]
/frameworks/wilhelm/tests/native-media/jni/
H A Dnative-media-jni.c102 XAresult res; local
117 res = (*playerBQItf)->Clear(playerBQItf);
118 assert(XA_RESULT_SUCCESS == res);
196 res = (*caller)->Enqueue(caller, NULL /*pBufferContext*/,
201 assert(XA_RESULT_SUCCESS == res);
209 res = (*caller)->Enqueue(caller, (void *)&kEosBufferCntxt /*pBufferContext*/,
214 assert(XA_RESULT_SUCCESS == res);
242 XAresult res; local
244 res = (*caller)->QueryStreamType(caller, streamIndex, &domain);
245 assert(XA_RESULT_SUCCESS == res);
270 XAresult res; local
314 XAresult res; local
343 XAresult res; local
458 XAresult res; local
524 XAresult res; local
[all...]
/frameworks/wilhelm/tests/sandbox/streamSource/
H A DslesTestPlayStream.cpp111 SLresult res = (*caller)->Enqueue(caller, NULL /*pBufferContext*/, local
114 CheckErr(res);
187 SLresult res; local
211 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
212 CheckErr(res);
226 res = (*EngineItf)->CreateOutputMix(EngineItf, &OutputMix, 0,
227 iidArray, required); CheckErr(res);
230 res = (*OutputMix)->Realize(OutputMix, SL_BOOLEAN_FALSE);
231 CheckErr(res);
250 res
381 SLresult res; local
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaMmiCode.java225 private void handlePasswordError(int res) { argument
229 sb.append(context.getText(res));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmMmiCode.java822 private void handlePasswordError(int res) { argument
826 sb.append(context.getText(res));
/frameworks/rs/cpp/
H A DRenderScript.cpp47 void *res = NULL; local
48 int status = pthread_join(mMessageThreadId, &res);
/frameworks/rs/driver/
H A DrsdCore.cpp322 void *res; local
324 pthread_join(dc->mWorkers.mThreadId[ct], &res);
/frameworks/rs/
H A DrsContext.cpp502 void *res; local
505 int status = pthread_join(mThreadId, &res);
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdCore.cpp304 void *res; local
306 pthread_join(dc->mWorkers.mThreadId[ct], &res);
/frameworks/support/renderscript/v8/rs_support/
H A DrsContext.cpp314 void *res; local
317 int status = pthread_join(mThreadId, &res);
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java524 public FragmentTransaction setBreadCrumbTitle(int res) { argument
525 mBreadCrumbTitleRes = res;
536 public FragmentTransaction setBreadCrumbShortTitle(int res) { argument
537 mBreadCrumbShortTitleRes = res;
H A DFragmentTransaction.java220 * @param res A string resource containing the title.
222 public abstract FragmentTransaction setBreadCrumbTitle(int res); argument
235 * @param res A string resource containing the title.
237 public abstract FragmentTransaction setBreadCrumbShortTitle(int res); argument

Completed in 2073 milliseconds

1234567891011>>