OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dlhandle
(Results
1 - 7
of
7
) sorted by null
/external/elfutils/libebl/
eblclosebackend.c
69
if (ebl->
dlhandle
!= NULL)
70
(void) dlclose (ebl->
dlhandle
);
libeblP.h
84
void *
dlhandle
;
member in struct:ebl
eblopenbackend.c
377
result->
dlhandle
= h;
393
result->
dlhandle
= NULL;
402
result->
dlhandle
= NULL;
/external/bluetooth/bluedroid/hci/src/
bt_hw.c
209
void *
dlhandle
;
local
211
dlhandle
= dlopen("libbt-vendor.so", RTLD_NOW);
212
if (!
dlhandle
)
218
bt_vnd_if = (bt_vendor_interface_t *) dlsym(
dlhandle
, "BLUETOOTH_VENDOR_LIB_INTERFACE");
/external/wpa_supplicant_8/src/eap_peer/
tncc.c
107
void *
dlhandle
; /* from dlopen() */
member in struct:tnc_if_imc
325
void *handle = imc->
dlhandle
;
456
imc->
dlhandle
= LoadLibrary(lib);
460
imc->
dlhandle
= LoadLibrary(imc->path);
462
if (imc->
dlhandle
== NULL) {
468
imc->
dlhandle
= dlopen(imc->path, RTLD_LAZY);
469
if (imc->
dlhandle
== NULL) {
496
if (imc->
dlhandle
) {
498
FreeLibrary(imc->
dlhandle
);
500
dlclose(imc->
dlhandle
);
[
all
...]
/external/wpa_supplicant_8/src/eap_server/
tncs.c
107
void *
dlhandle
; /* from dlopen() */
member in struct:tnc_if_imv
403
void *handle = imv->
dlhandle
;
515
imv->
dlhandle
= dlopen(imv->path, RTLD_LAZY);
516
if (imv->
dlhandle
== NULL) {
548
if (imv->
dlhandle
)
549
dlclose(imv->
dlhandle
);
/frameworks/base/core/jni/
android_app_NativeActivity.cpp
108
dlhandle
= _dlhandle;
127
if (
dlhandle
!= NULL) {
129
// up and only keep one open
dlhandle
per proc, since there
131
//dlclose(
dlhandle
);
145
void*
dlhandle
;
member in struct:android::NativeCode
Completed in 515 milliseconds