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

1 2 3 4 5 6 7 8 91011>>

  /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>
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
thumb2_vpool.s 65 # reuse padding slot A
67 # reuse d3
77 # reuse padding slot B
85 # reuse value of s4 in pool
87 # reuse high part of d1 in pool
89 # 8-byte entry reuse two 4-byte entries.
90 # d16 reuse s12, s13
92 # d17 should not reuse high part of d11 and s12.
vldconst.s 114 # reuse padding slot A
116 # reuse d3
126 # reuse padding slot B
134 # reuse value of s4 in pool
136 # reuse high part of d1 in pool
138 # 8-byte entry reuse two 4-byte entries.
139 # this reuse should only happen for
141 # d16 reuse s12, s13
143 # d17 should not reuse high part of d11 and s12.
  /external/testng/src/main/java/org/testng/
ITestClass.java 28 * @param reuse flag if a new set of instances must be returned
35 Object[] getInstances(boolean reuse);
  /packages/apps/TV/src/com/android/tv/tuner/source/
TunerTsStreamerManager.java 64 int sessionId, boolean reuse) {
77 TunerTsStreamer streamer = creator.create(sessionId, reuse);
94 mTunerHalManager.releaseTunerHal(hal, sessionId, reuse);
99 boolean reuse) {
117 mTunerHalManager.releaseTunerHal(hal, sessionId, reuse);
192 private TunerTsStreamer create(int sessionId, boolean reuse) {
217 mTunerHalManager.releaseTunerHal(hal, sessionId, mCancelled && reuse);
263 private void releaseTunerHal(TunerHal hal, int sessionId, boolean reuse) {
264 if (!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/nanopb-c/examples/network_server/
server.c 91 int reuse = 1; local
95 setsockopt(listenfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse));
  /device/google/contexthub/firmware/os/platform/stm32/flash_script/
Makefile 20 FLAGS += -mthumb -mcpu=cortex-m4 -march=armv7e-m -mno-thumb-interwork -fno-unwind-tables -fstack-reuse=all -Os -Wall -Werror -nostartfiles
  /art/runtime/
mem_map.h 54 // "reuse" allows re-mapping an address range from an existing mapping.
66 bool reuse,
95 /*reuse*/false,
102 // "reuse" allows us to create a view into an existing mapping where we do not take ownership of
115 bool reuse,
205 bool reuse,
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
pool_test.go 15 // Repeat so that at least one iteration gets reuse.
  /prebuilts/go/linux-x86/src/runtime/race/testdata/
pool_test.go 15 // Repeat so that at least one iteration gets reuse.
  /device/google/contexthub/firmware/build/
common_config.mk 33 -fstack-reuse=all \
  /device/google/contexthub/firmware/os/platform/native/
native.mk 20 FLAGS += -I. -fno-unwind-tables -fstack-reuse=all -ffunction-sections -fdata-sections -m32
  /prebuilts/go/darwin-x86/src/net/
sockopt_bsd.go 39 // Allow reuse of recently-used addresses.
49 // Allow reuse of recently-used ports.
sockopt_linux.go 24 // Allow reuse of recently-used addresses.
sockopt_solaris.go 24 // Allow reuse of recently-used addresses.
  /prebuilts/go/linux-x86/src/net/
sockopt_bsd.go 39 // Allow reuse of recently-used addresses.
49 // Allow reuse of recently-used ports.
sockopt_linux.go 24 // Allow reuse of recently-used addresses.
sockopt_solaris.go 24 // Allow reuse of recently-used addresses.
  /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
  /packages/apps/Settings/src/com/android/settings/datausage/
UnrestrictedDataAccess.java 176 preference.reuse();
295 public void reuse() { method in class:UnrestrictedDataAccess.AccessPreference
328 reuse(); method
336 reuse(); method
  /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;
449 if (0) VG_(printf)("wqthread_hijack reuse %s: tid %u, tst %p,
    [all...]

Completed in 644 milliseconds

1 2 3 4 5 6 7 8 91011>>