Home
last modified time | relevance | path

Searched refs:res (Results 1 – 25 of 2278) sorted by relevance

12345678910>>...92

/frameworks/av/services/camera/libcameraservice/api1/client2/
DStreamingProcessor.cpp63 status_t res; in setPreviewWindow() local
65 res = deletePreviewStream(); in setPreviewWindow()
66 if (res != OK) return res; in setPreviewWindow()
77 status_t res; in setRecordingWindow() local
79 res = deleteRecordingStream(); in setRecordingWindow()
80 if (res != OK) return res; in setRecordingWindow()
101 status_t res; in updatePreviewRequest() local
119 res = device->createDefaultRequest(CAMERA3_TEMPLATE_ZERO_SHUTTER_LAG, in updatePreviewRequest()
122 res = device->createDefaultRequest(CAMERA3_TEMPLATE_PREVIEW, in updatePreviewRequest()
126 res = device->createDefaultRequest(CAMERA2_TEMPLATE_PREVIEW, in updatePreviewRequest()
[all …]
DCaptureSequencer.cpp87 status_t res = -1; in waitUntilIdle() local
91 res = mStateChanged.waitRelative(mStateMutex, timeout); in waitUntilIdle()
92 if (res != OK) return res; in waitUntilIdle()
241 status_t res; in manageIdle() local
244 res = mStartCaptureSignal.waitRelative(mInputMutex, in manageIdle()
246 if (res == TIMED_OUT) break; in manageIdle()
257 status_t res = OK; in manageDone() local
275 res = INVALID_OPERATION; in manageDone()
278 res = client->getCameraDevice()->waitUntilDrained(); in manageDone()
279 if (res != OK) { in manageDone()
[all …]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dfastidct.cpp329 int res, res2; in idct_row1Inter() local
341 res = tmp + (pred_word & 0xFF); in idct_row1Inter()
342 CLIP_RESULT(res); in idct_row1Inter()
345 dst_word = (res2 << 8) | res; in idct_row1Inter()
346 res = tmp + ((pred_word >> 16) & 0xFF); in idct_row1Inter()
347 CLIP_RESULT(res); in idct_row1Inter()
348 dst_word |= (res << 16); in idct_row1Inter()
349 res = tmp + ((pred_word >> 24) & 0xFF); in idct_row1Inter()
350 CLIP_RESULT(res); in idct_row1Inter()
351 dst_word |= (res << 24); in idct_row1Inter()
[all …]
/frameworks/av/services/camera/libcameraservice/device3/
DCamera3OutputStream.cpp115 status_t res; in getBufferLocked() local
117 if ((res = getBufferPreconditionCheckLocked()) != OK) { in getBufferLocked()
118 return res; in getBufferLocked()
127 res = mBufferManager->getBufferForStream(getId(), getStreamSetId(), &gb, &fenceFd); in getBufferLocked()
128 if (res == OK) { in getBufferLocked()
132 res = mConsumer->attachBuffer(anb); in getBufferLocked()
133 if (res != OK) { in getBufferLocked()
135 __FUNCTION__, mId, strerror(-res), res); in getBufferLocked()
136 return res; in getBufferLocked()
140 } else if (res == ALREADY_EXISTS) { in getBufferLocked()
[all …]
/frameworks/compile/mclinker/lib/Script/
DBinaryOp.cpp29 IntOperand* res = result(); in eval() local
30 res->setValue(m_pOperand[0]->value() * m_pOperand[1]->value()); in eval()
31 return res; in eval()
37 IntOperand* res = result(); in eval() local
38 res->setValue(m_pOperand[0]->value() / m_pOperand[1]->value()); in eval()
39 return res; in eval()
45 IntOperand* res = result(); in eval() local
46 res->setValue(m_pOperand[0]->value() % m_pOperand[1]->value()); in eval()
47 return res; in eval()
53 IntOperand* res = result(); in eval() local
[all …]
/frameworks/av/services/camera/libcameraservice/api1/
DCamera2Client.cpp74 status_t res; in initialize() local
76 res = Camera2ClientBase::initialize(module); in initialize()
77 if (res != OK) { in initialize()
78 return res; in initialize()
84 res = l.mParameters.initialize(&(mDevice->info()), mDeviceVersion); in initialize()
85 if (res != OK) { in initialize()
87 __FUNCTION__, mCameraId, strerror(-res), res); in initialize()
375 binder::Status res = binder::Status::ok(); in disconnect() local
378 if (callingPid != mClientPid && callingPid != mServicePid) return res; in disconnect()
380 if (mDevice == 0) return res; in disconnect()
[all …]
/frameworks/av/services/camera/libcameraservice/
DCameraFlashlight.cpp56 status_t res = OK; in createFlashlightControl() local
71 res = mCameraModule->getCameraInfo( in createFlashlightControl()
73 if (res) { in createFlashlightControl()
76 return res; in createFlashlightControl()
110 status_t res = OK; in setTorchMode() local
132 res = createFlashlightControl(cameraId); in setTorchMode()
133 if (res) { in setTorchMode()
134 return res; in setTorchMode()
136 res = mFlashControl->setTorchMode(cameraId, enabled); in setTorchMode()
137 return res; in setTorchMode()
[all …]
/frameworks/wilhelm/tests/mimeUri/
DslesTestGetPositionUri.cpp69 SLresult res = (*caller)->GetFillLevel(caller, &level); CheckErr(res); in PrefetchEventCallback() local
72 res = (*caller)->GetPrefetchStatus(caller, &status); CheckErr(res); in PrefetchEventCallback()
96 SLresult res; in PlayEventCallback() local
100 res = (*caller)->GetPosition(caller, &posMsec); CheckErr(res); in PlayEventCallback()
113 res = (*caller)->GetPosition(caller, &posMsec); CheckErr(res); in PlayEventCallback()
118 res = (*caller)->GetPosition(caller, &posMsec); CheckErr(res); in PlayEventCallback()
131 SLresult res; in TestGetPositionUri() local
156 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf); in TestGetPositionUri()
157 CheckErr(res); in TestGetPositionUri()
171 res = (*EngineItf)->CreateOutputMix(EngineItf, &OutputMix, 0, in TestGetPositionUri()
[all …]
DslesTestSlowDownUri.cpp75 SLresult res = (*pRateItf)->GetRate(pRateItf, &rate); CheckErr(res); in PlayEventCallback() local
76 res = (*pRateItf)->GetRateRange(pRateItf, 0, &minRate, &maxRate, &stepSize, &capa); in PlayEventCallback()
77 CheckErr(res); in PlayEventCallback()
84 res = (*pRateItf)->SetRate(pRateItf, rate); CheckErr(res); in PlayEventCallback()
85 if (res == SL_RESULT_FEATURE_UNSUPPORTED) { in PlayEventCallback()
88 CheckErr(res); in PlayEventCallback()
182 SLresult res; in TestSlowDownUri() local
203 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf); CheckErr(res); in TestSlowDownUri()
214 res = (*EngineItf)->CreateOutputMix(EngineItf, &OutputMix, 0, in TestSlowDownUri()
215 iidArray, required); CheckErr(res); in TestSlowDownUri()
[all …]
DslesTestManyPlayers.cpp76 SLresult res; in PrefetchEventCallback() local
79 res = (*caller)->GetFillLevel(caller, &level); CheckErrPlyr(res, *pPlayerId); in PrefetchEventCallback()
82 res = (*caller)->GetPrefetchStatus(caller, &status); CheckErrPlyr(res, *pPlayerId); in PrefetchEventCallback()
107 SLresult res; in PlayEventCallback() local
116 res = (*caller)->GetPosition(caller, &pMsec); CheckErrPlyr(res, *pPlayerId); in PlayEventCallback()
123 res = (*caller)->GetPosition(caller, &pMsec); CheckErrPlyr(res, *pPlayerId); in PlayEventCallback()
132 SLresult res; in TestSetup() local
139 res = slCreateEngine( &slEngine, 1, EngineOption, 0, NULL, NULL); in TestSetup()
140 CheckErr(res); in TestSetup()
142 res = (*slEngine)->Realize(slEngine, SL_BOOLEAN_FALSE); in TestSetup()
[all …]
DslesTestPlayUri.cpp129 SLresult res; in TestPlayUri() local
149 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf); in TestPlayUri()
150 CheckErr(res); in TestPlayUri()
164 res = (*EngineItf)->CreateOutputMix(EngineItf, &OutputMix, 0, in TestPlayUri()
165 iidArray, required); CheckErr(res); in TestPlayUri()
168 res = (*OutputMix)->Realize(OutputMix, SL_BOOLEAN_FALSE); in TestPlayUri()
169 CheckErr(res); in TestPlayUri()
188 res = (*EngineItf)->CreateAudioPlayer(EngineItf, &player, &audioSource, &audioSink, in TestPlayUri()
189 MAX_NUMBER_INTERFACES, iidArray, required); CheckErr(res); in TestPlayUri()
192 res = (*player)->Realize(player, SL_BOOLEAN_FALSE); CheckErr(res); in TestPlayUri()
[all …]
DslesTestLoopUri.cpp126 SLresult res; in TestLoopUri() local
146 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf); in TestLoopUri()
147 CheckErr(res); in TestLoopUri()
158 res = (*EngineItf)->CreateOutputMix(EngineItf, &OutputMix, 0, in TestLoopUri()
159 iidArray, required); CheckErr(res); in TestLoopUri()
162 res = (*OutputMix)->Realize(OutputMix, SL_BOOLEAN_FALSE); in TestLoopUri()
163 CheckErr(res); in TestLoopUri()
186 res = (*EngineItf)->CreateAudioPlayer(EngineItf, &player, &audioSource, &audioSink, in TestLoopUri()
187 MAX_NUMBER_INTERFACES, iidArray, required); CheckErr(res); in TestLoopUri()
190 res = (*player)->Realize(player, SL_BOOLEAN_FALSE); CheckErr(res); in TestLoopUri()
[all …]
/frameworks/wilhelm/tests/examples/
DslesTestSawtoothBufferQueue.cpp59 void CheckErr( SLresult res ) in CheckErr() argument
61 if ( res != SL_RESULT_SUCCESS ) in CheckErr()
63 fprintf(stdout, "%u SL failure, exiting\n", res); in CheckErr()
88 SLresult res; in BufferQueueCallback() local
95 res = (*queueItf)->Enqueue(queueItf, (void*) pCntxt->pData, in BufferQueueCallback()
97 CheckErr(res); in BufferQueueCallback()
109 SLresult res; in TestPlaySawtoothBufferQueue() local
135 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf); in TestPlaySawtoothBufferQueue()
136 CheckErr(res); in TestPlaySawtoothBufferQueue()
149 res = (*EngineItf)->CreateOutputMix(EngineItf, &OutputMix, 0, in TestPlaySawtoothBufferQueue()
[all …]
DslesTestDecodeAac.cpp209 SLresult res = (*caller)->GetPosition(caller, &position); in PlayCallback() local
210 ExitOnError(res); in PlayCallback()
241 SLresult res; in AndroidBufferQueueCallback() local
273 res = (*caller)->Enqueue(caller, (void *)&kEosBufferCntxt /*pBufferContext*/, in AndroidBufferQueueCallback()
277 ExitOnError(res); in AndroidBufferQueueCallback()
288 res = (*caller)->Enqueue(caller, NULL /*pBufferContext*/, in AndroidBufferQueueCallback()
290 ExitOnError(res); in AndroidBufferQueueCallback()
332 SLresult res; in DecPlayCallback() local
333 res = (*queueItf)->Enqueue(queueItf, pCntxt->pData, BUFFER_SIZE_IN_BYTES); in DecPlayCallback()
334 ExitOnError(res); in DecPlayCallback()
[all …]
/frameworks/wilhelm/tests/
DmimeUri_test.cpp63 void CheckErr( SLresult res ) in CheckErr() argument
65 if ( res != SL_RESULT_SUCCESS ) { in CheckErr()
66 fprintf(stderr, "%u SL failure, exiting\n", res); in CheckErr()
103 SLresult res; in TestPlayUri() local
123 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf); in TestPlayUri()
124 CheckErr(res); in TestPlayUri()
138 res = (*EngineItf)->CreateOutputMix(EngineItf, &OutputMix, 0, in TestPlayUri()
139 iidArray, required); CheckErr(res); in TestPlayUri()
142 res = (*OutputMix)->Realize(OutputMix, SL_BOOLEAN_FALSE); in TestPlayUri()
143 CheckErr(res); in TestPlayUri()
[all …]
/frameworks/wilhelm/tests/native-media/jni/
Dnative-media-jni.c102 XAresult res; in AndroidBufferQueueCallback() local
117 res = (*playerBQItf)->Clear(playerBQItf); in AndroidBufferQueueCallback()
118 assert(XA_RESULT_SUCCESS == res); in AndroidBufferQueueCallback()
196 res = (*caller)->Enqueue(caller, NULL /*pBufferContext*/, in AndroidBufferQueueCallback()
201 assert(XA_RESULT_SUCCESS == res); in AndroidBufferQueueCallback()
209 res = (*caller)->Enqueue(caller, (void *)&kEosBufferCntxt /*pBufferContext*/, in AndroidBufferQueueCallback()
214 assert(XA_RESULT_SUCCESS == res); in AndroidBufferQueueCallback()
242 XAresult res; in StreamChangeCallback() local
244 res = (*caller)->QueryStreamType(caller, streamIndex, &domain); in StreamChangeCallback()
245 assert(XA_RESULT_SUCCESS == res); in StreamChangeCallback()
[all …]
/frameworks/base/rs/java/android/renderscript/
DDouble3.java51 Double3 res = new Double3(); in add() local
52 res.x = a.x + b.x; in add()
53 res.y = a.y + b.y; in add()
54 res.z = a.z + b.z; in add()
56 return res; in add()
89 Double3 res = new Double3(); in add() local
90 res.x = a.x + b; in add()
91 res.y = a.y + b; in add()
92 res.z = a.z + b; in add()
94 return res; in add()
[all …]
DDouble4.java54 Double4 res = new Double4(); in add() local
55 res.x = a.x + b.x; in add()
56 res.y = a.y + b.y; in add()
57 res.z = a.z + b.z; in add()
58 res.w = a.w + b.w; in add()
60 return res; in add()
95 Double4 res = new Double4(); in add() local
96 res.x = a.x + b; in add()
97 res.y = a.y + b; in add()
98 res.z = a.z + b; in add()
[all …]
DFloat4.java54 Float4 res = new Float4(); in add() local
55 res.x = a.x + b.x; in add()
56 res.y = a.y + b.y; in add()
57 res.z = a.z + b.z; in add()
58 res.w = a.w + b.w; in add()
60 return res; in add()
95 Float4 res = new Float4(); in add() local
96 res.x = a.x + b; in add()
97 res.y = a.y + b; in add()
98 res.z = a.z + b; in add()
[all …]
DFloat3.java51 Float3 res = new Float3(); in add() local
52 res.x = a.x + b.x; in add()
53 res.y = a.y + b.y; in add()
54 res.z = a.z + b.z; in add()
56 return res; in add()
89 Float3 res = new Float3(); in add() local
90 res.x = a.x + b; in add()
91 res.y = a.y + b; in add()
92 res.z = a.z + b; in add()
94 return res; in add()
[all …]
DDouble2.java49 Double2 res = new Double2(); in add() local
50 res.x = a.x + b.x; in add()
51 res.y = a.y + b.y; in add()
53 return res; in add()
84 Double2 res = new Double2(); in add() local
85 res.x = a.x + b; in add()
86 res.y = a.y + b; in add()
88 return res; in add()
109 Double2 res = new Double2(); in sub() local
110 res.x = a.x - b.x; in sub()
[all …]
DFloat2.java48 Float2 res = new Float2(); in add() local
49 res.x = a.x + b.x; in add()
50 res.y = a.y + b.y; in add()
52 return res; in add()
83 Float2 res = new Float2(); in add() local
84 res.x = a.x + b; in add()
85 res.y = a.y + b; in add()
87 return res; in add()
108 Float2 res = new Float2(); in sub() local
109 res.x = a.x - b.x; in sub()
[all …]
/frameworks/base/core/tests/coretests/src/android/content/res/
DConfigurationBoundResourceCacheTest.java17 package android.content.res;
44 final Resources res = getActivity().getResources(); in testGetEmpty() local
45 assertNull(mCache.getInstance(-1, res, null)); in testGetEmpty()
51 final Resources res = getActivity().getResources(); in testSetGet() local
52 assertEquals(5f, mCache.getInstance(1, res, null)); in testSetGet()
53 assertNotSame(5f, mCache.getInstance(1, res, null)); in testSetGet()
54 assertEquals(null, mCache.getInstance(1, res, getActivity().getTheme())); in testSetGet()
60 final Resources res = getActivity().getResources(); in testSetGetThemed() local
61 assertEquals(null, mCache.getInstance(1, res, null)); in testSetGetThemed()
62 assertEquals(5f, mCache.getInstance(1, res, getActivity().getTheme())); in testSetGetThemed()
[all …]
/frameworks/av/camera/tests/
DCameraBinderTests.cpp295 binder::Status res; in TEST() local
298 res = service->getNumberOfCameras(hardware::ICameraService::CAMERA_TYPE_ALL, &numCameras); in TEST()
299 EXPECT_TRUE(res.isOk()) << res; in TEST()
304 res = service->addListener(listener); in TEST()
305 EXPECT_TRUE(res.isOk()) << res; in TEST()
311 res = service->supportsCameraApi(i, in TEST()
313 EXPECT_TRUE(res.isOk()) << res; in TEST()
322 res = service->getCameraCharacteristics(i, &metadata); in TEST()
323 EXPECT_TRUE(res.isOk()) << res; in TEST()
336 res = service->connectDevice(callbacks, i, String16("meeeeeeeee!"), in TEST()
[all …]
/frameworks/wilhelm/tests/sandbox/streamSource/
DslesTestPlayStream.cpp111 SLresult res = (*caller)->Enqueue(caller, NULL /*pBufferContext*/, in AndroidBufferQueueCallback() local
114 CheckErr(res); in AndroidBufferQueueCallback()
187 SLresult res; in TestPlayStream() local
211 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf); in TestPlayStream()
212 CheckErr(res); in TestPlayStream()
226 res = (*EngineItf)->CreateOutputMix(EngineItf, &OutputMix, 0, in TestPlayStream()
227 iidArray, required); CheckErr(res); in TestPlayStream()
230 res = (*OutputMix)->Realize(OutputMix, SL_BOOLEAN_FALSE); in TestPlayStream()
231 CheckErr(res); in TestPlayStream()
250 res = (*EngineItf)->CreateAudioPlayer(EngineItf, &player, &audioSource, &audioSink, in TestPlayStream()
[all …]

12345678910>>...92