/external/apache-http/src/org/apache/http/conn/ |
BasicEofSensorWatcher.java | 69 * @param reuse whether the connection should be re-used 72 boolean reuse) { 78 attemptReuse = reuse;
|
BasicManagedEntity.java | 78 * @param reuse whether the connection should be re-used 82 boolean reuse) { 90 this.attemptReuse = reuse;
|
/frameworks/base/core/java/android/animation/ |
PointFEvaluator.java | 41 * Constructs a PointFEvaluator that modifies and returns <code>reuse</code> 48 * @param reuse A PointF to be modified and returned by evaluate. 50 public PointFEvaluator(PointF reuse) { 51 mPoint = reuse; 62 * this PointFEvaluator, the object returned will be the <code>reuse</code>
|
/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/nanopb-c/examples/network_server/ |
server.c | 91 int reuse = 1; local 95 setsockopt(listenfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse));
|
/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 | 124 bool reuse) 126 reuse_(reuse ? 0 : 1) {
|
/art/runtime/ |
mem_map.h | 78 // mapping. "reuse" allows us to create a view into an existing 84 off_t start, bool reuse, const char* filename, 146 int prot, bool reuse) LOCKS_EXCLUDED(Locks::mem_maps_lock_);
|
mem_map.cc | 387 off_t start, bool reuse, const char* filename, 392 // Note that we do not allow MAP_FIXED unless reuse == true, i.e we 394 if (reuse) { 395 // reuse means it is okay that it overlaps an existing page mapping. 447 prot, reuse); 477 size_t base_size, int prot, bool reuse) 479 prot_(prot), reuse_(reuse) {
|
/libcore/luni/src/main/java/java/net/ |
ServerSocket.java | 387 * @param reuse 392 public void setReuseAddress(boolean reuse) throws SocketException { 394 impl.setOption(SocketOptions.SO_REUSEADDR, Boolean.valueOf(reuse));
|
DatagramSocket.java | 609 * @param reuse 614 public void setReuseAddress(boolean reuse) throws SocketException { 616 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 437 "stackaddr %#lx, workitem %#lx, reuse/flags %x, sp %#lx\n", 438 self, kport, stackaddr, workitem, reuse, sp); 445 /* For 10.7 and earlier, |reuse| appeared to be used as a simple 450 Bool is_reuse = reuse != 0; 452 Bool is_reuse = (reuse & 0x20000 /* == WQ_FLAG_THREAD_REUSE */) != 0; 476 if (0) VG_(printf)("wqthread_hijack reuse %s: tid %d, tst %p, " 500 vex->guest_R8 = reuse; [all...] |
/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/third_party/skia/experimental/Networking/ |
SkSockets.cpp | 35 int reuse = 1; local 37 if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(int)) < 0) {
|
/external/e2fsprogs/lib/ext2fs/ |
unix_io.c | 383 * Reuse a particular cache entry for another block. 695 struct unix_cache *cache, *reuse[READ_DIRECT_SIZE]; local 720 if ((cache = find_cached_block(data, block, &reuse[0]))) { 735 cache = reuse[0]; 751 if (find_cached_block(data, block+i, &reuse[i])) 762 cache = reuse[j]; 782 struct unix_cache *cache, *reuse; local 815 cache = find_cached_block(data, block, &reuse); 817 cache = reuse;
|
/external/skia/experimental/Networking/ |
SkSockets.cpp | 35 int reuse = 1; local 37 if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(int)) < 0) {
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/ |
armVCM4P10_DeblockingChroma_unsafe_s.s | 78 qDelta QN Q10.S16 ; reuse qDq0p0
|
/frameworks/base/core/java/android/widget/ |
SimpleMonthAdapter.java | 166 v.reuse();
|
/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
|
/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 | 190 ("Connection reuse strategy may not be null."); 306 boolean reuse = false; 473 reuse = reuseStrategy.keepAlive(response, context); 474 if(reuse) { 484 if (reuse) { 516 if (reuse) 522 entity = new BasicManagedEntity(entity, managedConn, reuse); [all...] |