Searched defs:handle (Results 1 - 25 of 693) 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/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/webkit/LayoutTests/http/tests/resources/
H A DportabilityLayer.php25 $handle = fopen($filename, "w"); variable
26 if (!$handle)
28 $bytesWritten = fwrite($handle, $data);
29 if (!fclose($handle))
/external/chromium/chrome/browser/
H A Dbrowser_util_win.cc19 static HANDLE handle = NULL; local
26 if (handle != NULL)
27 CloseHandle(handle);
28 handle = CreateEvent(NULL, TRUE, TRUE, exe.c_str());
/external/iptables/iptables/
H A Dip6tables-standalone.c50 struct ip6tc_handle *handle = NULL; local
66 ret = do_command6(argc, argv, &table, &handle);
68 ret = ip6tc_commit(handle);
69 ip6tc_free(handle);
H A Diptables-standalone.c52 struct iptc_handle *handle = NULL; local
69 ret = do_command4(argc, argv, &table, &handle);
71 ret = iptc_commit(handle);
72 iptc_free(handle);
/external/libusb-compat/libusb/
H A Dusbi.h49 libusb_device_handle *handle; member in struct:usb_dev_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/qemu/distrib/sdl-1.2.15/src/loadso/dummy/
H A DSDL_sysloadso.c38 void *SDL_LoadFunction(void *handle, const char *name) argument
45 void SDL_UnloadObject(void *handle) argument
/external/qemu/distrib/sdl-1.2.15/src/thread/
H A DSDL_thread_c.h55 SYS_ThreadHandle handle; member in struct:SDL_Thread
/external/valgrind/main/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/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DtmpCallbackHandler.java36 public void handle(Callback[] callback) throws IOException, method in class:tmpCallbackHandler
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestHandler.java50 void handle(HttpRequest request, HttpResponse response, HttpContext context) method in interface:HttpRequestHandler
/external/bluetooth/bluedroid/bta/ag/
H A Dbta_ag_ci.c43 void bta_ag_ci_rx_write(UINT16 handle, char *p_data, UINT16 len) argument
60 p_buf->hdr.layer_specific = handle;
88 void bta_ag_ci_slc_ready(UINT16 handle) argument
95 p_buf->hdr.layer_specific = handle;
/external/chromium/base/
H A Dsync_socket.h32 explicit SyncSocket(Handle handle) : handle_(handle) { } argument
44 // Note it is not safe to send messages from the same socket handle by
63 // Extracts the contained handle. Used for transferring between
65 Handle handle() const { return handle_; } function in class:base::SyncSocket
/external/chromium/chrome/browser/webdata/
H A Dweb_data_service_test_util.h20 virtual void OnWebDataServiceRequestDone(WebDataService::Handle handle, argument
23 handle_ = handle;
31 WebDataService::Handle handle() { return handle_; } function in class:AutofillWebDataServiceConsumer
/external/chromium/net/base/
H A Dcrypto_module_nss.cc16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) { argument
17 return new CryptoModule(handle);
20 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) { argument
H A Dcrypto_module_openssl.cc16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) { argument
21 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) { argument
/external/chromium/third_party/libjingle/source/talk/base/
H A Dwin32window.h46 HWND handle() const { return wnd_; } function in class:talk_base::Win32Window
/external/doclava/res/assets/templates/
H A Ddiff.cs32 .handle { property
37 .handle-opened {
41 .handle-closed {
69 $(tr).children(".handle").addClass("handle-opened");
70 $(tr).children(".handle").removeClass("handle-closed");
77 $(tr).children(".handle").removeClass("handle-opened");
78 $(tr).children(".handle")
[all...]
/external/iproute2/include/
H A Ddlfcn.h22 static inline void *dlsym(void *handle, const char *sym) argument
24 if (handle != _FAKE_DLFCN_HDL)
34 static inline int dlclose(void *handle) argument
36 return (handle == _FAKE_DLFCN_HDL) ? 0 : 1;
/external/javasqlite/src/main/java/SQLite/
H A DFunctionContext.java12 * Internal handle for the native SQLite API.
15 private long handle = 0; field in class:FunctionContext
H A DVm.java10 * Internal handle for the compiled SQLite VM.
13 private long handle = 0; field in class:Vm
/external/qemu/android/utils/
H A Dmapfile.h35 /* Checks if file handle is a valid one.
37 * boolean: 1 if handle is valid, or 0 if it's not valid.
40 mapfile_is_valid(MapFile* handle) argument
42 return handle != (void*)(ptrdiff_t)-1;
53 * A valid handle to the opened file on success, or an invalid value on
58 /* Closes a file handle opened with mapfile_open routine.
60 * handle - A handle to a file previously obtained via successful call to
65 extern int mapfile_close(MapFile* handle);
68 * Except for handle paramete
[all...]
/external/qemu/distrib/sdl-1.2.15/src/loadso/beos/
H A DSDL_sysloadso.c37 void *handle = NULL; local
42 handle = (void *) (library_id);
44 return (handle);
48 SDL_LoadFunction(void *handle, const char *name) argument
51 image_id library_id = (image_id) handle;
60 SDL_UnloadObject(void *handle) argument
63 if (handle != NULL) {
64 library_id = (image_id) handle;

Completed in 524 milliseconds

1234567891011>>