Searched refs:reuse (Results 1 - 25 of 58) sorted by relevance

123

/external/apache-http/src/org/apache/http/conn/
H A DBasicEofSensorWatcher.java69 * @param reuse whether the connection should be re-used
72 boolean reuse) {
78 attemptReuse = reuse;
71 BasicEofSensorWatcher(ManagedClientConnection conn, boolean reuse) argument
H A DBasicManagedEntity.java78 * @param reuse whether the connection should be re-used
82 boolean reuse) {
90 this.attemptReuse = reuse;
80 BasicManagedEntity(HttpEntity entity, ManagedClientConnection conn, boolean reuse) argument
/external/nanopb-c/examples/network_server/
H A Dserver.c91 int reuse = 1; local
95 setsockopt(listenfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse));
/external/chromium_org/net/disk_cache/
H A Ddisk_cache_test_util.cc124 bool reuse)
126 reuse_(reuse ? 0 : 1) {
123 CallbackTest(MessageLoopHelper* helper, bool reuse) argument
H A Ddisk_cache_test_util.h88 // 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);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3basetree.h131 void (*reuse) (struct ANTLR3_BASE_TREE_struct * tree); member in struct:ANTLR3_BASE_TREE_struct
H A Dantlr3input.h144 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/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-x86-darwin.c364 " 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) {
381 wqthread_hijack(Addr self, Addr kport, Addr stackaddr, Addr workitem, Int reuse, Addr sp) argument
H A Dsyswrap-amd64-darwin.c417 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;
416 wqthread_hijack(Addr self, Addr kport, Addr stackaddr, Addr workitem, Int reuse, Addr sp) argument
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontree.c54 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
H A Dantlr3basetreeadaptor.c654 * because if it was a Nil Node, then we can reuse it now.
661 saveRoot->reuse(saveRoot);
678 // will not reuse it again, so we will reclaim it here. First we want to zero out
683 oldRootTree->reuse(oldRootTree);
709 // can reuse it rather than orphaning it!
729 saveRoot->reuse(saveRoot);
/external/chromium_org/third_party/skia/experimental/Networking/
H A DSkSockets.cpp35 int reuse = 1; local
37 if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(int)) < 0) {
/external/e2fsprogs/lib/ext2fs/
H A Dunix_io.c695 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/
H A DSkSockets.cpp35 int reuse = 1; local
37 if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(int)) < 0) {
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultRequestDirector.java190 ("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);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
H A DDefaultRequestDirector.java195 ("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);
/external/chromium_org/net/disk_cache/blockfile/
H A Dindex_table_v3_unittest.cc153 int reuse = 6; local
167 entry.SetReuse(reuse);
177 EXPECT_EQ(reuse, entry.GetReuse());
191 EXPECT_EQ(reuse, entry2.GetReuse());
201 reuse = 15; // 4 bits
/external/fonttools/Lib/fontTools/ttLib/
H A Dsfnt.py131 reuse = False
140 reuse = True
155 if not reuse:
/external/fonttools/Tools/fontTools/ttLib/
H A Dsfnt.py131 reuse = False
140 reuse = True
155 if not reuse:
/external/sonivox/arm-hybrid-22k/lib_src/
H A DARM-E_filter_gnu.s49 tmp0 .req r1 @ reuse register
H A DARM-E_interpolate_loop_gnu.s45 tmp0 .req r1 @reuse register
H A DARM-E_interpolate_noloop_gnu.s49 tmp0 .req r1 @ reuse register
H A DARM-E_voice_gain_gnu.s47 tmp2 .req r1 @ reuse register
/external/sonivox/arm-wt-22k/lib_src/
H A DARM-E_filter_gnu.s49 tmp0 .req r1 @ reuse register
H A DARM-E_interpolate_loop_gnu.s45 tmp0 .req r1 @reuse register

Completed in 5161 milliseconds

123