Searched defs:handle (Results 1 - 25 of 1224) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2002-01-24-HandleCallInsnSEGV.c5 void ap_os_dso_unload(void *handle) argument
7 dlclose(handle);
/external/mesa3d/src/gallium/winsys/sw/android/
H A Dandroid_sw_winsys.h40 buffer_handle_t handle; member in struct:android_winsys_handle
/external/selinux/libsemanage/tests/
H A Dutilities.c30 semanage_handle_t * handle, const char *fmt, ...)
29 test_msg_handler(void *varg, semanage_handle_t * handle, const char *fmt, ...) argument
/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
H A DEASLib.h28 EAS_EXPORT EAS_LibShutdown (EAS_DATA_HANDLE handle) argument
30 EAS_Shutdown(handle);
/external/tpm2/
H A D_TPM_Hash_Start.c18 TPMI_DH_OBJECT handle; local
27 // Create an event sequence object and store the handle in global
38 // slot numbers and handle numbers. To handle the general case, scan for
39 // a handle that is assigned and free it for the DRTM sequence.
42 // failed indicating that all slots are occupied, then the first handle we
45 for(handle = TRANSIENT_FIRST; handle < TRANSIENT_LAST; handle++)
48 if(ObjectIsPresent(handle))
[all...]
H A DHMAC_Start_fp.h13 TPMI_DH_OBJECT handle; member in struct:__anon17731
24 // Initializes handle fields in |target| from |request_handles|. Unmarshals
33 // TPM_ST_SESSIONS. Returns size of (parameter area + handle area) in bytes.
45 // field is located between the handle area and parameter area.
H A DHMAC_fp.h13 TPMI_DH_OBJECT handle; member in struct:__anon17733
24 // Initializes handle fields in |target| from |request_handles|. Unmarshals
33 // TPM_ST_SESSIONS. Returns size of (parameter area + handle area) in bytes.
45 // field is located between the handle area and parameter area.
H A DHandle.c16 // This function returns the type of a handle which is the MSO of the handle.
20 TPM_HANDLE handle // IN: a handle to be checked
24 return (TPM_HT) ((handle & HR_RANGE_MASK) >> HR_SHIFT);
30 // This function returns the permanent handle that is equal to the input value or is the next higher value. If
31 // there is no handle with the input value and there is no next higher value, it returns 0:
37 TPM_HANDLE inHandle // IN: the handle to check
44 // scan from input value untill we find an implemented permanent handle
73 // This function returns a list of the permanent handles of PCR, started from handle
82 PermanentCapGetHandles( TPM_HANDLE handle, UINT32 count, TPML_HANDLE *handleList ) argument
[all...]
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkStrUtil.hpp38 inline std::ostream& operator<< (std::ostream& s, const Handle<Type>& handle) argument
40 return s << tcu::toHex(handle.getInternal());
/external/webrtc/webrtc/modules/audio_processing/aec/
H A Decho_cancellation_unittest.cc28 void* handle = WebRtcAec_Create(); local
29 ASSERT_TRUE(handle);
31 WebRtcAec_Free(handle);
35 void* handle = WebRtcAec_Create(); local
36 ASSERT_TRUE(handle);
38 AecCore* aec_core = WebRtcAec_aec_core(handle);
41 // level |aec_core| handle.
45 WebRtcAec_Free(handle);
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dstack-trace-dlclose.cc25 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);
H A Dfunction-sections-are-bad.cc19 void *handle = dlopen(path, RTLD_LAZY); local
20 if (!handle) fprintf(stderr, "%s\n", dlerror());
21 assert(handle != 0);
24 F f = (F)dlsym(handle, "call_rtl_from_dso");
29 dlclose(handle);
H A Dinit-order-dlopen.cc39 void *handle = dlopen(path.c_str(), RTLD_NOW); local
40 if (!handle) {
/external/iptables/iptables/
H A Dip6tables-standalone.c45 struct xtc_handle *handle = NULL; local
61 ret = do_command6(argc, argv, &table, &handle, false);
63 ret = ip6tc_commit(handle);
64 ip6tc_free(handle);
H A Diptables-standalone.c47 struct xtc_handle *handle = NULL; local
64 ret = do_command4(argc, argv, &table, &handle, false);
66 ret = iptc_commit(handle);
67 iptc_free(handle);
/external/libpcap/
H A Dpcap-netfilter-linux-android.c22 pcap_t handle; local
23 handle.fd = fd;
24 return nflog_send_config_cmd(&handle, group_id, cmd, family);
/external/libusb-compat/libusb/
H A Dusbi.h49 libusb_device_handle *handle; member in struct:usb_dev_handle
/external/ltrace/testsuite/ltrace.minor/
H A Dlibdl-simple.c6 void *handle; local
10 handle = dlopen ("liblibdl-simple.so", RTLD_LAZY);
11 if (!handle) {
16 test = dlsym(handle, "test_libdl");
23 dlclose(handle);
/external/mockito/src/org/mockito/invocation/
H A DMockHandler.java27 * @param invocation The invocation to handle
32 Object handle(Invocation invocation) throws Throwable; method in interface:MockHandler
/external/strace/tests/
H A Dfile_handle.c43 struct file_handle *handle = local
50 handle->handle_bytes = 0;
52 if (name_to_handle_at(dirfd, ".", handle, &mount_id, flags | 1) != -1
61 if (name_to_handle_at(dirfd, ".", handle, &mount_id, flags) != -1
69 handle->handle_bytes, &mount_id);
71 assert(!name_to_handle_at(dirfd, ".", handle, &mount_id, flags));
74 handle->handle_bytes, handle->handle_type);
75 for (i = 0; i < handle->handle_bytes; ++i)
76 printf("%02x", handle
[all...]
/external/valgrind/cachegrind/tests/
H A Ddlclose.c15 void *handle; local
19 handle = dlopen ("./myprint.so", RTLD_LAZY);
20 if (!handle) {
25 myprint = dlsym(handle, "myprint");
34 dlclose(handle);
/external/webrtc/webrtc/modules/desktop_capture/
H A Dshared_memory.cc21 SharedMemory::SharedMemory(void* data, size_t size, Handle handle, int id) argument
24 handle_(handle),
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DtmpCallbackHandler.java35 public void handle(Callback[] callback) throws IOException, method in class:tmpCallbackHandler
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestHandler.java55 void handle(HttpRequest request, HttpResponse response, HttpContext context) method in interface:HttpRequestHandler
/external/compiler-rt/test/lsan/TestCases/
H A Duse_tls_dynamic.cc19 void *handle = dlopen(path.c_str(), RTLD_LAZY); local
20 assert(handle != 0);
22 store_t StoreToTLS = (store_t)dlsym(handle, "StoreToTLS");

Completed in 1583 milliseconds

1234567891011>>