/external/srec/shared/src/ |
ESR_Locale.c | 45 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) && !rtn) *locale = ESR_LOCALE_IT_IT [all...] |
/external/valgrind/main/none/tests/ |
pth_once.c | 42 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);
|
/frameworks/base/core/java/android/speech/srec/ |
MicrophoneInputStream.java | 59 int rtn = AudioRecordRead(mAudioRecord, mOneByte, 0, 1); local 60 return rtn == 1 ? ((int)mOneByte[0] & 0xff) : -1;
|
/system/core/sh/ |
nodes.c | 327 char *rtn = funcstring; local 332 return rtn;
|
/external/ipsec-tools/src/racoon/ |
security.c | 217 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) {
|
isakmp_xauth.c | 875 int rtn = -1; local 1081 rtn = 0; 1101 return rtn; 1109 int rtn = -1; local 1222 rtn = 0; 1254 return rtn; [all...] |
/external/javassist/src/main/javassist/scopedpool/ |
SoftValueHashMap.java | 204 Object rtn = hash.put(key, SoftValueRef.create(key, value, queue)); local 205 if (rtn != null) 206 rtn = ((SoftReference)rtn).get(); 207 return rtn;
|
/frameworks/base/media/java/android/media/ |
AmrInputStream.java | 66 int rtn = read(mOneByte, 0, 1); local 67 return rtn == 1 ? (0xff & mOneByte[0]) : -1;
|
ResampleInputStream.java | 74 int rtn = read(mOneByte, 0, 1); local 75 return rtn == 1 ? (0xff & mOneByte[0]) : -1;
|
/external/valgrind/tsan/ |
ts_offline.cc | 116 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...] |
ts_dynamorio.cc | 457 void ReplaceFunc3(void *img, void *rtn, string filter, void *fun_ptr) { 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, "strrchr", (AFUNPTR)Replace_strrchr); 492 ReplaceFunc3(img, rtn, "rindex", (AFUNPTR)Replace_strrchr); 493 ReplaceFunc3(img, rtn, "strlen", (AFUNPTR)Replace_strlen); 494 ReplaceFunc3(img, rtn, "strcmp", (AFUNPTR)Replace_strcmp); 495 ReplaceFunc3(img, rtn, "memcpy", (AFUNPTR)Replace_memcpy) [all...] |
ts_pin.cc | 275 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)) { [all...] |
thread_sanitizer.cc | 575 string rtn = NormalizeFunctionName(PcToRtnName(emb_trace[i], true)); local 576 if (CutStackBelowFunc(rtn)) [all...] |
/packages/apps/VoiceDialer/src/com/android/voicedialer/ |
RecognizerLogger.java | 224 int rtn = inputStream.read(b, offset, length); local 225 if (rtn > 0) baos.write(b, offset, rtn); 226 return rtn; 230 int rtn = inputStream.read(b); local 231 if (rtn > 0) baos.write(b, 0, rtn); 232 return rtn; 236 int rtn = inputStream.read(); local 237 if (rtn > 0) baos.write(rtn) [all...] |
/external/dhcpcd/ |
configure.c | 590 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 != rtp 640 struct rt *nrs = NULL, *dnr, *or, *rt, *rtn, *rtl, *lrt = NULL; local [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/directfb/ |
SDL_DirectFB_video.c | 944 int rtn = surface->hwdata->surface->Flip (surface->hwdata->surface, NULL, 0); local 951 return rtn;
|
/external/srec/srec_jni/ |
android_speech_srec_Recognizer.cpp | 149 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 = ESR_FALSE 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/ |
GraphicsContextWinCE.cpp | 81 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; [all...] |
/external/qemu/ |
i386-dis.c | 683 op_rtn rtn; member in struct:dis386::__anon9920 [all...] |