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

12

/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/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/nanopb-c/examples/network_server/
H A Dserver.c91 int reuse = 1; local
95 setsockopt(listenfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse));
/external/testng/src/main/java/org/testng/
H A DITestClass.java28 * @param reuse flag if a new set of instances must be returned
35 Object[] getInstances(boolean reuse); argument
/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/skia/src/sksl/
H A DSkSLString.cpp44 va_list reuse; local
45 va_copy(reuse, args);
51 VSNPRINTF(newBuffer.get(), size + 1, fmt, reuse);
/external/skqp/src/sksl/
H A DSkSLString.cpp43 va_list reuse; local
44 va_copy(reuse, args);
50 VSNPRINTF(newBuffer.get(), size + 1, fmt, reuse);
/external/testng/src/main/java/org/testng/junit/
H A DJUnitTestClass.java96 public Object[] getInstances(boolean reuse) { argument
/external/valgrind/coregrind/m_syswrap/
H A Dsyswrap-amd64-darwin.c433 Int reuse, Addr sp)
445 lock. At least that's clear for the 'reuse' case. The
446 non-reuse case? Dunno, perhaps it's a new thread the kernel
453 "stackaddr %#lx, workitem %#lx, reuse/flags %x, sp %#lx\n",
454 self, kport, stackaddr, workitem, (UInt)reuse, sp);
461 /* For 10.7 and earlier, |reuse| appeared to be used as a simple
466 Bool is_reuse = reuse != 0;
468 Bool is_reuse = (reuse & 0x20000 /* == WQ_FLAG_THREAD_REUSE */) != 0;
502 if (0) VG_(printf)("wqthread_hijack reuse %s: tid %u, tst %p, "
526 vex->guest_R8 = reuse;
432 wqthread_hijack(Addr self, Addr kport, Addr stackaddr, Addr workitem, Int reuse, Addr sp) argument
[all...]
H A Dsyswrap-x86-darwin.c363 " push %edi\n" // reuse
381 Int reuse, Addr sp)
393 lock. At least that's clear for the 'reuse' case. The
394 non-reuse case? Dunno, perhaps it's a new thread the kernel
401 "stackaddr %#lx, workitem %#lx, reuse/flags %x, sp %#lx\n",
402 self, kport, stackaddr, workitem, reuse, sp);
409 /* For 10.7 and earlier, |reuse| appeared to be used as a simple
414 Bool is_reuse = reuse != 0;
416 Bool is_reuse = (reuse & 0x20000 /* == WQ_FLAG_THREAD_REUSE */) != 0;
450 if (0) VG_(printf)("wqthread_hijack reuse
380 wqthread_hijack(Addr self, Addr kport, Addr stackaddr, Addr workitem, Int reuse, Addr sp) argument
[all...]
/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/skqp/experimental/Networking/
H A DSkSockets.cpp35 int reuse = 1; local
37 if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(int)) < 0) {
/external/testng/src/main/java/org/testng/internal/
H A DNoOpTestClass.java159 public Object[] getInstances(boolean reuse) { argument
/external/libdrm/etnaviv/
H A Detnaviv_priv.h130 int reuse; member in struct:etna_bo
/external/e2fsprogs/lib/ext2fs/
H A Dunix_io.c744 struct unix_cache *cache, *reuse[READ_DIRECT_SIZE]; local
769 if ((cache = find_cached_block(data, block, &reuse[0]))) {
784 cache = reuse[0];
800 if (find_cached_block(data, block+i, &reuse[i]))
811 cache = reuse[j];
831 struct unix_cache *cache, *reuse; local
864 cache = find_cached_block(data, block, &reuse);
866 cache = reuse;
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DDelegatingSSLSocket.java248 @Override public void setReuseAddress(boolean reuse) throws SocketException { argument
249 delegate.setReuseAddress(reuse);
/external/tensorflow/tensorflow/python/ops/
H A Dvariable_scope.py193 When passed in as the value for the `reuse` flag, AUTO_REUSE indicates that
232 initializer=None, regularizer=None, reuse=None,
241 Set `reuse` to `True` when you only want to reuse existing Variables.
242 Set `reuse` to `False` when you only want to create new Variables.
243 Set `reuse` to None (the default) or tf.AUTO_REUSE when you want
266 reuse: a Boolean, None, or tf.AUTO_REUSE. Controls reuse or creation
316 or when violating reuse during variable creation.
325 if not self._store_eager_variables and reuse
942 def reuse(self): member in class:VariableScope
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/math/
H A DBigDecimal.java74 /* 1998.07.01 improve byteaddsub to allow array reuse, etc. */
1022 // [we could reuse the new LHS for result in this case]
1186 // [reuse possible only after chop; accounting makes not worthwhile]
1534 // [we could reuse the new LHS for result in this case]
3397 // 1998.07.01 -- changed to allow destructive reuse of LHS
3402 private static final byte[] byteaddsub(byte a[], int avlen, byte b[], int bvlen, int m, boolean reuse) { argument
3425 if (reuse)
3427 reb = a; // OK to reuse A
3480 if (reuse)
3482 newarr = a; // OK to reuse
[all...]
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
H A DBigDecimal.java71 /* 1998.07.01 improve byteaddsub to allow array reuse, etc. */
1044 // [we could reuse the new LHS for result in this case]
1208 // [reuse possible only after chop; accounting makes not worthwhile]
1569 // [we could reuse the new LHS for result in this case]
3462 // 1998.07.01 -- changed to allow destructive reuse of LHS
3467 private static final byte[] byteaddsub(byte a[], int avlen, byte b[], int bvlen, int m, boolean reuse) { argument
3490 if (reuse)
3492 reb = a; // OK to reuse A
3545 if (reuse)
3547 newarr = a; // OK to reuse
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
H A DBigDecimal.java73 /* 1998.07.01 improve byteaddsub to allow array reuse, etc. */
1046 // [we could reuse the new LHS for result in this case]
1210 // [reuse possible only after chop; accounting makes not worthwhile]
1572 // [we could reuse the new LHS for result in this case]
3472 // 1998.07.01 -- changed to allow destructive reuse of LHS
3477 private static final byte[] byteaddsub(byte a[], int avlen, byte b[], int bvlen, int m, boolean reuse) { argument
3500 if (reuse)
3502 reb = a; // OK to reuse A
3555 if (reuse)
3557 newarr = a; // OK to reuse
[all...]
/external/testng/src/test/java/org/testng/internal/
H A DMethodInstanceTest.java169 public Object[] getInstances(boolean reuse) { argument
/external/curl/lib/
H A Durl.c1170 "Connection #%ld is still name resolving, can't reuse\n",
1182 infof(data, "Connection #%ld isn't open enough, can't reuse\n",
1274 particular one we can reuse one that was bound.
1325 "can't reuse\n",
1333 "can't reuse\n",
1351 looking so that we can reuse NTLM connections if
1352 possible. (Especially we must not reuse the same connection if
1467 "Found pending candidate for reuse and CURLOPT_PIPEWAIT is set\n");
3811 if(conn->bits.reuse)
3979 conn->bits.reuse
4026 bool reuse; local
[all...]

Completed in 2725 milliseconds

12