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

1 2

  /external/compiler-rt/lib/lsan/
lsan_thread.h 43 u32 ThreadCreate(u32 tid, uptr uid, bool detached);
lsan_thread.cc 80 u32 ThreadCreate(u32 parent_tid, uptr user_id, bool detached) {
81 return thread_registry->CreateThread(user_id, detached, parent_tid,
lsan_interceptors.cc 234 int detached = 0; local
235 pthread_attr_getdetachstate(attr, &detached);
242 int tid = ThreadCreate(GetCurrentThread(), *(uptr *)th, detached);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.cc 22 detached(false), parent_tid(0), next(0) {
49 CHECK_EQ(false, detached);
57 if (!detached)
73 detached = _detached;
121 u32 ThreadRegistry::CreateThread(uptr user_id, bool detached, u32 parent_tid,
152 tctx->SetCreated(user_id, total_threads_++, detached,
235 tctx->detached = true;
263 if (tctx->detached) {
sanitizer_thread_registry.h 47 bool detached; member in class:__sanitizer::ThreadContextBase
96 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, void *arg);
  /external/skia/src/core/
SkPictureFlat.h 514 SkFlatData* detached = this->detachScratch(); local
515 fHash.add(detached);
516 *fIndexedData.append() = detached;
518 return detached;
543 SkFlatData* detached = (SkFlatData*)fController->allocThrow(fScratch.bytesWritten()); local
548 memcpy(detached, scratch, fScratch.bytesWritten());
550 // We can now reuse fScratch, and detached will live until fController dies.
551 return detached;
  /external/skia/tests/
LayerRasterizerTest.cpp 100 SkAutoTUnref<SkLayerRasterizer> detached(builder.detachRasterizer());
105 REPORTER_ASSERT(reporter, largerCount == LayerRasterizerTester::CountLayers(*detached.get()));
114 const SkDeque& layersDetached = LayerRasterizerTester::GetLayers(*detached.get());
  /external/compiler-rt/lib/asan/
asan_win.cc 96 bool detached = false; // FIXME: how can we determine it on Windows? local
99 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
118 /* parent_tid */ -1, /* stack */ nullptr, /* detached */ true);
asan_thread.h 57 u32 parent_tid, StackTrace *stack, bool detached);
asan_thread.cc 85 bool detached) {
92 asanThreadRegistry().CreateThread(*reinterpret_cast<uptr *>(thread), detached, local
asan_interceptors.cc 239 int detached = 0; local
241 REAL(pthread_attr_getdetachstate)(attr, &detached);
249 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_posix.cc 283 bool detached;
407 ScopedThread::ScopedThread(bool detached, bool main) {
410 impl_->detached = detached;
416 &attr, detached ? PTHREAD_CREATE_DETACHED : PTHREAD_CREATE_JOINABLE);
427 if (!impl_->detached)
435 CHECK(!impl_->detached);
436 impl_->detached = true;
tsan_test_util.h 70 explicit ScopedThread(bool detached = false, bool main = false);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationPagerAdapter.java 67 * Similar to singleton mode, but once enabled, detached mode is permanent for this adapter.
171 * Returns true if singleton mode or detached mode have been enabled, or if the current cursor
182 // In detached mode, the pager is decoupled from the cursor. Nothing should rely on the
303 final boolean detached = b.getBoolean(BUNDLE_DETACHED_MODE);
304 setDetachedMode(detached);
345 private void setDetachedMode(boolean detached) {
346 if (mDetachedMode == detached) {
349 mDetachedMode = detached;
386 // If we are in detached mode, changes to the cursor are of no interest to us, but they may
401 // enable detached mode and do no more here. the fragment itself will figure ou
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_thread.cc 133 if (!detached) {
166 if (tctx->detached || tctx->status != ThreadStatusFinished)
233 int ThreadCreate(ThreadState *thr, uptr pc, uptr uid, bool detached) {
238 ctx->thread_registry->CreateThread(uid, detached, parent_tid, &args);
  /external/v8/src/js/
arraybuffer.js 74 // Checks for detached source/target ArrayBuffers are done inside of
array-iterator.js 112 // TODO(littledan): Check for detached TypedArray in these three methods
  /frameworks/base/media/java/android/media/
ImageReader.java 587 * @param image The image to be detached from this ImageReader.
589 * closed, or the has been detached, or has not yet been
605 throw new IllegalStateException("Image was already detached from this ImageReader");
798 private void setDetached(boolean detached) {
800 mIsDetached.getAndSet(detached);
    [all...]
  /toolchain/binutils/binutils-2.25/gprof/
cg_print.c 314 Arc *arc, *detached, sorted, *prev;
318 *arc the arc you have detached and are inserting.
319 *detached the rest of the arcs to be sorted.
324 for (arc = child->cg.parents; arc; arc = detached)
326 detached = arc->next_parent;
401 Arc *arc, *detached, sorted, *prev;
405 *arc the arc you have detached and are inserting.
406 *detached the rest of the arcs to be sorted.
411 for (arc = parent->cg.children; arc; arc = detached)
413 detached = arc->next_child
313 Arc *arc, *detached, sorted, *prev; local
400 Arc *arc, *detached, sorted, *prev; local
    [all...]
  /external/c-ares/
adig.c 823 struct ares_addr_node *detached = head; local
825 free(detached);
  /external/v8/test/mjsunit/es6/
typedarray-foreach.js 91 // for members on a detached TypedArray should throw, so really this
  /external/ppp/pppd/
main.c 150 int detached; /* have detached from terminal */ variable
803 if (detached)
826 detached = 1;
    [all...]
pppd.h 230 extern int detached; /* Have detached from controlling tty */
    [all...]
  /external/valgrind/drd/
drd_thread.h 88 * a corresponding OS thread that is detached.
154 void DRD_(thread_delete)(const DrdThreadId tid, Bool detached);
228 * thread that has not yet been joined or a detached thread.
  /external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/
CustomElements.js 489 detached(node);
491 detached(e);
494 function detached(element) {

Completed in 500 milliseconds

1 2