Searched defs:rtn (Results 1 - 14 of 14) sorted by relevance

/external/srec/shared/src/
H A DESR_Locale.c45 int rtn = 0; local
46 if (!lstrcasecmp(str, L("EN-US"), &rtn) && !rtn) *locale = ESR_LOCALE_EN_US;
47 else if (!lstrcasecmp(str, L("FR-FR"), &rtn) && !rtn) *locale = ESR_LOCALE_FR_FR;
48 else if (!lstrcasecmp(str, L("DE-DE"), &rtn) && !rtn) *locale = ESR_LOCALE_DE_DE;
49 else if (!lstrcasecmp(str, L("EN-GB"), &rtn) && !rtn) *locale = ESR_LOCALE_EN_GB;
50 else if (!lstrcasecmp(str, L("IT-IT"), &rtn)
[all...]
/external/valgrind/main/none/tests/
H A Dpth_once.c42 int rtn; local
44 if ((rtn = pthread_once(&welcome_once_block,
46 fprintf(stderr, "pthread_once failed with %d",rtn);
56 int *id_arg, thread_num, rtn; local
65 if (( rtn = pthread_create(&threads[thread_num],
70 fprintf(stderr, "pthread_create failed with %d",rtn);
/external/ipsec-tools/src/racoon/
H A Dsecurity.c217 int rtn = 1; local
233 rtn = avc_context_to_sid(sl, &slsid);
234 if (rtn != 0) {
240 rtn = avc_context_to_sid(range, &rangesid);
241 if (rtn != 0) {
254 rtn = avc_has_perm(slsid, rangesid, tclass, av, NULL, &avd);
255 if (rtn != 0) {
H A Disakmp_xauth.c798 int rtn = -1; local
1004 rtn = 0;
1024 return rtn;
1032 int rtn = -1; local
1145 rtn = 0;
1177 return rtn;
/external/valgrind/tsan/
H A Dts_offline.cc116 char rtn[kBufSize]; local
121 img, rtn, file, &line) == 5 &&
126 pc_info.rtn_name = rtn;
130 // Printf("***** PC %lx %s\n", pc, rtn);
233 char rtn[kBufSize]; local
244 if (sscanf(str.c_str(), "%s %s %d", rtn, file, &line) == 3 && pc != 0) {
248 pc_info.rtn_name = rtn;
343 string img, rtn, file; local
345 PcToStrings(pc, demangle, &img, &rtn, &file, &line);
346 return rtn;
[all...]
H A Dts_dynamorio.cc457 void ReplaceFunc3(void *img, void *rtn, string filter, void *fun_ptr) { argument
486 void *img = NULL, *rtn = NULL; local
488 ReplaceFunc3(img, rtn, "memchr", (AFUNPTR)Replace_memchr);
489 ReplaceFunc3(img, rtn, "strchr", (AFUNPTR)Replace_strchr);
490 ReplaceFunc3(img, rtn, "index", (AFUNPTR)Replace_strchr);
491 ReplaceFunc3(img, rtn, "strchrnul", (AFUNPTR)Replace_strchrnul);
492 ReplaceFunc3(img, rtn, "strrchr", (AFUNPTR)Replace_strrchr);
493 ReplaceFunc3(img, rtn, "rindex", (AFUNPTR)Replace_strrchr);
494 ReplaceFunc3(img, rtn, "strlen", (AFUNPTR)Replace_strlen);
495 ReplaceFunc3(img, rtn, "memcp
[all...]
H A Dts_pin.cc275 RTN rtn; local
280 rtn = RTN_FindByAddress(pc);
282 if (RTN_Valid(rtn)) {
284 ? Demangle(RTN_Name(rtn).c_str())
285 : RTN_Name(rtn);
286 *img_name = IMG_Name(SEC_Img(RTN_Sec(rtn)));
296 RTN rtn = RTN_FindByAddress(pc); local
297 if (RTN_Valid(rtn)) {
299 ? Demangle(RTN_Name(rtn).c_str())
300 : RTN_Name(rtn);
[all...]
H A Dts_valgrind_intercepts.c2221 PTH_FUNC(int, pthreadZuonce, void *ctl, void *rtn) { argument
2227 CALL_FN_W_WW(ret, fn, ctl, rtn);
H A Dthread_sanitizer.cc580 string rtn = NormalizeFunctionName(PcToRtnName(emb_trace[i], true)); local
581 if (CutStackBelowFunc(rtn))
5963 string img, rtn, file;
5965 PcToStrings(pc, false, &img, &rtn, &file, &line);
5966 if (rtn == "(below main)" || rtn == "ThreadSanitizerStartThread")
5969 funcs_mangled.push_back(rtn);
5973 if (rtn == "main")
8268 debug_rtn = PhaseDebugIsOn("rtn");
8443 Report("INFO: Whitelisted rtn
[all...]
/external/dhcpcd/
H A Dconfigure.c590 struct rt *rtp, *rtl, *rtn; local
597 for (rtn = rt; rtn != rtp; rtn = rtn->next) {
599 if (rtn->dest.s_addr == rtp->gate.s_addr)
603 cp2 = (const char *)&rtn->dest.s_addr;
604 cp3 = (const char *)&rtn->net.s_addr;
605 cplim = cp3 + sizeof(rtn->net.s_addr);
613 if (rtn !
640 struct rt *nrs = NULL, *dnr, *or, *rt, *rtn, *rtl, *lrt = NULL; local
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/directfb/
H A DSDL_DirectFB_video.c944 int rtn = surface->hwdata->surface->Flip (surface->hwdata->surface, NULL, 0); local
951 return rtn;
/external/srec/srec_jni/
H A Dandroid_speech_srec_Recognizer.cpp149 ESR_BOOL rtn = ESR_FALSE; local
150 checkEsrError(env, SR_RecognizerIsSetup((SR_Recognizer*)recognizer, &rtn));
151 return rtn;
199 ESR_BOOL rtn = ESR_FALSE; local
200 checkEsrError(env, SR_RecognizerHasSetupRules((SR_Recognizer*)recognizer, &rtn));
201 return rtn;
225 ESR_BOOL rtn = ESR_FALSE; local
227 checkEsrError(env, SR_RecognizerIsActiveRule((SR_Recognizer*)recognizer, (SR_Grammar*)grammar, rn, &rtn));
229 return rtn;
234 ESR_BOOL rtn local
272 ESR_BOOL rtn = ESR_FALSE; local
279 ESR_BOOL rtn = ESR_FALSE; local
286 ESR_BOOL rtn = ESR_FALSE; local
293 ESR_BOOL rtn = ESR_FALSE; local
300 ESR_BOOL rtn = ESR_FALSE; local
307 ESR_BOOL rtn = ESR_FALSE; local
331 char rtn[1000]; local
456 char rtn[1000]; local
526 char rtn[1000]; local
[all...]
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DGraphicsContextWinCE.cpp81 RotationTransform rtn; local
82 rtn.m_cosA = m_cosA;
83 rtn.m_sinA = -m_sinA;
84 rtn.m_preShiftX = m_postShiftX;
85 rtn.m_preShiftY = m_postShiftY;
86 rtn.m_postShiftX = m_preShiftX;
87 rtn.m_postShiftY = m_preShiftY;
88 return rtn;
/external/qemu/
H A Di386-dis.c683 op_rtn rtn; member in struct:dis386::__anon9657
3873 if (dp->op[i].rtn)
3874 (*dp->op[i].rtn) (dp->op[i].bytemode, sizeflag);
4310 if (dp->op[0].rtn)
4311 (*dp->op[0].rtn) (dp->op[0].bytemode, sizeflag);
4315 if (dp->op[1].rtn)
4316 (*dp->op[1].rtn) (dp->op[1].bytemode, sizeflag);

Completed in 1032 milliseconds