/external/apache-http/src/org/apache/http/conn/ |
BasicEofSensorWatcher.java | 64 * @param reuse whether the connection should be re-used 67 boolean reuse) { 73 attemptReuse = reuse;
|
BasicManagedEntity.java | 73 * @param reuse whether the connection should be re-used 77 boolean reuse) { 85 this.attemptReuse = reuse;
|
/cts/suite/audio_quality/lib/src/ |
ClientSocket.cpp | 48 int reuse = 1; local 49 if (setsockopt(mSocket, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse)) == -1) {
|
/external/chromium_org/net/disk_cache/ |
disk_cache_test_util.h | 88 // update |helper|. If |reuse| is false and a callback is called more than 89 // once, or if |reuse| is true and a callback is called more than twice, an 91 CallbackTest(MessageLoopHelper* helper, bool reuse);
|
disk_cache_test_util.cc | 125 bool reuse) 127 reuse_(reuse ? 0 : 1) {
|
/art/runtime/ |
mem_map.h | 57 byte* addr, size_t byte_count, int prot, int flags, int fd, off_t start, bool reuse);
|
mem_map.cc | 106 int prot, int flags, int fd, off_t start, bool reuse) { 120 if (!reuse) { 121 // reuse means it is okay that it overlaps an existing page mapping.
|
/external/chromium/net/disk_cache/ |
disk_cache_test_util.h | 61 explicit CallbackTest(bool reuse);
|
disk_cache_test_util.cc | 128 CallbackTest::CallbackTest(bool reuse) : result_(-1), reuse_(reuse ? 0 : 1) {}
|
/libcore/luni/src/main/java/java/net/ |
ServerSocket.java | 370 * @param reuse 375 public void setReuseAddress(boolean reuse) throws SocketException { 377 impl.setOption(SocketOptions.SO_REUSEADDR, Boolean.valueOf(reuse));
|
DatagramSocket.java | 557 * @param reuse 562 public void setReuseAddress(boolean reuse) throws SocketException { 564 impl.setOption(SocketOptions.SO_REUSEADDR, Boolean.valueOf(reuse));
|
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3basetree.h | 131 void (*reuse) (struct ANTLR3_BASE_TREE_struct * tree); member in struct:ANTLR3_BASE_TREE_struct
|
antlr3input.h | 144 void (*reuse) (struct ANTLR3_INPUT_STREAM_struct * input, pANTLR3_UINT8 inString, ANTLR3_UINT32 size, pANTLR3_UINT8 name); member in struct:ANTLR3_INPUT_STREAM_struct
|
/external/chromium_org/v8/test/webkit/ |
number-cell-reuse.js | 25 "This test checks corner cases of the number cell reuse code. In particular, it checks for known cases where code generation for number cell reuse caused assertions to fail."
|
/external/valgrind/main/coregrind/m_syswrap/ |
syswrap-x86-darwin.c | 364 " push %edi\n" // reuse 382 Int reuse, Addr sp) 394 lock. At least that's clear for the 'reuse' case. The 395 non-reuse case? Dunno, perhaps it's a new thread the kernel 405 if (reuse) { 426 if (0) VG_(printf)("wqthread_hijack reuse %s: tid %d, tst %p, " 450 vex->guest_EDI = reuse; 457 if (reuse) {
|
syswrap-amd64-darwin.c | 417 Int reuse, Addr sp) 429 lock. At least that's clear for the 'reuse' case. The 430 non-reuse case? Dunno, perhaps it's a new thread the kernel 436 "stackaddr %#lx, workitem %#lx, reuse %d, sp %#lx\n", 437 self, kport, stackaddr, workitem, reuse, sp); 444 if (reuse) { 465 if (0) VG_(printf)("wqthread_hijack reuse %s: tid %d, tst %p, " 489 vex->guest_R8 = reuse; 496 if (reuse) {
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3commontree.c | 54 static void reuse (pANTLR3_BASE_TREE tree); 158 // If we have anything on the re claim stack, reuse that sucker first 164 // Cool we got something we could reuse, it will have been cleaned up by 317 tree->baseTree.reuse = reuse; 527 * then add it into the reuse stack. 530 reuse (pANTLR3_BASE_TREE tree) function
|
/external/chromium_org/net/disk_cache/v3/ |
disk_format_v3.h | 111 ENTRY_LOW_USE, // The entry has low reuse. 112 ENTRY_HIGH_USE, // The entry has high reuse. 125 uint64 reuse : 4; member in struct:disk_cache::IndexCell
|
/external/e2fsprogs/lib/ext2fs/ |
unix_io.c | 377 * Reuse a particular cache entry for another block. 628 struct unix_cache *cache, *reuse[READ_DIRECT_SIZE]; local 653 if ((cache = find_cached_block(data, block, &reuse[0]))) { 668 cache = reuse[0]; 684 if (find_cached_block(data, block+i, &reuse[i])) 695 cache = reuse[j]; 715 struct unix_cache *cache, *reuse; local 748 cache = find_cached_block(data, block, &reuse); 750 cache = reuse;
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/ |
armVCM4P10_DeblockingChroma_unsafe_s.s | 64 qDelta QN Q10.S16 ; reuse qDq0p0
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/ |
ImageLoader.java | 276 Bitmap reuse = cache.getBitmap(imageBounds.width(), local 278 options.inBitmap = reuse; 280 if (bitmap != reuse) { 281 cache.cache(reuse); // not reused, put back in cache
|
/frameworks/av/media/libmediaplayerservice/ |
MediaPlayerService.cpp | 1487 bool reuse = false; local [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-2193.js | 54 // Optimize the second closure, which should reuse the optimized code
|
/external/apache-http/src/org/apache/http/impl/client/ |
DefaultRequestDirector.java | 185 ("Connection reuse strategy may not be null."); 301 boolean reuse = false; 468 reuse = reuseStrategy.keepAlive(response, context); 469 if(reuse) { 479 if (reuse) { 511 if (reuse) 517 entity = new BasicManagedEntity(entity, managedConn, reuse); [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/ |
DefaultRequestDirector.java | 195 ("Connection reuse strategy may not be null."); 343 boolean reuse = false; 509 reuse = reuseStrategy.keepAlive(response, context); 510 if (reuse) { 528 if (reuse) { 562 if (reuse) 568 entity = new BasicManagedEntity(entity, managedConn, reuse); [all...] |