HomeSort by relevance Sort by last modified time
    Searched refs:reuse (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /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;
  /external/skia/legacy/include/core/
SkChunkAlloc.h 25 /** Reuse all allocated blocks. This invalidates all returned
28 if you plan to reuse the allocator multiple times.
30 void 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/webkit/Source/JavaScriptCore/dfg/
DFGJITCodeGenerator.cpp 448 // locking into a register may free for reuse!
451 m_gpr = m_jit->reuse(op1.gpr());
460 // locking into a register may free for reuse!
464 m_gpr = m_jit->reuse(op1.gpr());
466 m_gpr = m_jit->reuse(op2.gpr());
475 // locking into a register may free for reuse!
478 m_gpr = m_jit->reuse(op1.gpr());
487 // locking into a register may free for reuse!
491 m_gpr = m_jit->reuse(op1.gpr());
493 m_gpr = m_jit->reuse(op2.gpr())
    [all...]
  /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 369 * @param reuse
374 public void setReuseAddress(boolean reuse) throws SocketException {
376 impl.setOption(SocketOptions.SO_REUSEADDR, Boolean.valueOf(reuse));
DatagramSocket.java 560 * @param reuse
565 public void setReuseAddress(boolean reuse) throws SocketException {
567 impl.setOption(SocketOptions.SO_REUSEADDR, Boolean.valueOf(reuse));
Socket.java 877 public void setReuseAddress(boolean reuse) throws SocketException {
879 impl.setOption(SocketOptions.SO_REUSEADDR, Boolean.valueOf(reuse));
    [all...]
  /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/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
antlr3basetreeadaptor.c 654 * 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/skia/legacy/src/core/
SkChunkAlloc.cpp 68 void SkChunkAlloc::reuse() { function in class:SkChunkAlloc
  /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
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleMonthAdapter.java 177 v.reuse();
  /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...]
  /packages/apps/Gallery2/src/com/android/photos/views/
TiledImageRenderer.java 135 public Bitmap getTile(int level, int x, int y, Bitmap reuse);
633 Bitmap reuse = sTilePool.get(mTileSize, mTileSize); local
634 mDecodedTile = mModel.getTile(mTileLevel, mX, mY, reuse);
  /external/v8/test/mjsunit/
codegen-coverage.js 55 // The add will spill x and reuse {eax,rax} for the result.
  /external/skia/legacy/src/ports/
SkXMLPullParser_expat.cpp 180 fImpl->fData.fAlloc.reuse();

Completed in 1608 milliseconds

1 2 3 4