Searched refs:ret (Results 201 - 225 of 417) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/
H A DMediaCodecListOverrides.cpp341 AString ret; local
347 ret.append(setting);
349 return ret;
353 AString ret; local
364 ret.append(codec);
373 ret.append(setting);
375 ret.append(" </MediaCodec>\n");
377 return ret;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DDecTestBench.c94 H264SwDecRet ret; local
199 ret = H264SwDecInit(&decInst, disableOutputReordering);
200 if (ret != H264SWDEC_OK)
226 ret = H264SwDecDecode(decInst, &decInput, &decOutput);
228 switch(ret)
235 ret = H264SwDecGetInfo(decInst, &decInfo);
236 if (ret != H264SWDEC_OK)
298 if (ret == H264SWDEC_PIC_RDY)
/frameworks/base/libs/common_time/
H A Dcommon_time_config_service.cpp66 status_t ret = mTimeServer.getInterfaceBinding(tmp); local
68 return ret;
H A Ddiag_thread.cpp93 bool ret = false; local
122 ret = true;
124 if (!ret)
127 return ret;
/frameworks/base/libs/hwui/tests/unit/
H A Dmain.cpp132 int ret = RUN_ALL_TESTS(); local
134 return ret;
/frameworks/base/media/mca/filterfw/native/base/
H A Dutilities.h152 std::pair<typename Collection::iterator, bool> ret = local
154 return ret.second;
/frameworks/base/media/mca/filterpacks/native/base/
H A Dutilities.h152 std::pair<typename Collection::iterator, bool> ret = local
154 return ret.second;
/frameworks/av/camera/
H A DCameraBase.cpp123 binder::Status ret; local
126 ret = (cs.get()->*fnConnectService)(cl, cameraId, clientPackageName, clientUid,
129 if (ret.isOk() && c->mCamera != nullptr) {
134 (cs != nullptr) ? "Service not available" : ret.toString8().string());
H A DICamera.cpp212 status_t ret = reply.readInt32(); local
213 return ret;
223 status_t ret = reply.readInt32(); local
224 return ret;
235 status_t ret = reply.readInt32(); local
236 return ret;
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerFactory.cpp83 player_type ret = STAGEFRIGHT_PLAYER; \
93 ret = sFactoryMap.keyAt(i); \
99 ret = getDefaultPlayerType(); \
102 return ret;
/frameworks/av/media/libstagefright/codecs/gsm/dec/
H A DSoftGSM.cpp268 int ret = 0; local
274 ret += 160;
279 ret += 160;
281 return ret;
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DAccessibilityNodeInfoDumper.java219 StringBuffer ret = new StringBuffer();
244 ret.append(".");
246 ret.append(ch);
248 return ret.toString();
/frameworks/base/core/tests/coretests/src/android/net/
H A DSSLTest.java47 int ret = in.read(b);
/frameworks/base/tools/preload2/src/com/android/preload/ui/
H A DUI.java217 int ret = jfc.showSaveDialog(this);
218 if (ret == JFileChooser.APPROVE_OPTION) {
243 int ret = jfc.showOpenDialog(this);
244 if (ret == JFileChooser.APPROVE_OPTION) {
/frameworks/native/opengl/libs/GLES_CM/
H A Dgl.cpp269 const GLubyte * ret = egl_get_string_for_current_context(name); local
270 if (ret == NULL) {
272 ret = _c->glGetString(name);
274 return ret;
/frameworks/rs/java/tests/Refocus/src/com/android/rs/test/
H A DMainActivity.java196 File ret = findJpeg(files[i]);
197 if (ret != null) {
198 Log.v(TAG, "returning " + ret.getAbsolutePath());
199 return ret;
/frameworks/av/media/img_utils/src/
H A DTiffIfd.cpp103 status_t ret = OK; local
115 BAIL_ON_FAIL(out->write(&header, 0, 1), ret);
119 BAIL_ON_FAIL(mEntries[i]->writeTagInfo(valueOffset, out), ret);
125 BAIL_ON_FAIL(out->write(&footer, 0, 1), ret);
130 ZERO_TILL_WORD(out, calculateIfdSize(size), ret);
137 BAIL_ON_FAIL(mEntries[i]->writeData(out->getCurrentOffset(), out), ret);
150 return ret;
/frameworks/av/services/camera/libcameraservice/common/
H A DCameraModule.cpp277 int ret; local
279 ret = mModule->get_camera_info(cameraId, info);
284 return ret;
292 int ret = mModule->get_camera_info(cameraId, &rawInfo); local
294 if (ret != 0) {
295 return ret;
301 return ret;
/frameworks/rs/driver/runtime/arch/
H A Dgeneric.c705 float4 ret; local
706 ret.x = (m->m[0] * in.x) + (m->m[4] * in.y) + (m->m[8] * in.z) + (m->m[12] * in.w);
707 ret.y = (m->m[1] * in.x) + (m->m[5] * in.y) + (m->m[9] * in.z) + (m->m[13] * in.w);
708 ret.z = (m->m[2] * in.x) + (m->m[6] * in.y) + (m->m[10] * in.z) + (m->m[14] * in.w);
709 ret.w = (m->m[3] * in.x) + (m->m[7] * in.y) + (m->m[11] * in.z) + (m->m[15] * in.w);
710 return ret;
715 float4 ret; local
716 ret.x = (m->m[0] * in.x) + (m->m[4] * in.y) + (m->m[8] * in.z) + m->m[12];
717 ret.y = (m->m[1] * in.x) + (m->m[5] * in.y) + (m->m[9] * in.z) + m->m[13];
718 ret
725 float4 ret; local
735 float3 ret; local
744 float3 ret; local
[all...]
/frameworks/rs/driver/runtime/
H A Drs_matrix.c204 float2 ret; local
205 ret.x = (m->m[0] * in.x) + (m->m[2] * in.y);
206 ret.y = (m->m[1] * in.x) + (m->m[3] * in.y);
207 return ret;
240 rsMatrixLoadMultiply(rs_matrix4x4 *ret, const rs_matrix4x4 *lhs, const rs_matrix4x4 *rhs) { argument
261 rsMatrixLoad(ret, &result);
270 rsMatrixLoadMultiply(rs_matrix3x3 *ret, const rs_matrix3x3 *lhs, const rs_matrix3x3 *rhs) { argument
288 rsMatrixLoad(ret, &result);
297 rsMatrixLoadMultiply(rs_matrix2x2 *ret, const rs_matrix2x2 *lhs, const rs_matrix2x2 *rhs) { argument
312 rsMatrixLoad(ret,
[all...]
/frameworks/base/core/java/android/net/
H A DLocalSocketImpl.java83 int ret;
88 ret = read_native(myFd);
89 return ret;
110 int ret = readba_native(b, off, len, myFd);
112 return ret;
/frameworks/base/libs/hwui/renderthread/
H A DRenderThread.cpp47 RenderTask* ret = mHead; local
48 if (ret) {
49 mHead = ret->mNext;
53 ret->mNext = nullptr;
55 return ret;
/frameworks/native/cmds/dumpstate/
H A Dutils.cpp242 int fd, ret, save_errno; local
253 ret = TEMP_FAILURE_RETRY(read(fd, buffer, sizeof(buffer)));
257 if (ret < 0) {
308 int fd, ret, save_errno; local
318 ret = TEMP_FAILURE_RETRY(read(fd, buffer, sizeof(buffer)));
322 if (ret < 0) {
435 int ret = TEMP_FAILURE_RETRY(select(fd + 1, &read_set, NULL, NULL, &tm)); local
436 if (ret == -1) {
440 } else if (ret == 0) {
553 int ret local
605 int ret = TEMP_FAILURE_RETRY(sigtimedwait(&child_mask, NULL, &ts)); local
769 bool ret = waitpid_with_timeout(pid, timeout_seconds, &status); local
1092 int ret = poll(&pfd, 1, 5000); /* 5 sec timeout */ local
[all...]
/frameworks/native/opengl/tests/gl_perf/
H A Dfill_common.cpp232 uint32_t ret = 0xff000000; local
233 ret |= r & 0xff;
234 ret |= (g & 0xff) << 8;
235 ret |= (b & 0xff) << 16;
236 return ret;
/frameworks/av/media/libstagefright/codecs/vorbis/dec/
H A DSoftVorbis.cpp298 int ret = _vorbis_unpack_info(mVi, &bits); local
299 if (ret != 0) {
300 notify(OMX_EventError, OMX_ErrorUndefined, ret, NULL);
305 int ret = _vorbis_unpack_books(mVi, &bits); local
306 if (ret != 0) {
307 notify(OMX_EventError, OMX_ErrorUndefined, ret, NULL);

Completed in 583 milliseconds

1234567891011>>