Home
last modified time | relevance | path

Searched refs:te32 (Results 1 – 25 of 52) sorted by relevance

123

/dports/graphics/gimp-app/gimp-2.10.30/tools/
H A Dgimp-debug-resume.c17 THREADENTRY32 te32 = { 0 }; in resume_process() local
23 te32.dwSize = sizeof (THREADENTRY32); in resume_process()
25 if (Thread32First (hThreadSnap, &te32)) in resume_process()
29 if (te32.th32OwnerProcessID == dwOwnerPID) in resume_process()
31 HANDLE hThread = OpenThread (THREAD_SUSPEND_RESUME, FALSE, te32.th32ThreadID); in resume_process()
32 printf ("Resuming Thread: %u\n", (unsigned int) te32.th32ThreadID); in resume_process()
37 while (Thread32Next (hThreadSnap, &te32)); in resume_process()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/crashpad/crashpad/handler/win/
H A Dcrash_other_program.cc45 THREADENTRY32 te32; in CrashAndDumpTarget() local
46 te32.dwSize = sizeof(THREADENTRY32); in CrashAndDumpTarget()
47 if (!Thread32First(thread_snap.get(), &te32)) { in CrashAndDumpTarget()
53 if (te32.th32OwnerProcessID == target_pid) { in CrashAndDumpTarget()
57 if (te32.tpBasePri == 9) { in CrashAndDumpTarget()
59 OpenThread(kXPThreadAllAccess, false, te32.th32ThreadID)); in CrashAndDumpTarget()
71 } while (Thread32Next(thread_snap.get(), &te32)); in CrashAndDumpTarget()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/crashpad/crashpad/handler/win/
H A Dcrash_other_program.cc45 THREADENTRY32 te32; in CrashAndDumpTarget() local
46 te32.dwSize = sizeof(THREADENTRY32); in CrashAndDumpTarget()
47 if (!Thread32First(thread_snap.get(), &te32)) { in CrashAndDumpTarget()
53 if (te32.th32OwnerProcessID == target_pid) { in CrashAndDumpTarget()
57 if (te32.tpBasePri == 9) { in CrashAndDumpTarget()
59 OpenThread(kXPThreadAllAccess, false, te32.th32ThreadID)); in CrashAndDumpTarget()
71 } while (Thread32Next(thread_snap.get(), &te32)); in CrashAndDumpTarget()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/tools/win/ShowThreadNames/
H A DShowThreadNames.cc74 THREADENTRY32 te32; in ListProcessThreadNames() local
75 te32.dwSize = sizeof(THREADENTRY32); in ListProcessThreadNames()
78 if (!Thread32First(thread_snapshot, &te32)) { in ListProcessThreadNames()
89 if (te32.th32OwnerProcessID == owner_pid) { in ListProcessThreadNames()
91 OpenThread(THREAD_QUERY_INFORMATION, FALSE, te32.th32ThreadID); in ListProcessThreadNames()
98 name_id_map.insert(std::make_pair(thread_name, te32.th32ThreadID)); in ListProcessThreadNames()
107 } while (Thread32Next(thread_snapshot, &te32)); in ListProcessThreadNames()
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/win/ShowThreadNames/
H A DShowThreadNames.cc74 THREADENTRY32 te32; in ListProcessThreadNames() local
75 te32.dwSize = sizeof(THREADENTRY32); in ListProcessThreadNames()
78 if (!Thread32First(thread_snapshot, &te32)) { in ListProcessThreadNames()
89 if (te32.th32OwnerProcessID == owner_pid) { in ListProcessThreadNames()
91 OpenThread(THREAD_QUERY_INFORMATION, FALSE, te32.th32ThreadID); in ListProcessThreadNames()
98 name_id_map.insert(std::make_pair(thread_name, te32.th32ThreadID)); in ListProcessThreadNames()
107 } while (Thread32Next(thread_snapshot, &te32)); in ListProcessThreadNames()
/dports/lang/spidermonkey78/firefox-78.9.0/widget/windows/
H A DProcInfo.cpp25 THREADENTRY32 te32; in AppendThreads() local
38 te32.dwSize = sizeof(THREADENTRY32); in AppendThreads()
42 if (!Thread32First(hThreadSnap.get(), &te32)) { in AppendThreads()
47 if (te32.th32OwnerProcessID == info->pid) { in AppendThreads()
49 OpenThread(THREAD_QUERY_INFORMATION, TRUE, te32.th32ThreadID)); in AppendThreads()
70 thread.tid = te32.th32ThreadID; in AppendThreads()
75 } while (Thread32Next(hThreadSnap.get(), &te32)); in AppendThreads()
/dports/mail/thunderbird/thunderbird-91.8.0/toolkit/components/processtools/
H A DProcInfo_win.cpp127 THREADENTRY32 te32; in GetProcInfo() local
128 te32.dwSize = sizeof(THREADENTRY32); in GetProcInfo()
131 for (auto success = Thread32First(hThreadSnap.get(), &te32); success; in GetProcInfo()
132 success = Thread32Next(hThreadSnap.get(), &te32)) { in GetProcInfo()
133 auto processLookup = gathered.lookup(te32.th32OwnerProcessID); in GetProcInfo()
148 /* dwThreadId = */ te32.th32ThreadID)); in GetProcInfo()
156 threadInfo->tid = te32.th32ThreadID; in GetProcInfo()
/dports/www/firefox-esr/firefox-91.8.0/toolkit/components/processtools/
H A DProcInfo_win.cpp127 THREADENTRY32 te32; in GetProcInfo() local
128 te32.dwSize = sizeof(THREADENTRY32); in GetProcInfo()
131 for (auto success = Thread32First(hThreadSnap.get(), &te32); success; in GetProcInfo()
132 success = Thread32Next(hThreadSnap.get(), &te32)) { in GetProcInfo()
133 auto processLookup = gathered.lookup(te32.th32OwnerProcessID); in GetProcInfo()
148 /* dwThreadId = */ te32.th32ThreadID)); in GetProcInfo()
156 threadInfo->tid = te32.th32ThreadID; in GetProcInfo()
/dports/www/firefox/firefox-99.0/toolkit/components/processtools/
H A DProcInfo_win.cpp176 THREADENTRY32 te32; in GetProcInfoSync() local
177 te32.dwSize = sizeof(THREADENTRY32); in GetProcInfoSync()
180 for (auto success = Thread32First(hThreadSnap.get(), &te32); success; in GetProcInfoSync()
181 success = Thread32Next(hThreadSnap.get(), &te32)) { in GetProcInfoSync()
182 auto processLookup = gathered.lookup(te32.th32OwnerProcessID); in GetProcInfoSync()
197 /* dwThreadId = */ te32.th32ThreadID)); in GetProcInfoSync()
205 threadInfo->tid = te32.th32ThreadID; in GetProcInfoSync()
/dports/graphics/blender/blender-2.91.0/source/blender/blenlib/intern/
H A Dsystem_win32.c279 THREADENTRY32 te32; in bli_windows_system_backtrace_threads() local
287 te32.dwSize = sizeof(THREADENTRY32); in bli_windows_system_backtrace_threads()
289 if (!Thread32First(hThreadSnap, &te32)) { in bli_windows_system_backtrace_threads()
294 if (te32.th32OwnerProcessID == GetCurrentProcessId()) { in bli_windows_system_backtrace_threads()
295 if (GetCurrentThreadId() != te32.th32ThreadID) { in bli_windows_system_backtrace_threads()
296 fprintf(fp, "Thread : %.8x\n", te32.th32ThreadID); in bli_windows_system_backtrace_threads()
297 HANDLE ht = OpenThread(THREAD_ALL_ACCESS, FALSE, te32.th32ThreadID); in bli_windows_system_backtrace_threads()
302 } while (Thread32Next(hThreadSnap, &te32)); in bli_windows_system_backtrace_threads()
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/aes/asm/
H A Daes-ia64.S167 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
172 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
251 add te32=te32,te0 // 7/3:te0+s2
256 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
266 dep te32=te21,te32,8,8 // 11/3:
273 dep te32=te10,te32,16,8};; // 13/3:
450 s/te32=s2/td30=s0/; s/te32/td30/g;
507 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
591 add te32=te32,te0 // 1/1:te0+s0
596 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/openssl-src-111.16.0+1.1.1l/openssl/crypto/aes/asm/
H A Daes-ia64.S167 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
172 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
251 add te32=te32,te0 // 7/3:te0+s2
256 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
266 dep te32=te21,te32,8,8 // 11/3:
273 dep te32=te10,te32,16,8};; // 13/3:
450 s/te32=s2/td30=s0/; s/te32/td30/g;
507 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
591 add te32=te32,te0 // 1/1:te0+s0
596 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/crypto/aes/asm/
H A Daes-ia64.S167 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
172 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
251 add te32=te32,te0 // 7/3:te0+s2
256 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
266 dep te32=te21,te32,8,8 // 11/3:
273 dep te32=te10,te32,16,8};; // 13/3:
450 s/te32=s2/td30=s0/; s/te32/td30/g;
507 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
591 add te32=te32,te0 // 1/1:te0+s0
596 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]
/dports/emulators/qemu42/qemu-4.2.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/aes/asm/
H A Daes-ia64.S167 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
172 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
251 add te32=te32,te0 // 7/3:te0+s2
256 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
266 dep te32=te21,te32,8,8 // 11/3:
273 dep te32=te10,te32,16,8};; // 13/3:
450 s/te32=s2/td30=s0/; s/te32/td30/g;
507 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
591 add te32=te32,te0 // 1/1:te0+s0
596 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/aes/asm/
H A Daes-ia64.S167 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
172 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
251 add te32=te32,te0 // 7/3:te0+s2
256 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
266 dep te32=te21,te32,8,8 // 11/3:
273 dep te32=te10,te32,16,8};; // 13/3:
450 s/te32=s2/td30=s0/; s/te32/td30/g;
507 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
591 add te32=te32,te0 // 1/1:te0+s0
596 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]
/dports/sysutils/vector/vector-0.10.0/cargo-crates/openssl-src-111.9.0+1.1.1g/openssl/crypto/aes/asm/
H A Daes-ia64.S167 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
172 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
251 add te32=te32,te0 // 7/3:te0+s2
256 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
266 dep te32=te21,te32,8,8 // 11/3:
273 dep te32=te10,te32,16,8};; // 13/3:
450 s/te32=s2/td30=s0/; s/te32/td30/g;
507 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
591 add te32=te32,te0 // 1/1:te0+s0
596 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]
/dports/emulators/qemu-utils/qemu-4.2.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/aes/asm/
H A Daes-ia64.S167 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
172 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
251 add te32=te32,te0 // 7/3:te0+s2
256 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
266 dep te32=te21,te32,8,8 // 11/3:
273 dep te32=te10,te32,16,8};; // 13/3:
450 s/te32=s2/td30=s0/; s/te32/td30/g;
507 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
591 add te32=te32,te0 // 1/1:te0+s0
596 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]
/dports/net/p5-Socket-Class/Socket-Class-2.258/xs/sc_ssl/openssl/source/crypto/aes/asm/
H A Daes-ia64.S160 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
165 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
244 add te32=te32,te0 // 7/3:te0+s2
249 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
259 dep te32=te21,te32,8,8 // 11/3:
266 dep te32=te10,te32,16,8};; // 13/3:
443 s/te32=s2/td30=s0/; s/te32/td30/g;
500 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
584 add te32=te32,te0 // 1/1:te0+s0
589 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/aes/asm/
H A Daes-ia64.S167 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
172 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
251 add te32=te32,te0 // 7/3:te0+s2
256 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
266 dep te32=te21,te32,8,8 // 11/3:
273 dep te32=te10,te32,16,8};; // 13/3:
450 s/te32=s2/td30=s0/; s/te32/td30/g;
507 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
591 add te32=te32,te0 // 1/1:te0+s0
596 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]
/dports/sysutils/uefi-edk2-qemu/edk2-edk2-stable201911/CryptoPkg/Library/OpensslLib/openssl/crypto/aes/asm/
H A Daes-ia64.S167 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
172 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
251 add te32=te32,te0 // 7/3:te0+s2
256 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
266 dep te32=te21,te32,8,8 // 11/3:
273 dep te32=te10,te32,16,8};; // 13/3:
450 s/te32=s2/td30=s0/; s/te32/td30/g;
507 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
591 add te32=te32,te0 // 1/1:te0+s0
596 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/CryptoPkg/Library/OpensslLib/openssl/crypto/aes/asm/
H A Daes-ia64.S167 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
172 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
251 add te32=te32,te0 // 7/3:te0+s2
256 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
266 dep te32=te21,te32,8,8 // 11/3:
273 dep te32=te10,te32,16,8};; // 13/3:
450 s/te32=s2/td30=s0/; s/te32/td30/g;
507 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
591 add te32=te32,te0 // 1/1:te0+s0
596 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-src-111.14.0+1.1.1j/openssl/crypto/aes/asm/
H A Daes-ia64.S167 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
172 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
251 add te32=te32,te0 // 7/3:te0+s2
256 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
266 dep te32=te21,te32,8,8 // 11/3:
273 dep te32=te10,te32,16,8};; // 13/3:
450 s/te32=s2/td30=s0/; s/te32/td30/g;
507 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
591 add te32=te32,te0 // 1/1:te0+s0
596 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-src-111.16.0+1.1.1l/openssl/crypto/aes/asm/
H A Daes-ia64.S167 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
172 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
251 add te32=te32,te0 // 7/3:te0+s2
256 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
266 dep te32=te21,te32,8,8 // 11/3:
273 dep te32=te10,te32,16,8};; // 13/3:
450 s/te32=s2/td30=s0/; s/te32/td30/g;
507 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
591 add te32=te32,te0 // 1/1:te0+s0
596 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-src-111.15.0+1.1.1k/openssl/crypto/aes/asm/
H A Daes-ia64.S167 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
172 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
251 add te32=te32,te0 // 7/3:te0+s2
256 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
266 dep te32=te21,te32,8,8 // 11/3:
273 dep te32=te10,te32,16,8};; // 13/3:
450 s/te32=s2/td30=s0/; s/te32/td30/g;
507 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
591 add te32=te32,te0 // 1/1:te0+s0
596 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/crypto/aes/asm/
H A Daes-ia64.S167 (p0) shladd te32=te32,3,te3 // 7/3:te3+s2
172 { .mmi; (p0) ld4 te32=[te32] // 8/3:te3[s2]
251 add te32=te32,te0 // 7/3:te0+s2
256 { .mmi; ld1 te32=[te32] // 8/3:te0[s2]
266 dep te32=te21,te32,8,8 // 11/3:
273 dep te32=te10,te32,16,8};; // 13/3:
450 s/te32=s2/td30=s0/; s/te32/td30/g;
507 (p0) shladd te32=te32,3,te3 // 1/1:te3+s0
591 add te32=te32,te0 // 1/1:te0+s0
596 { .mmi; ld1 te32=[te32] // 2/1:te0[s0]
[all …]

123