HomeSort by relevance Sort by last modified time
    Searched defs:old (Results 1 - 25 of 614) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tcpdump/
setsignal.c 77 struct sigaction old, new; local
83 if (sigaction(sig, &new, &old) < 0)
85 return (old.sa_handler);
  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
signal_segv_handler.cc 28 struct sigaction a, old; local
31 sigaction(SIGSEGV, &a, &old);
37 sigaction(SIGSEGV, &old, 0);
  /external/libcxx/test/std/depr/exception.unexpected/set.unexpected/
get_unexpected.pass.cpp 27 std::unexpected_handler old = std::get_unexpected(); local
29 assert(old);
37 (*old)();
set_unexpected.pass.cpp 26 std::unexpected_handler old = std::set_unexpected(f1); local
28 assert(old);
33 (*old)();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/exception.unexpected/set.unexpected/
get_unexpected.pass.cpp 27 std::unexpected_handler old = std::get_unexpected(); local
29 assert(old);
40 (*old)();
set_unexpected.pass.cpp 26 std::unexpected_handler old = std::set_unexpected(f1); local
28 assert(old);
36 (*old)();
  /external/elfutils/src/libdw/
libdw_alloc.c 66 Dwarf_OOM old = dbg->oom_handler; local
68 return old;
  /bionic/tests/
locale_test.cpp 113 locale_t old = uselocale(n); local
114 EXPECT_TRUE(old == original);
  /external/boringssl/src/util/bot/go/
env.py 33 old = os.environ.copy() variable
38 if old.get(key) != value:
  /external/clang/test/CodeGen/
atomic.c 5 int old; local
13 old = __sync_fetch_and_add(&val, 1);
16 old = __sync_fetch_and_sub(&valc, 2);
19 old = __sync_fetch_and_min(&val, 3);
22 old = __sync_fetch_and_max(&val, 4);
25 old = __sync_fetch_and_umin(&uval, 5u);
28 old = __sync_fetch_and_umax(&uval, 6u);
31 old = __sync_lock_test_and_set(&val, 7);
34 old = __sync_swap(&val, 8);
37 old = __sync_val_compare_and_swap(&val, 4, 1976)
    [all...]
  /external/mesa3d/src/gallium/winsys/i915/sw/
i915_sw_fence.c 27 struct i915_sw_fence *old = (struct i915_sw_fence *)*ptr; local
31 FREE(old);
  /dalvik/dexgen/src/com/android/dexgen/util/
LabeledList.java 40 * Constructs a new instance that is a copy of the old instance.
42 * @param old instance to copy
44 protected LabeledList(LabeledList old) {
45 super(old.size());
46 labelToIndex = old.labelToIndex.mutableCopy();
48 int sz = old.size();
51 Object one = old.get0(i);
149 LabeledItem old = (LabeledItem) getOrNull0(n); local
153 if (old != null) {
154 removeLabel(old.getLabel())
    [all...]
  /dalvik/dx/src/com/android/dx/util/
LabeledList.java 39 * Constructs a new instance that is a copy of the old instance.
41 * @param old instance to copy
43 public LabeledList(LabeledList old) {
44 super(old.size());
45 labelToIndex = old.labelToIndex.mutableCopy();
47 int sz = old.size();
50 Object one = old.get0(i);
175 LabeledItem old = (LabeledItem) getOrNull0(n); local
179 if (old != null) {
180 removeLabel(old.getLabel())
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
LabeledList.java 39 * Constructs a new instance that is a copy of the old instance.
41 * @param old instance to copy
43 public LabeledList(LabeledList old) {
44 super(old.size());
45 labelToIndex = old.labelToIndex.mutableCopy();
47 int sz = old.size();
50 Object one = old.get0(i);
175 LabeledItem old = (LabeledItem) getOrNull0(n); local
179 if (old != null) {
180 removeLabel(old.getLabel())
    [all...]
  /external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/
Log4jMDCAdapter.java 69 Map old = org.apache.log4j.MDC.getContext(); local
70 if (old != null) {
71 return new HashMap(old);
79 Map old = org.apache.log4j.MDC.getContext(); local
80 if (old == null) {
87 old.clear();
88 old.putAll(contextMap);
  /art/runtime/
handle.h 128 T* old = down_cast<T*>(ref->AsMirrorPtr()); local
130 return old;
  /external/dhcpcd/
bind.c 63 sigset_t old; local
70 sigprocmask(SIG_SETMASK, &full, &old);
115 sigprocmask(SIG_SETMASK, &old, NULL);
136 free(state->old);
137 state->old = state->new;
208 if (state->old) {
209 if (state->old->yiaddr == state->new->yiaddr &&
  /external/icu/icu4c/source/samples/ucnv/
flagcb.c 49 FromUFLAGContext *old, *cloned; local
55 old = (FromUFLAGContext*)context;
58 memcpy(cloned, old, sizeof(FromUFLAGContext));
61 printf("%p: my subcb=%p:%p\n", old, old->subCallback,
62 old->subContext);
  /external/libdrm/
xf86atomic.h 101 int c, old; local
103 while (c != unless && (old = atomic_cmpxchg(v, c, c + add)) != c)
104 c = old;
  /external/linux-tools-perf/src/tools/perf/util/
sigchain.c 7 sigchain_fun *old; member in struct:sigchain_signal
24 ALLOC_GROW(s->old, s->n + 1, s->alloc);
25 s->old[s->n] = signal(sig, f);
26 if (s->old[s->n] == SIG_ERR)
39 if (signal(sig, s->old[s->n - 1]) == SIG_ERR)
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_fence.h 79 struct lp_fence *old = *ptr; local
81 if (pipe_reference(&old->reference, &f->reference)) {
82 lp_fence_destroy(old);
  /external/mesa3d/src/gallium/drivers/svga/
svga_sampler_view.h 92 struct svga_sampler_view *old = *ptr; local
96 svga_destroy_sampler_view_priv(old);
  /external/mesa3d/src/gallium/winsys/i915/drm/
i915_drm_fence.c 40 struct i915_drm_fence *old = (struct i915_drm_fence *)*ptr; local
44 if (old->bo)
45 drm_intel_bo_unreference(old->bo);
46 FREE(old);
  /external/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeObject.cpp 25 const unsigned char* old = fStr.fBuffer; local
38 delete[] old;
  /external/v8/src/compiler/
node-cache.cc 56 // Insert the old entries into the new block.
58 Entry* old = &old_entries[i]; local
59 if (old->value_ != NULL) {
60 int hash = NodeCacheHash(old->key_);
66 entry->key_ = old->key_;
67 entry->value_ = old->value_;

Completed in 616 milliseconds

1 2 3 4 5 6 7 8 91011>>