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

1 2 3 4 5 6 7

  /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));
  /art/runtime/
mem_map.h 57 // "reuse" allows re-mapping an address range from an existing mapping.
65 bool low_4gb, bool reuse, std::string* error_msg);
86 // mapping. "reuse" allows us to create a view into an existing
91 off_t start, bool reuse, const char* filename,
156 int prot, bool reuse) LOCKS_EXCLUDED(Locks::mem_maps_lock_);
mem_map.cc 260 bool low_4gb, bool reuse, std::string* error_msg) {
270 if (reuse) {
271 // reuse means it is okay that it overlaps an existing page mapping.
447 return new MemMap(name, addr, byte_count, addr, page_aligned_byte_count, 0, true /* reuse */);
451 int fd, off_t start, bool reuse, const char* filename,
456 // Note that we do not allow MAP_FIXED unless reuse == true, i.e we
458 if (reuse) {
459 // reuse means it is okay that it overlaps an existing page mapping.
507 prot, reuse);
537 size_t base_size, int prot, bool reuse)
    [all...]
  /libcore/luni/src/main/java/java/net/
ServerSocket.java 388 * @param reuse
393 public void setReuseAddress(boolean reuse) throws SocketException {
395 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/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/coregrind/m_syswrap/
syswrap-x86-darwin.c 363 " 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;
447 if (0) VG_(printf)("wqthread_hijack reuse %s: tid %d, tst %p,
    [all...]
syswrap-amd64-darwin.c 433 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, 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;
499 if (0) VG_(printf)("wqthread_hijack reuse %s: tid %d, tst %p, "
523 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/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/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DelegatingSSLSocket.java 248 @Override public void setReuseAddress(boolean reuse) throws SocketException {
249 delegate.setReuseAddress(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
  /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
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.cpp 1597 bool reuse = false; local
    [all...]
  /external/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 191 ("Connection reuse strategy may not be null.");
307 boolean reuse = false;
480 reuse = reuseStrategy.keepAlive(response, context);
481 if(reuse) {
491 if (reuse) {
523 if (reuse)
529 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...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
TiledImageRenderer.java 158 public Bitmap getTile(int level, int x, int y, Bitmap reuse);
686 Bitmap reuse = sTilePool.acquire(); local
687 if (reuse != null && reuse.getWidth() != mTileSize) {
688 reuse = null;
690 mDecodedTile = mModel.getTile(mTileLevel, mX, mY, reuse);

Completed in 1556 milliseconds

1 2 3 4 5 6 7