/external/llvm-project/lldb/source/API/ |
D | SBProcessInfo.cpp | 92 uint32_t SBProcessInfo::GetUserID() { in GetUserID() function in SBProcessInfo 93 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBProcessInfo, GetUserID); in GetUserID() 97 user_id = m_opaque_up->GetUserID(); in GetUserID() 198 LLDB_REGISTER_METHOD(uint32_t, SBProcessInfo, GetUserID, ()); in RegisterMethods()
|
D | SBAttachInfo.cpp | 158 uint32_t SBAttachInfo::GetUserID() { in GetUserID() function in SBAttachInfo 159 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBAttachInfo, GetUserID); in GetUserID() 161 return m_opaque_sp->GetUserID(); in GetUserID() 288 LLDB_REGISTER_METHOD(uint32_t, SBAttachInfo, GetUserID, ()); in RegisterMethods()
|
D | SBLaunchInfo.cpp | 77 uint32_t SBLaunchInfo::GetUserID() { in GetUserID() function in SBLaunchInfo 78 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBLaunchInfo, GetUserID); in GetUserID() 80 return m_opaque_sp->GetUserID(); in GetUserID() 356 LLDB_REGISTER_METHOD(uint32_t, SBLaunchInfo, GetUserID, ()); in RegisterMethods()
|
/external/llvm-project/lldb/unittests/Utility/ |
D | ProcessInstanceInfoTest.cpp | 133 EXPECT_EQ(deserialized.GetUserID(), info.GetUserID()); in TEST() 163 EXPECT_EQ(deserialized[0].GetUserID(), info.GetUserID()); in TEST()
|
/external/llvm-project/lldb/source/Utility/ |
D | ProcessInfo.cpp | 147 s.Format(" uid = {0,-5} ({1})\n", GetUserID(), in Dump() 148 resolver.GetUserName(GetUserID()).getValueOr("")); in Dump() 213 &ProcessInstanceInfo::GetUserID, &UserIDResolver::GetUserName); in DumpAsTableRow() 277 m_match_info.GetUserID() != proc_info.GetUserID()) in UserIDsMatch()
|
/external/llvm-project/lldb/unittests/Symbol/ |
D | TestClangASTImporter.cpp | 178 EXPECT_EQ(metadata, importer.GetDeclMetadata(imported)->GetUserID()); in TEST_F() 205 EXPECT_EQ(metadata, importer.GetDeclMetadata(imported)->GetUserID()); in TEST_F() 228 EXPECT_EQ(metadata, importer.GetDeclMetadata(imported)->GetUserID()); in TEST_F()
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_process_info.py | 13 obj.GetUserID()
|
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
D | ClangASTMetadata.cpp | 15 lldb::user_id_t uid = GetUserID(); in Dump()
|
D | ClangASTMetadata.h | 35 lldb::user_id_t GetUserID() const { in GetUserID() function
|
D | ClangASTImporter.cpp | 86 user_id = metadata->GetUserID(); in CopyDecl() 1061 user_id = metadata->GetUserID(); in Imported()
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBProcessInfo.i | 40 GetUserID ();
|
D | SBAttachInfo.i | 64 GetUserID();
|
D | SBLaunchInfo.i | 20 GetUserID();
|
/external/llvm-project/lldb/include/lldb/Host/posix/ |
D | HostInfoPosix.h | 26 static uint32_t GetUserID();
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBProcessInfo.h | 35 uint32_t GetUserID();
|
D | SBAttachInfo.h | 122 uint32_t GetUserID();
|
D | SBLaunchInfo.h | 35 uint32_t GetUserID();
|
/external/llvm-project/lldb/unittests/Host/linux/ |
D | HostTest.cpp | 50 EXPECT_EQ(geteuid(), Info.GetUserID()); in TEST_F()
|
/external/llvm-project/lldb/source/Host/posix/ |
D | HostInfoPosix.cpp | 116 uint32_t HostInfoPosix::GetUserID() { return getuid(); } in GetUserID() function in HostInfoPosix
|
/external/llvm-project/lldb/test/API/python_api/process/ |
D | TestProcessAPI.py | 370 process_info.GetUserID(), lldb.UINT32_MAX, 374 process_info.GetUserID(), lldb.UINT32_MAX,
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | ProcessInfo.h | 49 uint32_t GetUserID() const { return m_uid; } in GetUserID() function
|
/external/llvm-project/lldb/source/Host/linux/ |
D | Host.cpp | 260 if (!all_users && (our_uid != 0) && (process_info.GetUserID() != our_uid)) in FindProcessesImpl()
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | GDBRemoteCommunicationServerCommon.cpp | 1185 proc_info.GetUserID(), proc_info.GetGroupID(), in CreateProcessInfoResponse() 1214 proc_info.GetUserID(), proc_info.GetGroupID(), in CreateProcessInfoResponse_DebugServerStyle()
|
D | GDBRemoteCommunicationClient.cpp | 2220 packet.Printf("uid:%u;", match_info.GetProcessInfo().GetUserID()); in FindProcesses()
|
/external/llvm-project/lldb/source/Host/macosx/objcxx/ |
D | Host.mm | 726 if ((launch_info.GetUserID() == 0) && !authorizationRef) { 848 uid_t requested_uid = launch_info.GetUserID(); 1218 bool launchingAsRoot = launch_info.GetUserID() == 0;
|