Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:SRWLOCK
(Results
1 - 13
of
13
) sorted by relevance
/third_party/node/deps/v8/src/base/
H
A
D
win32-headers.h
66
typedef struct _RTL_SRWLOCK
SRWLOCK
;
typedef
95
inline
SRWLOCK
* V8ToWindowsType(V8_SRWLOCK* p) {
in V8ToWindowsType()
96
return reinterpret_cast<
SRWLOCK
*>(p);
in V8ToWindowsType()
99
inline const
SRWLOCK
* V8ToWindowsType(const V8_SRWLOCK* p) {
in V8ToWindowsType()
100
return reinterpret_cast<const
SRWLOCK
*>(p);
in V8ToWindowsType()
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/
H
A
D
waiter.cc
307
static
SRWLOCK
*GetLock(Waiter *w) {
in GetLock()
308
return reinterpret_cast<
SRWLOCK
*>(&w->mu_storage_);
in GetLock()
315
static_assert(sizeof(
SRWLOCK
) == sizeof(void *),
316
"`mu_storage_` does not have the same size as
SRWLOCK
");
317
static_assert(alignof(
SRWLOCK
) == alignof(void *),
318
"`mu_storage_` does not have the same alignment as
SRWLOCK
");
327
// The
SRWLOCK
and CONDITION_VARIABLE types must be trivially constructible
329
static_assert(std::is_trivially_constructible<
SRWLOCK
>::value,
330
"The `
SRWLOCK
` type must be trivially constructible");
334
static_assert(std::is_trivially_destructible<
SRWLOCK
>
[all...]
/third_party/python/Include/internal/
H
A
D
pycore_condvar.h
88
/*
SRWLOCK
is faster and better than CriticalSection */
89
typedef
SRWLOCK
PyMUTEX_T;
/third_party/mesa3d/src/util/
H
A
D
rwlock.h
44
SRWLOCK
rwlock;
/third_party/curl/lib/
H
A
D
easy_lock.h
39
#define curl_simple_lock
SRWLOCK
/third_party/ffmpeg/compat/
H
A
D
w32pthreads.h
57
typedef
SRWLOCK
pthread_mutex_t;
/third_party/node/deps/openssl/openssl/crypto/
H
A
D
threads_win.c
35
SRWLOCK
lock;
/third_party/openssl/crypto/
H
A
D
threads_win.c
35
SRWLOCK
lock;
/third_party/libuv/include/uv/
H
A
D
win.h
182
typedef RTL_SRWLOCK
SRWLOCK
, *PSRWLOCK;
typedef
268
SRWLOCK
read_write_lock_;
/third_party/node/deps/uv/include/uv/
H
A
D
win.h
181
typedef RTL_SRWLOCK
SRWLOCK
, *PSRWLOCK;
typedef
267
SRWLOCK
read_write_lock_;
/third_party/node/deps/v8/src/base/platform/
H
A
D
platform-win32.cc
44
STATIC_ASSERT(sizeof(V8_SRWLOCK) == sizeof(
SRWLOCK
));
45
STATIC_ASSERT(alignof(V8_SRWLOCK) == alignof(
SRWLOCK
));
/third_party/skia/third_party/externals/d3d12allocator/src/
H
A
D
D3D12MemAlloc.cpp
231
SRWLOCK
m_Lock;
/third_party/skia/third_party/vulkanmemoryallocator/include/
H
A
D
vk_mem_alloc.h
4133
// Use
SRWLOCK
from WinAPI.
4146
SRWLOCK
m_Lock;
Completed in 35 milliseconds