HomeSort by: relevance | last modified time | path
    Searched defs:detached (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_thread_arg_retval.h 43 void Create(bool detached, const Args& args, const CreateFn& fn) {
44 // No need to track detached threads with no args, but we will to do as it's
48 CreateLocked(thread, detached, args);
54 // Mark thread as done and stores retval or remove if detached. Should be
58 // Mark thread as detached or remove if done.
99 bool detached; member in struct:__sanitizer::ThreadArgRetval::Data
103 void CreateLocked(uptr thread, bool detached, const Args& args);
sanitizer_thread_registry.h 51 bool detached; member in class:__sanitizer::ThreadContextBase
109 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, void *arg);
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_interceptors.cc 381 int detached = 0; local
382 pthread_attr_getdetachstate(attr, &detached);
398 IsStateDetached(detached));
  /src/crypto/external/bsd/netpgp/dist/bindings/lua/
glue.c 192 { "detached", 1 },
198 /* sign_file(netpgp, f, output, armour, detached) */
206 int detached; local
218 detached = findtype(detachtypes, luaL_checkstring(L, 5));
221 detached);
226 /* clearsign_file(netpgp, f, output, armour, detached) */
234 int detached; local
243 detached = findtype(detachtypes, luaL_checkstring(L, 5));
246 detached);
  /src/external/bsd/tmux/dist/
cmd-new-session.c 82 int detached, already_attached, is_control = 0; local
154 detached = args_has(args, 'd');
156 detached = 1;
176 * detached, tty_open won't be called. It must be done before opening
180 if (!detached &&
196 if (!detached && !already_attached) {
239 if (!detached && !is_control) {
283 if (!detached)
323 if (!detached) {
345 if (!detached)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_interceptors.cc 211 int detached = 0; local
213 REAL(pthread_attr_getdetachstate)(attr, &detached);
231 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
asan_win.cc 149 bool detached = false; // FIXME: how can we determine it on Windows? local
152 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
asan_thread.cc 80 bool detached) {
87 asanThreadRegistry().CreateThread(*reinterpret_cast<uptr *>(thread), detached, local
280 /* stack */ nullptr, /* detached */ true);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_thread_registry.h 47 bool detached; member in class:__sanitizer::ThreadContextBase
102 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, void *arg);
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_interceptors.cpp 272 bool detached = [attr]() { local
284 hwasanThreadArgRetval().Create(detached, {callback, param}, [&]() -> uptr {
  /src/external/gpl3/gcc/dist/libsanitizer/lsan/
lsan_interceptors.cpp 422 template <bool Detached>
425 uptr tid = ThreadCreate(parent_tid, Detached);
448 bool detached = [attr]() { local
467 GetThreadArgRetval().Create(detached, {callback, param}, [&]() -> uptr {
469 th, attr, detached ? ThreadStartFunc<true> : ThreadStartFunc<false>,
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_interceptors.cpp 208 int detached = 0; local
210 REAL(pthread_attr_getdetachstate)(attr, &detached);
214 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
asan_thread.cpp 79 bool detached) {
86 asanThreadRegistry().CreateThread(*reinterpret_cast<uptr *>(thread), detached, local
294 /* stack */ nullptr, /* detached */ true);
asan_win.cpp 149 bool detached = false; // FIXME: how can we determine it on Windows? local
152 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
  /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
lsan_interceptors.cpp 455 int detached = 0; local
456 pthread_attr_getdetachstate(attr, &detached);
472 IsStateDetached(detached));
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_thread_registry.h 50 bool detached; member in class:__sanitizer::ThreadContextBase
106 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, void *arg);
  /src/crypto/external/bsd/netpgp/dist/src/netpgp/
netpgp.c 92 DETACHED,
144 {"detach", no_argument, NULL, DETACHED},
145 {"detached", no_argument, NULL, DETACHED},
176 int detached; /* use separate file */ member in struct:prog_t
311 p->detached);
406 case DETACHED:
407 p->detached = 1;
  /src/external/gpl3/binutils/dist/gprof/
cg_print.c 313 Arc *arc, *detached, sorted, *prev; local
317 *arc the arc you have detached and are inserting.
318 *detached the rest of the arcs to be sorted.
323 for (arc = child->cg.parents; arc; arc = detached)
325 detached = arc->next_parent;
400 Arc *arc, *detached, sorted, *prev; local
404 *arc the arc you have detached and are inserting.
405 *detached the rest of the arcs to be sorted.
410 for (arc = parent->cg.children; arc; arc = detached)
412 detached = arc->next_child
    [all...]
  /src/external/gpl3/binutils.old/dist/gprof/
cg_print.c 313 Arc *arc, *detached, sorted, *prev; local
317 *arc the arc you have detached and are inserting.
318 *detached the rest of the arcs to be sorted.
323 for (arc = child->cg.parents; arc; arc = detached)
325 detached = arc->next_parent;
400 Arc *arc, *detached, sorted, *prev; local
404 *arc the arc you have detached and are inserting.
405 *detached the rest of the arcs to be sorted.
410 for (arc = parent->cg.children; arc; arc = detached)
412 detached = arc->next_child
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_interceptors.cpp 246 bool detached = [attr]() { local
260 AsanThread *t = AsanThread::Create(sigset, current_tid, &stack, detached);
271 asanThreadArgRetval().Create(detached, {start_routine, arg}, [&]() -> uptr {
asan_win.cpp 161 bool detached = false; // FIXME: how can we determine it on Windows? local
164 AsanThread *t = AsanThread::Create(params, current_tid, &stack, detached);
  /src/crypto/external/bsd/openssl.old/dist/include/openssl/
pkcs7.h 120 int detached; member in struct:pkcs7_st
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_interceptors_posix.cpp 1048 int detached = 0; local
1049 REAL(pthread_attr_getdetachstate)(attr, &detached);
1065 p.tid = ThreadCreate(thr, pc, *(uptr *)th, IsStateDetached(detached));
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_interceptors_posix.cpp 1023 int detached = 0; local
1024 REAL(pthread_attr_getdetachstate)(attr, &detached);
1040 p.tid = ThreadCreate(thr, pc, *(uptr *)th, IsStateDetached(detached));
  /src/external/bsd/openldap/dist/libraries/libldap/
thr_debug.c 532 int detached; member in struct:__anon7683
555 #define thread_info_detached(t) ((t)->detached)
561 int detached )
582 t->detached = detached;
738 #if 0 /* Detached threads may exit after ldap_debug_thread_destroy(). */
820 detach ? " (detached)" : "",

Completed in 65 milliseconds

1 2