Home
last modified time | relevance | path

Searched refs:user_id (Results 1 – 23 of 23) sorted by relevance

/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_thread_registry.cpp45 user_id = 0; in SetDead()
62 user_id = 0; in SetJoined()
86 user_id = _user_id; in SetCreated()
167 if (user_id) { in CreateThread()
246 if (tctx->user_id) in DetachThread()
267 if (tctx->user_id) in JoinThread()
301 if (tctx->user_id) in FinishThread()
352 CHECK_EQ(tctx->user_id, user_id); in ConsumeThreadUserId()
353 tctx->user_id = 0; in ConsumeThreadUserId()
364 tctx->user_id = user_id; in SetThreadUserId()
[all …]
H A Dsanitizer_thread_registry.h47 uptr user_id; // Some opaque user thread id (e.g. pthread_t). variable
109 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, void *arg);
127 void SetThreadNameByUserId(uptr user_id, const char *name);
133 u32 ConsumeThreadUserId(uptr user_id);
134 void SetThreadUserId(u32 tid, uptr user_id);
/openbsd/gnu/llvm/lldb/source/API/
H A DSBProcessInfo.cpp90 uint32_t user_id = UINT32_MAX; in GetUserID() local
92 user_id = m_opaque_up->GetUserID(); in GetUserID()
94 return user_id; in GetUserID()
130 uint32_t user_id = UINT32_MAX; in GetEffectiveUserID() local
132 user_id = m_opaque_up->GetEffectiveUserID(); in GetEffectiveUserID()
134 return user_id; in GetEffectiveUserID()
/openbsd/usr.bin/ssh/
H A Dsk-usbhid.c613 uint8_t *user_id, size_t user_id_len) in check_enroll_options() argument
633 (char *)user_id); in check_enroll_options()
712 uint8_t user_id[32]; in sk_enroll() local
729 memset(user_id, 0, sizeof(user_id)); in sk_enroll()
731 sizeof(user_id)) != 0) in sk_enroll()
759 (r = key_lookup(sk->dev, application, user_id, sizeof(user_id), in sk_enroll()
789 if ((r = fido_cred_set_user(cred, user_id, sizeof(user_id), in sk_enroll()
1128 const u_char *user_id; in read_rks() local
1209 user_id = fido_cred_user_id_ptr(cred); in read_rks()
1233 memcpy(srk->user_id, user_id, srk->user_id_len); in read_rks()
[all …]
H A Dssh-sk.c391 make_options(const char *device, const char *user_id, in make_options() argument
403 if (user_id != NULL && in make_options()
404 (r = sshsk_add_option(&opts, &nopts, "user", user_id, 0)) != 0) { in make_options()
731 freezero(rks[i]->user_id, rks[i]->user_id_len); in sshsk_free_sk_resident_keys()
748 freezero(srk->user_id, srk->user_id_len); in sshsk_free_resident_key()
826 if ((srk->user_id = calloc(1, rks[i]->user_id_len)) == NULL) { in sshsk_load_resident()
831 memcpy(srk->user_id, rks[i]->user_id, rks[i]->user_id_len); in sshsk_load_resident()
H A Dssh-sk.h36 uint8_t *user_id; member
H A Dsk-api.h70 uint8_t *user_id; member
H A Dssh-sk-client.c367 freezero(srk->user_id, srk->user_id_len); in sshsk_free_resident_key()
436 srk->user_id = userid; in sshsk_load_resident()
H A Dssh-sk-helper.c255 (r = sshbuf_put_string(resp, srks[i]->user_id, in process_load_resident()
H A Dssh-keygen.c3181 srks[i]->user_id, srks[i]->user_id_len); in do_download_sk()
/openbsd/lib/libfido2/src/
H A Dtouch.c16 const uint8_t user_id = FIDO_DUMMY_USER_ID; in fido_dev_get_touch_begin() local
43 if (fido_blob_set(&user.id, &user_id, sizeof(user_id)) < 0) { in fido_dev_get_touch_begin()
H A Dcred.c812 fido_cred_set_user(fido_cred_t *cred, const unsigned char *user_id, in fido_cred_set_user() argument
836 if (user_id != NULL && fido_blob_set(&up->id, user_id, user_id_len) < 0) in fido_cred_set_user()
/openbsd/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTMetadata.h29 void SetUserID(lldb::user_id_t user_id) { in SetUserID() argument
30 m_user_id = user_id; in SetUserID()
H A DClangASTImporter.cpp83 lldb::user_id_t user_id = LLDB_INVALID_UID; in CopyDecl() local
86 user_id = metadata->GetUserID(); in CopyDecl()
93 user_id); in CopyDecl()
98 decl->getDeclKindName(), user_id); in CopyDecl()
1047 lldb::user_id_t user_id = LLDB_INVALID_UID; in Imported() local
1050 user_id = metadata->GetUserID(); in Imported()
1062 from->getDeclKindName(), to, name_string, from, user_id); in Imported()
1067 from->getDeclKindName(), to, from, user_id); in Imported()
1081 if (!to_context_md->hasOrigin(to) || user_id != LLDB_INVALID_UID) in Imported()
1101 if (!to_context_md->hasOrigin(to) || user_id != LLDB_INVALID_UID) in Imported()
/openbsd/regress/lib/libcrypto/sm2/
H A Dsm2evptest.c52 const char *user_id = "ALICE123@YAHOO.COM"; in test_EVP_SM2_verify() local
84 CHECK_GOTO(EVP_PKEY_CTX_set_sm2_uid(verify_ctx, user_id, strlen(user_id)) > 0); in test_EVP_SM2_verify()
/openbsd/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_fuchsia.cpp94 static void *BeforeThreadCreateHook(uptr user_id, bool detached, in BeforeThreadCreateHook() argument
/openbsd/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_fuchsia.cpp173 static void *BeforeThreadCreateHook(uptr user_id, bool detached, in BeforeThreadCreateHook() argument
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_thread_registry_test.cpp58 return (tctx->user_id == uid); in HasUid()
/openbsd/gnu/llvm/lldb/source/Target/
H A DTarget.cpp2735 void Target::UndoCreateStopHook(lldb::user_id_t user_id) { in UndoCreateStopHook() argument
2736 if (!RemoveStopHookByID(user_id)) in UndoCreateStopHook()
2738 if (user_id == m_stop_hook_next_id) in UndoCreateStopHook()
2742 bool Target::RemoveStopHookByID(lldb::user_id_t user_id) { in RemoveStopHookByID() argument
2743 size_t num_removed = m_stop_hooks.erase(user_id); in RemoveStopHookByID()
2749 Target::StopHookSP Target::GetStopHookByID(lldb::user_id_t user_id) { in GetStopHookByID() argument
2753 specified_hook_iter = m_stop_hooks.find(user_id); in GetStopHookByID()
2759 bool Target::SetStopHookActiveStateByID(lldb::user_id_t user_id, in SetStopHookActiveStateByID() argument
2762 specified_hook_iter = m_stop_hooks.find(user_id); in SetStopHookActiveStateByID()
/openbsd/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h190 void SetMetadataAsUserID(const clang::Decl *decl, lldb::user_id_t user_id);
191 void SetMetadataAsUserID(const clang::Type *type, lldb::user_id_t user_id);
H A DTypeSystemClang.cpp2576 user_id_t user_id) { in SetMetadataAsUserID() argument
2578 meta_data.SetUserID(user_id); in SetMetadataAsUserID()
2583 user_id_t user_id) { in SetMetadataAsUserID() argument
2585 meta_data.SetUserID(user_id); in SetMetadataAsUserID()
/openbsd/gnu/llvm/lldb/source/Commands/
H A DCommandObjectTarget.cpp4938 lldb::user_id_t user_id; in DoExecute() local
4939 if (!llvm::to_integer(command.GetArgumentAtIndex(i), user_id)) { in DoExecute()
4944 if (!target.RemoveStopHookByID(user_id)) { in DoExecute()
4993 lldb::user_id_t user_id; in DoExecute() local
4994 if (!llvm::to_integer(command.GetArgumentAtIndex(i), user_id)) { in DoExecute()
4999 success = target.SetStopHookActiveStateByID(user_id, m_enable); in DoExecute()
/openbsd/gnu/llvm/clang/docs/
H A DDataFlowAnalysisIntro.md991 void UseUser(int32_t user_id) {
992 int32_t id = user_id;