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:callbacks_mutex
(Results
1 - 4
of
4
) sorted by relevance
/third_party/mesa3d/src/vulkan/runtime/
H
A
D
vk_debug_report.c
68
mtx_lock(&instance->debug_report.
callbacks_mutex
);
in VK_DEFINE_NONDISP_HANDLE_CASTS()
70
mtx_unlock(&instance->debug_report.
callbacks_mutex
);
in VK_DEFINE_NONDISP_HANDLE_CASTS()
89
mtx_lock(&instance->debug_report.
callbacks_mutex
);
in vk_common_DestroyDebugReportCallbackEXT()
93
mtx_unlock(&instance->debug_report.
callbacks_mutex
);
in vk_common_DestroyDebugReportCallbackEXT()
110
mtx_lock(&instance->debug_report.
callbacks_mutex
);
in debug_report()
126
mtx_unlock(&instance->debug_report.
callbacks_mutex
);
in debug_report()
H
A
D
vk_debug_utils.c
42
mtx_lock(&instance->debug_utils.
callbacks_mutex
);
in vk_debug_message()
51
mtx_unlock(&instance->debug_utils.
callbacks_mutex
);
in vk_debug_message()
115
mtx_lock(&instance->debug_utils.
callbacks_mutex
);
in vk_common_CreateDebugUtilsMessengerEXT()
117
mtx_unlock(&instance->debug_utils.
callbacks_mutex
);
in vk_common_CreateDebugUtilsMessengerEXT()
148
mtx_lock(&instance->debug_utils.
callbacks_mutex
);
in vk_common_DestroyDebugUtilsMessengerEXT()
150
mtx_unlock(&instance->debug_utils.
callbacks_mutex
);
in vk_common_DestroyDebugUtilsMessengerEXT()
H
A
D
vk_instance.c
167
if (mtx_init(&instance->debug_report.
callbacks_mutex
, mtx_plain) != 0)
in vk_instance_init()
172
if (mtx_init(&instance->debug_utils.
callbacks_mutex
, mtx_plain) != 0) {
in vk_instance_init()
173
mtx_destroy(&instance->debug_report.
callbacks_mutex
);
in vk_instance_init()
205
mtx_destroy(&instance->debug_report.
callbacks_mutex
);
in vk_instance_finish()
206
mtx_destroy(&instance->debug_utils.
callbacks_mutex
);
in vk_instance_finish()
H
A
D
vk_instance.h
90
mtx_t
callbacks_mutex
;
member
100
mtx_t
callbacks_mutex
;
member
Completed in 2 milliseconds