Home
last modified time | relevance | path

Searched refs:dwFlags (Results 1 – 12 of 12) sorted by relevance

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_malloc_win.cpp215 return REAL(HeapSize)(hHeap, dwFlags, lpMem); in INTERCEPTOR_WINAPI()
217 CHECK(dwFlags == 0 && "unsupported heap flags"); in INTERCEPTOR_WINAPI()
231 return REAL(HeapAlloc)(hHeap, dwFlags, dwBytes); in INTERCEPTOR_WINAPI()
245 if (p && (dwFlags & HEAP_ZERO_MEMORY)) { in INTERCEPTOR_WINAPI()
260 return REAL(HeapFree)(hHeap, dwFlags, lpMem); in INTERCEPTOR_WINAPI()
304 (HEAP_REALLOC_UNSUPPORTED_FLAGS & dwFlags) == 0; in SharedReAlloc()
312 if (dwFlags & HEAP_ZERO_MEMORY) in SharedReAlloc()
323 freeFunc(hHeap, dwFlags, lpMem); in SharedReAlloc()
361 if (dwFlags & HEAP_REALLOC_IN_PLACE_ONLY) in SharedReAlloc()
372 if (dwFlags & HEAP_ZERO_MEMORY) in SharedReAlloc()
[all …]
/freebsd-14.2/crypto/openssl/crypto/
H A Dgetenv.c27 DWORD dwFlags = MB_ERR_INVALID_CHARS; in ossl_safe_getenv() local
41 dwFlags = 0; in ossl_safe_getenv()
44 rsize = MultiByteToWideChar(curacp, dwFlags, name, -1, NULL, 0); in ossl_safe_getenv()
51 fsize = MultiByteToWideChar(curacp, dwFlags, name, -1, namew, rsize); in ossl_safe_getenv()
/freebsd-14.2/contrib/libfido2/src/
H A Dwebauthn.h634 DWORD dwFlags; member
736 DWORD dwFlags; member
H A Dwinhello.c475 out->dwFlags |= WEBAUTHN_AUTHENTICATOR_HMAC_SECRET_VALUES_FLAG; in pack_assert_ext()
/freebsd-14.2/contrib/sqlite3/tea/win/
H A Dnmakehlp.c213 si.dwFlags = STARTF_USESTDHANDLES; in CheckForCompilerFeature()
349 si.dwFlags = STARTF_USESTDHANDLES; in CheckForLinkerFeature()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Windows/
H A DThreading.inc71 DWORD dwFlags; // Reserved. Do not use.
79 info.dwFlags = 0;
H A DProgram.inc234 si.dwFlags = STARTF_USESTDHANDLES;
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_win.cpp242 si.dwFlags |= STARTF_USESTDHANDLES; in StartSymbolizerSubprocess()
/freebsd-14.2/crypto/openssl/engines/
H A De_capi.c1505 DWORD dwFlags = 0; in capi_get_key() local
1530 dwFlags = CRYPT_MACHINE_KEYSET; in capi_get_key()
1532 dwFlags)) { in capi_get_key()
/freebsd-14.2/contrib/googletest/googletest/src/
H A Dgtest-death-test.cc807 startup_info.dwFlags = STARTF_USESTDHANDLES; in AssumeRole()
/freebsd-14.2/contrib/file/magic/Magdir/
H A Dwindows1649 # dwFlags
/freebsd-14.2/contrib/sqlite3/
H A Dsqlite3.c50463 DWORD dwFlags = LOCKFILE_FAIL_IMMEDIATELY;
50464 if( lockType == WINSHM_WRLCK ) dwFlags |= LOCKFILE_EXCLUSIVE_LOCK;
50465 rc = winLockFile(&pFile->hFile.h, dwFlags, ofst, 0, nByte, 0);