Searched defs:reuse (Results 1 - 24 of 24) sorted by relevance

/external/apache-http/src/org/apache/http/conn/
H A DBasicEofSensorWatcher.java64 * @param reuse whether the connection should be re-used
67 boolean reuse) {
73 attemptReuse = reuse;
66 BasicEofSensorWatcher(ManagedClientConnection conn, boolean reuse) argument
H A DBasicManagedEntity.java73 * @param reuse whether the connection should be re-used
77 boolean reuse) {
85 this.attemptReuse = reuse;
75 BasicManagedEntity(HttpEntity entity, ManagedClientConnection conn, boolean reuse) argument
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.as114 public static function reuse(parent:CommonTreeNodeStream, start:int, stop:int):CommonTreeNodeStream { function
/external/skia/src/core/
H A DSkChunkAlloc.cpp68 void SkChunkAlloc::reuse() { function in class:SkChunkAlloc
/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/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
/external/chromium/net/disk_cache/
H A Ddisk_cache_test_util.cc128 CallbackTest::CallbackTest(bool reuse) : result_(-1), reuse_(reuse ? 0 : 1) {} argument
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-amd64-darwin.c387 Int reuse, Addr sp)
399 lock. At least that's clear for the 'reuse' case. The
400 non-reuse case? Dunno, perhaps it's a new thread the kernel
406 "stackaddr %#lx, workitem %#lx, reuse %d, sp %#lx\n",
407 self, kport, stackaddr, workitem, reuse, sp);
414 if (reuse) {
435 if (0) VG_(printf)("wqthread_hijack reuse %s: tid %d, tst %p, "
459 vex->guest_R8 = reuse;
466 if (reuse) {
386 wqthread_hijack(Addr self, Addr kport, Addr stackaddr, Addr workitem, Int reuse, Addr sp) argument
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
404 if (reuse) {
425 if (0) VG_(printf)("wqthread_hijack reuse %s: tid %d, tst %p, "
459 vex->guest_EDI = reuse;
467 if (reuse) {
381 wqthread_hijack(Addr self, Addr kport, Addr stackaddr, Addr workitem, Int reuse, Addr sp) argument
/external/e2fsprogs/lib/ext2fs/
H A Dunix_io.c628 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;
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGJITCodeGenerator.h101 GPRReg reuse(GPRReg reg) function in class:JSC::DFG::JITCodeGenerator
106 FPRReg reuse(FPRReg reg) function in class:JSC::DFG::JITCodeGenerator
881 // A mechanism is provided to attempt to reuse the registers
/external/chromium/third_party/libevent/
H A Dhttp.c200 static int bind_socket_ai(struct addrinfo *, int reuse);
201 static int bind_socket(const char *, u_short, int reuse);
1770 evcon->bind_address, evcon->bind_port, 0 /*reuse*/);
2257 if ((fd = bind_socket(address, port, 1 /*reuse*/)) == -1)
2682 bind_socket_ai(struct addrinfo *ai, int reuse) argument
2705 if (reuse) {
2764 bind_socket(const char *address, u_short port, int reuse) argument
2778 fd = bind_socket_ai(aitop, reuse);
/external/mksh/src/
H A Dmain.c1414 coproc_cleanup(int reuse) argument
1417 if (!reuse || coproc.readw < 0 || coproc.read < 0) {
/external/okhttp/src/test/java/libcore/net/http/
H A DURLConnectionTest.java432 // The pool will only reuse sockets if the SSL socket factories are the same.
1204 private void testRedirected(TransferKind transferKind, boolean reuse) throws Exception { argument
1221 if (reuse) {
1222 assertEquals("Expected connection reuse", 1, retry.getSequenceNumber());
1245 assertEquals("Expected connection reuse", 1, retry.getSequenceNumber());
1301 assertEquals("Expected connection reuse", 1, third.getSequenceNumber());
/external/openssl/ssl/
H A Dssltest.c327 fprintf(stderr," -reuse - use session-id reuse\n");
530 int number=1,reuse=0; local
617 else if (strcmp(*argv,"-reuse") == 0)
618 reuse=1;
812 if (!ssl2 && !ssl3 && !tls1 && number > 1 && !reuse && !force)
816 "or add one of -ssl2, -ssl3, -tls1, -reuse\n"
1132 if (!reuse) SSL_set_session(c_ssl,NULL);
/external/libxml2/
H A DHTMLparser.c6557 * @reuse: keep the context for reuse
6565 int options, int reuse)
6588 if (!reuse) {
6564 htmlDoRead(htmlParserCtxtPtr ctxt, const char *URL, const char *encoding, int options, int reuse) argument
H A Dparser.c8966 "reuse of the xmlns namespace name is forbidden\n",
9019 "reuse of the xmlns namespace name is forbidden\n",
14618 * @reuse: keep the context for reuse
14626 int options, int reuse)
14651 if (!reuse) {
14625 xmlDoRead(xmlParserCtxtPtr ctxt, const char *URL, const char *encoding, int options, int reuse) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.jobs_3.5.1.R36x_v20100824.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 517 milliseconds