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

1 2 3 4

  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_thread_arg_retval.cpp 20 void ThreadArgRetval::CreateLocked(uptr thread, bool detached,
26 t.detached = detached;
44 if (t->second.detached) {
45 // Retval of detached thread connot be retrieved.
57 CHECK(!t->second.detached);
68 CHECK(!t->second.detached);
76 CHECK(!t->second.detached);
78 // We can't retrive retval after detached thread finished.
82 t->second.detached = true
    [all...]
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);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
gcorebg.exp 45 proc test_body { detached } {
52 set res [remote_spawn target "$binfile $detached $GCORE $GDB_DATA_DIRECTORY $corefile"]
80 foreach_with_prefix detached { detached standard } {
81 test_body $detached
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
gcorebg.exp 45 proc test_body { detached } {
56 set res [remote_spawn target "$binfile $detached \"$gcore_cmd\" $corefile"]
84 foreach_with_prefix detached { detached standard } {
85 test_body $detached
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_fuchsia.cc 92 uptr user_id, bool detached,
100 asanThreadRegistry().CreateThread(user_id, detached, parent_tid, &args);
145 static void *BeforeThreadCreateHook(uptr user_id, bool detached,
155 return CreateAsanThread(&stack, parent_tid, user_id, detached, name,
205 void *__sanitizer_before_thread_create_hook(thrd_t thread, bool detached,
209 reinterpret_cast<uptr>(thread), detached, name,
asan_rtems.cc 101 uptr user_id, bool detached,
107 asanThreadRegistry().CreateThread(user_id, detached, parent_tid, &args);
142 static void *BeforeThreadCreateHook(uptr user_id, bool detached,
152 return CreateAsanThread(&stack, parent_tid, user_id, detached,
232 void *__sanitizer_before_thread_create_hook(uptr thread, bool detached,
237 thread, detached,
  /src/libexec/httpd/lua/
Makefile 29 ./bozo.lua --sign --detached a
36 ./bozo.lua --sign --detached a
  /src/crypto/external/bsd/netpgp/dist/bindings/lua/
Makefile 29 ./netpgp.lua --sign --detached a
36 ./netpgp.lua --sign --detached a
netpgp.lua 37 opt.add_option{"-s", "--sign", action="store_true", dest="sign", help="--sign [--detached] [--armour] file"}
44 opt.add_option{"-D", "--detached", action="store_true", dest="detached", help="--detached"}
68 local detached = "attached"
69 if options.detached then
70 detached = "detached"
93 -- detached signature
94 netpgp.sign_file(pgp, args[1], args[1] .. ".sig", armour, detached)
    [all...]
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/crypto/external/bsd/netpgp/dist/tests/
Makefile.am 14 detached.at \
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_thread.h 71 bool detached) {
72 return Create(&data, sizeof(data), parent_tid, stack, detached);
74 static AsanThread *Create(u32 parent_tid, StackTrace *stack, bool detached) {
75 return Create(nullptr, 0, parent_tid, stack, detached);
157 u32 parent_tid, StackTrace *stack, bool detached);
asan_fuchsia.cpp 122 bool detached, const char *name) {
127 u32 tid = asanThreadRegistry().CreateThread(0, detached, parent_tid, &args);
173 static void *BeforeThreadCreateHook(uptr user_id, bool detached,
184 AsanThread *thread = CreateAsanThread(&stack, parent_tid, detached, name);
254 void *__sanitizer_before_thread_create_hook(thrd_t thread, bool detached,
258 reinterpret_cast<uptr>(thread), detached, name,
  /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/lsan/
lsan_thread.h 50 u32 ThreadCreate(u32 tid, uptr uid, bool detached);
  /src/external/gpl3/gcc/dist/libsanitizer/lsan/
lsan_thread.h 53 u32 ThreadCreate(u32 tid, bool detached, void *arg = nullptr);
lsan_thread.cpp 64 u32 ThreadCreate(u32 parent_tid, bool detached, void *arg) {
65 return thread_registry->CreateThread(0, detached, parent_tid, arg);
  /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
lsan_thread.h 48 u32 ThreadCreate(u32 tid, uptr uid, bool detached, void *arg = nullptr);
lsan_thread.cpp 47 u32 ThreadCreate(u32 parent_tid, uptr user_id, bool detached, void *arg) {
48 return thread_registry->CreateThread(user_id, detached, parent_tid, arg);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_thread_registry.cc 22 detached(false), workerthread(false), parent_tid(0), next(0) {
58 CHECK_EQ(false, detached);
69 // as detached.
70 if (!detached || status == ThreadStatusCreated) status = ThreadStatusFinished;
87 detached = _detached;
136 u32 ThreadRegistry::CreateThread(uptr user_id, bool detached, u32 parent_tid,
167 tctx->SetCreated(user_id, total_threads_++, detached,
251 tctx->detached = true;
289 bool dead = tctx->detached;
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_thread_registry.cpp 20 status(ThreadStatusInvalid), detached(false),
57 CHECK_EQ(false, detached);
68 // as detached.
69 if (!detached || status == ThreadStatusCreated) status = ThreadStatusFinished;
86 detached = _detached;
134 u32 ThreadRegistry::CreateThread(uptr user_id, bool detached, u32 parent_tid,
165 tctx->SetCreated(user_id, total_threads_++, detached,
247 tctx->detached = true;
283 bool dead = tctx->detached;
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_fuchsia.cpp 121 uptr user_id, bool detached,
128 asanThreadRegistry().CreateThread(user_id, detached, parent_tid, &args);
174 static void *BeforeThreadCreateHook(uptr user_id, bool detached,
186 CreateAsanThread(&stack, parent_tid, user_id, detached, name);
246 void *__sanitizer_before_thread_create_hook(thrd_t thread, bool detached,
250 reinterpret_cast<uptr>(thread), detached, name,
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_fuchsia.cpp 94 static void *BeforeThreadCreateHook(uptr user_id, bool detached,
215 void *__sanitizer_before_thread_create_hook(thrd_t thread, bool detached,
219 reinterpret_cast<uptr>(thread), detached, name,
  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_fuchsia.cpp 91 static void *BeforeThreadCreateHook(uptr user_id, bool detached,
193 void *__sanitizer_before_thread_create_hook(thrd_t thread, bool detached,
197 reinterpret_cast<uptr>(thread), detached, name,
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
tsan_test_util_posix.cc 238 bool detached;
362 ScopedThread::ScopedThread(bool detached, bool main) {
365 impl_->detached = detached;
371 &attr, detached ? PTHREAD_CREATE_DETACHED : PTHREAD_CREATE_JOINABLE);
382 if (!impl_->detached)
390 CHECK(!impl_->detached);
391 impl_->detached = true;

Completed in 54 milliseconds

1 2 3 4