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:lib_handle
(Results
1 - 6
of
6
) sorted by relevance
/third_party/vulkan-loader/tests/framework/
H
A
D
test_util.h
299
loader_platform_dl_handle
lib_handle
= LoadLibraryW(lib_path_utf16.c_str());
300
if (
lib_handle
== nullptr && GetLastError() == ERROR_MOD_NOT_FOUND) {
302
lib_handle
=
305
return
lib_handle
;
357
lib_handle
= loader_platform_open_library(lib_path.c_str());
358
if (
lib_handle
== nullptr) {
361
assert(
lib_handle
!= nullptr && "Must be able to open library");
365
if (
lib_handle
!= nullptr) {
366
loader_platform_close_library(
lib_handle
);
367
lib_handle
[all...]
/third_party/musl/porting/linux/user/src/network/
H
A
D
resolvconf.c
75
void *
lib_handle
= open_dns_lib();
in load_from_dns_lib()
local
76
if (
lib_handle
== NULL) {
in load_from_dns_lib()
80
void *sym_addr = dlsym(
lib_handle
, symbol);
in load_from_dns_lib()
/third_party/musl/src/network/
H
A
D
resolvconf.c
61
void *
lib_handle
= open_dns_lib();
in load_from_dns_lib()
local
62
if (
lib_handle
== NULL) {
in load_from_dns_lib()
66
void *sym_addr = dlsym(
lib_handle
, symbol);
in load_from_dns_lib()
/third_party/vulkan-loader/loader/
H
A
D
vk_loader_platform.h
545
loader_platform_dl_handle
lib_handle
= LoadLibraryW(lib_path_utf16);
in loader_platform_open_library()
local
546
if (
lib_handle
== NULL && GetLastError() == ERROR_MOD_NOT_FOUND) {
in loader_platform_open_library()
548
lib_handle
= LoadLibraryExW(lib_path_utf16, NULL, LOAD_LIBRARY_SEARCH_DEFAULT_DIRS | LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR);
in loader_platform_open_library()
550
return
lib_handle
;
in loader_platform_open_library()
H
A
D
loader.c
492
if (layer_list->list[i].
lib_handle
) {
in loader_delete_layer_list_and_properties()
493
loader_platform_close_library(layer_list->list[i].
lib_handle
);
in loader_delete_layer_list_and_properties()
496
layer_list->list[i].
lib_handle
= NULL;
in loader_delete_layer_list_and_properties()
4204
if ((prop->
lib_handle
= loader_platform_open_library(libPath)) == NULL) {
4216
return prop->
lib_handle
;
4548
loader_platform_dl_handle
lib_handle
;
4555
lib_handle
= loader_open_layer_file(inst, layer_prop);
4559
if (!
lib_handle
) {
4568
lib_handle
, "vkNegotiateLoaderLayerInterfaceVersion");
4571
lib_handle
, layer_pro
[all...]
H
A
D
loader_common.h
141
loader_platform_dl_handle
lib_handle
;
member
Completed in 11 milliseconds