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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2002-01-24-HandleCallInsnSEGV.c 5 void ap_os_dso_unload(void *handle)
7 dlclose(handle);
  /packages/apps/Nfc/src/com/android/nfc/nxp/
NativeNfcSecureElement.java 32 public native boolean doDisconnect(int handle);
34 public native byte[] doTransceive(int handle, byte[] data);
36 public native int[] doGetTechList(int handle);
38 public native byte [] doGetUid(int handle);
  /external/qemu/elff/
elff_api.cc 34 elff_close(ELFF_HANDLE handle)
36 if (handle != NULL) {
37 delete reinterpret_cast<ElfFile*>(handle);
42 elff_is_exec(ELFF_HANDLE handle)
44 assert(handle != NULL);
45 if (handle == NULL) {
49 return reinterpret_cast<ElfFile*>(handle)->is_exec();
53 elff_get_pc_address_info(ELFF_HANDLE handle,
57 assert(handle != NULL && address_info != NULL);
58 if (handle == NULL || address_info == NULL) {
    [all...]
  /ndk/sources/host-tools/ndk-stack/elff/
elff_api.cc 34 elff_close(ELFF_HANDLE handle)
36 if (handle != NULL) {
37 delete reinterpret_cast<ElfFile*>(handle);
42 elff_is_exec(ELFF_HANDLE handle)
44 assert(handle != NULL);
45 if (handle == NULL) {
49 return reinterpret_cast<ElfFile*>(handle)->is_exec();
53 elff_get_pc_address_info(ELFF_HANDLE handle,
57 assert(handle != NULL && address_info != NULL);
58 if (handle == NULL || address_info == NULL)
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_Library.h 38 void *SEC_OSAL_dlsym(void *handle, const char *symbol);
39 int SEC_OSAL_dlclose(void *handle);
SEC_OSAL_Library.c 41 void *SEC_OSAL_dlsym(void *handle, const char *symbol)
43 return dlsym(handle, symbol);
46 int SEC_OSAL_dlclose(void *handle)
48 return dlclose(handle);
  /external/qemu/distrib/sdl-1.2.12/src/loadso/beos/
SDL_sysloadso.c 37 void *handle = NULL; local
42 handle = (void *) (library_id);
44 return (handle);
48 SDL_LoadFunction(void *handle, const char *name)
51 image_id library_id = (image_id) handle;
60 SDL_UnloadObject(void *handle)
63 if (handle != NULL) {
64 library_id = (image_id) handle;
  /external/qemu/distrib/sdl-1.2.12/src/loadso/mint/
SDL_sysloadso.c 38 void *handle = (void *)ldg_open((char *)sofile, ldg_global); local
39 if ( handle == NULL ) {
42 return(handle);
45 void *SDL_LoadFunction(void *handle, const char *name)
48 void *symbol = (void *)ldg_find((char *)name, (LDG *)handle);
55 void SDL_UnloadObject(void *handle)
57 if ( handle != NULL ) {
58 ldg_close((LDG *)handle, ldg_global);
  /external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
EASLib.h 28 EAS_EXPORT EAS_LibShutdown (EAS_DATA_HANDLE handle)
30 EAS_Shutdown(handle);
  /external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/
SDL_ataridevmouse.c 42 static int handle = -1; variable
61 handle = open(mousedev, 0);
65 if (handle<0) {
66 handle = open(DEVICE_NAME, 0);
69 if (handle<0) {
70 handle = -1;
75 r = fcntl(handle, F_GETFL, 0);
77 close(handle);
78 handle = -1;
84 r = fcntl(handle, F_SETFL, r)
    [all...]
  /external/chromium/net/base/
crypto_module_nss.cc 16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) {
17 return new CryptoModule(handle);
20 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) {
  /external/iproute2/include/
dlfcn.h 22 static inline void *dlsym(void *handle, const char *sym)
24 if (handle != _FAKE_DLFCN_HDL)
34 static inline int dlclose(void *handle)
36 return (handle == _FAKE_DLFCN_HDL) ? 0 : 1;
  /hardware/ti/omap4xxx/camera/inc/
VideoMetadata.h 27 void* handle; member in struct:__anon16786
  /system/core/adb/
usb_windows.c 40 /// Handle to USB interface
43 /// Handle to USB read pipe (endpoint)
46 /// Handle to USB write pipe (endpoint)
68 /// Checks if there is opened usb handle in handle_list for this device.
71 /// Checks if there is opened usb handle in handle_list for this device.
75 /// Registers opened usb handle (adds it to handle_list).
76 int register_new_device(usb_handle* handle);
79 int recognized_device(usb_handle* handle);
98 /// Writes data to the opened usb handle
99 int usb_write(usb_handle* handle, const void* data, int len)
451 usb_handle* handle = NULL; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMChildIterNodeList.java 74 * @param parentHandle DTM node-handle integer
96 int handle=m_firstChild; local
97 while(--index>=0 && handle!=DTM.NULL) {
98 handle=m_parentDTM.getNextSibling(handle);
100 if (handle == DTM.NULL) {
103 return m_parentDTM.getNode(handle);
112 for (int handle=m_firstChild;
113 handle!=DTM.NULL;
114 handle=m_parentDTM.getNextSibling(handle))
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
MobileApple80211.h 14 int Apple80211GetIfListCopy(Apple80211Ref handle, CFArrayRef *list);
15 int Apple80211BindToInterface(Apple80211Ref handle,
17 int Apple80211GetInterfaceNameCopy(Apple80211Ref handle,
19 int Apple80211GetInfoCopy(Apple80211Ref handle,
21 int Apple80211GetPower(Apple80211Ref handle, char *pwr);
22 int Apple80211SetPower(Apple80211Ref handle, char pwr);
26 int Apple80211Scan(Apple80211Ref handle, CFArrayRef *list,
29 int Apple80211Associate(Apple80211Ref handle, CFDictionaryRef bss,
31 int Apple80211AssociateAndCopyInfo(Apple80211Ref handle, CFDictionaryRef bss,
40 int Apple80211CopyValue(Apple80211Ref handle, int field, CFDictionaryRef arg2
    [all...]
  /external/wpa_supplicant_8/src/drivers/
MobileApple80211.h 14 int Apple80211GetIfListCopy(Apple80211Ref handle, CFArrayRef *list);
15 int Apple80211BindToInterface(Apple80211Ref handle,
17 int Apple80211GetInterfaceNameCopy(Apple80211Ref handle,
19 int Apple80211GetInfoCopy(Apple80211Ref handle,
21 int Apple80211GetPower(Apple80211Ref handle, char *pwr);
22 int Apple80211SetPower(Apple80211Ref handle, char pwr);
26 int Apple80211Scan(Apple80211Ref handle, CFArrayRef *list,
29 int Apple80211Associate(Apple80211Ref handle, CFDictionaryRef bss,
31 int Apple80211AssociateAndCopyInfo(Apple80211Ref handle, CFDictionaryRef bss,
40 int Apple80211CopyValue(Apple80211Ref handle, int field, CFDictionaryRef arg2
    [all...]
  /external/chromium/webkit/glue/
websocketstreamhandle_delegate.h 21 virtual void WillOpenStream(WebKit::WebSocketStreamHandle* handle,
23 virtual void WillSendData(WebKit::WebSocketStreamHandle* handle,
26 virtual void DidOpenStream(WebKit::WebSocketStreamHandle* handle,
28 virtual void DidSendData(WebKit::WebSocketStreamHandle* handle,
30 virtual void DidReceiveData(WebKit::WebSocketStreamHandle* handle,
  /external/valgrind/main/cachegrind/tests/
dlclose.c 15 void *handle; local
19 handle = dlopen ("./myprint.so", RTLD_LAZY);
20 if (!handle) {
25 myprint = dlsym(handle, "myprint");
34 dlclose(handle);
  /external/webrtc/src/modules/audio_processing/main/source/
processing_component.h 44 void* handle(int index) const;
49 virtual int InitializeHandle(void* handle) const = 0;
50 virtual int ConfigureHandle(void* handle) const = 0;
51 virtual int DestroyHandle(void* handle) const = 0;
53 virtual int GetHandleError(void* handle) const = 0;
  /external/iptables/include/libiptc/
libip6tc.h 24 int ip6tc_is_chain(const char *chain, struct ip6tc_handle *const handle);
33 const char *ip6tc_first_chain(struct ip6tc_handle *handle);
34 const char *ip6tc_next_chain(struct ip6tc_handle *handle);
38 struct ip6tc_handle *handle);
42 struct ip6tc_handle *handle);
46 struct ip6tc_handle *handle);
49 int ip6tc_builtin(const char *chain, struct ip6tc_handle *const handle);
54 struct ip6tc_handle *handle);
64 struct ip6tc_handle *handle);
70 struct ip6tc_handle *handle);
    [all...]
libiptc.h 28 int iptc_is_chain(const char *chain, struct iptc_handle *const handle);
37 const char *iptc_first_chain(struct iptc_handle *handle);
38 const char *iptc_next_chain(struct iptc_handle *handle);
42 struct iptc_handle *handle);
46 struct iptc_handle *handle);
50 struct iptc_handle *handle);
53 int iptc_builtin(const char *chain, struct iptc_handle *const handle);
58 struct iptc_handle *handle);
68 struct iptc_handle *handle);
74 struct iptc_handle *handle);
    [all...]
  /external/iproute2/include/libiptc/
libip6tc.h 20 /* Transparent handle type. */
24 int ip6tc_is_chain(const char *chain, const ip6tc_handle_t handle);
33 const char *ip6tc_first_chain(ip6tc_handle_t *handle);
34 const char *ip6tc_next_chain(ip6tc_handle_t *handle);
38 ip6tc_handle_t *handle);
42 ip6tc_handle_t *handle);
46 ip6tc_handle_t *handle);
49 int ip6tc_builtin(const char *chain, const ip6tc_handle_t handle);
54 ip6tc_handle_t *handle);
64 ip6tc_handle_t *handle);
    [all...]
libiptc.h 28 /* Transparent handle type. */
32 int iptc_is_chain(const char *chain, const iptc_handle_t handle);
41 const char *iptc_first_chain(iptc_handle_t *handle);
42 const char *iptc_next_chain(iptc_handle_t *handle);
46 iptc_handle_t *handle);
50 iptc_handle_t *handle);
54 iptc_handle_t *handle);
57 int iptc_builtin(const char *chain, const iptc_handle_t handle);
62 iptc_handle_t *handle);
72 iptc_handle_t *handle);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/loadso/dlopen/
SDL_sysloadso.c 36 void *handle = dlopen(sofile, RTLD_NOW); local
38 if ( handle == NULL ) {
41 return(handle);
44 void *SDL_LoadFunction(void *handle, const char *name)
46 void *symbol = dlsym(handle, name);
53 symbol = dlsym(handle, _name);
62 void SDL_UnloadObject(void *handle)
64 if ( handle != NULL ) {
65 dlclose(handle);

Completed in 725 milliseconds

1 2 3 4 5 6 7 8 91011>>