HomeSort by relevance Sort by last modified time
    Searched defs:handle (Results 1 - 25 of 2427) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/tests/libs/
cfi_test_helper2.cpp 23 void* handle; local
25 handle = dlopen("libcfi-test.so", RTLD_NOW | RTLD_NOLOAD);
26 CHECK(handle != nullptr);
27 dlclose(handle);
dlopen_testlib_dlopen_from_ctor.cpp 20 void* handle = dlopen("libc.so", RTLD_NOW); local
21 dlclose(handle);
dlopen_b.cpp 10 void *handle = dlopen("libtest_dt_runpath_x.so", RTLD_NOW); local
11 if (handle != nullptr) {
13 return handle;
ld_config_test_helper.cpp 40 void* handle = dlopen(vdso_name, RTLD_NOW); local
41 if (handle == nullptr) {
45 dlclose(handle);
  /development/vndk/tools/definition-tool/tests/testdata/test_elfdump/input/
main.c 10 void *handle = dlopen(argv[1], RTLD_NOW); local
11 if (!handle) {
16 void (*test)(void) = dlsym(handle, "test");
23 dlclose(handle);
  /external/libpcap/
pcap-netfilter-linux-android.c 22 pcap_t handle; local
23 handle.fd = fd;
24 return nflog_send_config_cmd(&handle, group_id, cmd, family);
  /external/skia/tools/skiaserve/urlhandlers/
DownloadHandler.cpp 21 int DownloadHandler::handle(Request* request, MHD_Connection* connection, function in class:DownloadHandler
RootHandler.cpp 21 int RootHandler::handle(Request* request, MHD_Connection* connection, function in class:RootHandler
DataHandler.cpp 22 int DataHandler::handle(Request* request, MHD_Connection* connection, function in class:DataHandler
QuitHandler.cpp 22 int QuitHandler::handle(Request* request, MHD_Connection* connection, function in class:QuitHandler
  /external/skqp/tools/skiaserve/urlhandlers/
DownloadHandler.cpp 21 int DownloadHandler::handle(Request* request, MHD_Connection* connection, function in class:DownloadHandler
RootHandler.cpp 21 int RootHandler::handle(Request* request, MHD_Connection* connection, function in class:RootHandler
DataHandler.cpp 22 int DataHandler::handle(Request* request, MHD_Connection* connection, function in class:DataHandler
QuitHandler.cpp 22 int QuitHandler::handle(Request* request, MHD_Connection* connection, function in class:QuitHandler
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
Handler.java 52 void handle(SelectionKey sk) throws IOException; method in interface:Handler
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
Handler.java 52 void handle(SelectionKey sk) throws IOException; method in interface:Handler
  /cts/tests/tests/jni_vendor/libvendorjnitest/
android_jni_vendor_cts_VendorJniTest.cpp 25 void* handle = dlopen(libname, RTLD_NOW); local
27 if (handle == nullptr) {
  /development/vndk/tools/sourcedr/sourcedr/tests/testdata/android_src/dlopen/
test.c 6 void *handle; local
10 handle = dlopen("libm.so.6", RTLD_LAZY);
11 if (!handle) {
16 cosine = dlsym(handle, "cos");
23 dlclose(handle);
  /external/capstone/bindings/ocaml/
test_detail.ml 44 let print_detail handle insn =
48 Array.iter (fun x -> printf "%s "(cs_reg_name handle x)) insn.regs_read;
54 Array.iter (fun x -> printf "%s "(cs_reg_name handle x)) insn.regs_write;
66 let print_insn handle insn =
68 print_detail handle insn
73 let handle = cs_open arch mode in var
74 let err = cs_option handle CS_OPT_DETAIL _CS_OPT_ON in
77 let insns = cs_disasm handle code 0x1000L 0L in
80 List.iter (print_insn handle) insns;
81 match cs_close handle wit
    [all...]
  /external/capstone/suite/regress/
invalid_read_in_print_operand.c 6 csh handle; local
7 if (cs_open(CS_ARCH_X86, CS_MODE_64, &handle)) {
12 cs_disasm(handle, (uint8_t *)BINARY, sizeof(BINARY) - 1, 0x1000, 0, &insn);
  /external/compiler-rt/test/asan/TestCases/Linux/
stack-trace-dlclose.cc 25 void *handle; variable
28 void *handle = dlopen(SO_DIR "/stack_trace_dlclose.so", RTLD_LAZY); local
29 assert(handle);
30 void *(*foo)() = (void *(*)())dlsym(handle, "foo");
34 dlclose(handle);
  /external/compiler-rt/test/tsan/Darwin/
dlopen.cc 29 void *handle = dlopen(argv[1], RTLD_NOW); local
30 fprintf(stderr, "handle = %p\n", handle);
31 void (*foo)() = (void (*)())dlsym(handle, "foo");
  /external/golang-protobuf/_conformance/
conformance.go 73 res := handle(req)
96 func handle(req *pb.ConformanceRequest) *pb.ConformanceResponse { func
  /external/iptables/iptables/
ip6tables-standalone.c 45 struct xtc_handle *handle = NULL; local
61 ret = do_command6(argc, argv, &table, &handle, false);
63 ret = ip6tc_commit(handle);
64 ip6tc_free(handle);
iptables-standalone.c 47 struct xtc_handle *handle = NULL; local
64 ret = do_command4(argc, argv, &table, &handle, false);
66 ret = iptc_commit(handle);
67 iptc_free(handle);

Completed in 508 milliseconds

1 2 3 4 5 6 7 8 91011>>