/system/core/debuggerd/ |
crasher.c | 65 pthread_t thr; local 69 pthread_create(&thr, &attr, noisy, (void*) 'A'); 70 pthread_create(&thr, &attr, noisy, (void*) 'B'); 71 pthread_create(&thr, &attr, noisy, (void*) 'C'); 78 pthread_t thr; local 92 pthread_create(&thr, &attr, test_thread, 0);
|
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/ |
ThrowableTest.java | 96 Throwable thr = new Throwable(message, npe); local 97 assertEquals("message is incorrect.", message, thr.getMessage()); 98 assertEquals("cause is incorrect.", npe, thr.getCause()); 100 thr = new Throwable(null, npe); 101 assertNull("message is not null.", thr.getMessage()); 102 assertEquals("cause is incorrect.", npe, thr.getCause()); 104 thr = new Throwable(message, null); 105 assertEquals("message is incorrect.", message, thr.getMessage()); 106 assertNull("cause is not null.", thr.getCause()); 132 Throwable thr = new Throwable(npe) local 344 Throwable thr = new Throwable(message, npe); local 359 Throwable thr = new Throwable(); local 400 Throwable thr = new Throwable(npe); local [all...] |
ClassNotFoundExceptionTest.java | 69 Throwable thr = new Throwable(); local 70 ClassNotFoundException cnfe = new ClassNotFoundException(testMessage, thr); 72 assertEquals(thr, cnfe.getException()); 74 cnfe = new ClassNotFoundException(null, thr); 76 assertEquals(thr, cnfe.getException()); 101 Throwable thr = new Throwable(cause); local 102 e = new ClassNotFoundException("Message", thr); 103 assertEquals(thr, e.getCause()); 123 Throwable thr = new Throwable(cause); local 124 e = new ClassNotFoundException("Message", thr); [all...] |
ErrorTest.java | 68 Throwable thr = new Throwable(); local 70 Error err = new Error(message, thr); 72 assertEquals(thr, err.getCause()); 82 Throwable thr = new Throwable(); local 83 Error err = new Error(thr); 84 assertEquals(thr, err.getCause());
|
ExceptionTest.java | 68 Throwable thr = new Throwable(); local 70 Exception err = new Exception(message, thr); 72 assertEquals(thr, err.getCause()); 82 Throwable thr = new Throwable(); local 83 Exception err = new Exception(thr); 84 assertEquals(thr, err.getCause());
|
ThreadGroupTest.java | 390 for(MyThread thr:subThreads) { 391 thr.start(); 410 for(MyThread thr:subThreads) { 411 thr.interrupt(); 496 for(MyThread thr:subThreads) { 497 thr.start(); 514 for(MyThread thr:subThreads1) { 515 thr.start(); 523 for(MyThread thr:subThreads) { 524 thr.interrupt() [all...] |
/external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
adaptive_smooth_no_mmx.cpp | 48 thr = value of type int that is compared to the elements in Rec_Y to 119 luminance values to a threshold value ("thr") and then changing the 218 int thr, /* i */ 258 / the threshold value (thr) */ 273 /* sum of 0's and 1's (0 if pixel value is below thr, 1 if value 274 /is above thr) */ 275 *sign_V_ptr++ = INDEX(pelu, thr) + INDEX(pelc, thr) + INDEX(pell, thr); 287 /* sum of 0's and 1's (0 if pixel value is below thr, 1 if valu [all...] |
deringing_luma.cpp | 42 int thr, blks, incr; local 95 thr = thres[blks]; 98 thr, width, max_diff); 149 thr = thres[blks]; 152 thr, width, max_diff); 211 thr = thres[blks]; 214 thr, width, max_diff); 217 width, thr, max_diff);
|
post_proc.h | 37 #define INDEX(x,thr) (((x)>=thr)?1:0)
|
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
adaptive_smooth_no_mmx.cpp | 48 thr = value of type int that is compared to the elements in Rec_Y to 119 luminance values to a threshold value ("thr") and then changing the 218 int thr, /* i */ 258 / the threshold value (thr) */ 273 /* sum of 0's and 1's (0 if pixel value is below thr, 1 if value 274 /is above thr) */ 275 *sign_V_ptr++ = INDEX(pelu, thr) + INDEX(pelc, thr) + INDEX(pell, thr); 287 /* sum of 0's and 1's (0 if pixel value is below thr, 1 if valu [all...] |
deringing_luma.cpp | 41 int thr, blks, incr; local 94 thr = thres[blks]; 97 thr, width, max_diff); 148 thr = thres[blks]; 151 thr, width, max_diff); 210 thr = thres[blks]; 213 thr, width, max_diff); 216 width, thr, max_diff);
|
post_proc.h | 37 #define INDEX(x,thr) (((x)>=thr)?1:0)
|
/packages/apps/Mms/src/org/w3c/dom/smil/ |
ElementExclusiveTimeContainer.java | 25 * Controls the end of the container. Need to address thr id-ref value.
|
ElementParallelTimeContainer.java | 24 * Controls the end of the container. Need to address thr id-ref value.
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
AlarmService_Service.java | 55 Thread thr = new Thread(null, mTask, "AlarmService_Service"); local 56 thr.start();
|
/sdk/emulator/qtools/ |
stack_dump.cpp | 51 printf("%llu en thr %d %s %3d", time, base->getId(), type, stackLevel); 65 printf("%llu x thr %d %s %3d", time, base->getId(), type, stackLevel);
|
/external/opencore/codecs_v2/audio/aac/dec/src/ |
ps_bstr_decoding.cpp | 266 UInt32 thr; local 267 thr = ps_dec->noSubSamples - ps_dec->noEnv + env; 269 if (ps_dec->aEnvStartStop[env] > thr) 271 ps_dec->aEnvStartStop[env] = thr; 275 thr = ps_dec->aEnvStartStop[env-1] + 1; 277 if (ps_dec->aEnvStartStop[env] < thr) 279 ps_dec->aEnvStartStop[env] = thr;
|
/frameworks/base/media/libstagefright/codecs/aacdec/ |
ps_bstr_decoding.cpp | 266 UInt32 thr; local 267 thr = ps_dec->noSubSamples - ps_dec->noEnv + env; 269 if (ps_dec->aEnvStartStop[env] > thr) 271 ps_dec->aEnvStartStop[env] = thr; 275 thr = ps_dec->aEnvStartStop[env-1] + 1; 277 if (ps_dec->aEnvStartStop[env] < thr) 279 ps_dec->aEnvStartStop[env] = thr;
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaScannerService.java | 131 Thread thr = new Thread(null, this, "MediaScannerService"); local 132 thr.start();
|
/system/core/adb/ |
transport_local.c | 186 adb_thread_t thr; local 197 if(adb_thread_create(&thr, func, (void *)port)) {
|
/bionic/libc/bionic/ |
pthread.c | 1678 pthread_internal_t* thr; local [all...] |
/frameworks/base/services/java/com/android/server/ |
SystemServer.java | 580 Thread thr = new ServerThread(); local 581 thr.setName("android.server.ServerThread"); 582 thr.start();
|
/development/samples/MySampleRss/src/com/example/codelab/rssexample/ |
RssService.java | 87 Thread thr = new Thread(null, this, "rss_service_thread"); local 88 thr.start();
|
/frameworks/base/core/java/android/provider/ |
SocialContract.java | 66 * <code>thr:in-reply-to</code> element defined in RFC 4685.
|
/frameworks/base/libs/binder/ |
IPCThreadState.cpp | 483 alog << "BC_TRANSACTION thr " << (void*)pthread_self() << " / hand " 509 alog << "BR_REPLY thr " << (void*)pthread_self() << " / hand " 964 alog << "BR_TRANSACTION thr " << (void*)pthread_self() 998 alog << "BC_REPLY thr " << (void*)pthread_self() << " / obj " [all...] |