Searched defs:handle (Results 26 - 50 of 1326) sorted by relevance

1234567891011>>

/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.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/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_org/content/common/
H A Dsandbox_util.cc16 base::PlatformFile handle,
24 if (!content::BrokerDuplicateHandle(handle, target_process_id, &out_handle,
31 // When we're not closing the source, we need to duplicate the handle and take
33 // generate IPC messages, and the handle must remain valid until it's sent to
35 // close the source handle before the message is sent, creating a race
37 int fd = should_close_source ? handle : ::dup(handle);
15 BrokerGetFileHandleForProcess( base::PlatformFile handle, base::ProcessId target_process_id, bool should_close_source) argument
/external/chromium_org/content/renderer/pepper/
H A Dpepper_proxy_channel_delegate_impl.cc27 base::PlatformFile handle,
30 return BrokerGetFileHandleForProcess(handle, remote_pid, should_close_source);
26 ShareHandleWithRemote( base::PlatformFile handle, base::ProcessId remote_pid, bool should_close_source) argument
/external/chromium_org/extensions/renderer/resources/
H A Duncaught_exception_handler.js98 exports.handle = function(message, e, priorStackTrace) {
/external/chromium_org/ipc/
H A Dipc_platform_file.cc13 PlatformFileForTransit GetFileHandleForProcess(base::PlatformFile handle, argument
21 if (handle == INVALID_HANDLE_VALUE ||
23 handle,
34 // When we're not closing the source, we need to duplicate the handle and take
36 // generate IPC messages, and the handle must remain valid until it's sent to
38 // close the source handle before the message is sent, creating a race
40 int fd = close_source_handle ? handle : ::dup(handle);
/external/chromium_org/media/base/
H A Dbitstream_buffer.h17 BitstreamBuffer(int32 id, base::SharedMemoryHandle handle, size_t size) argument
19 handle_(handle),
24 base::SharedMemoryHandle handle() const { return handle_; } function in class:media::BitstreamBuffer
/external/chromium_org/mojo/apps/js/test/
H A Dhandle_unittest.cc5 #include "mojo/bindings/js/handle.h"
29 explicit TestHandleWrapper(MojoHandle handle) : HandleWrapper(handle) {} argument
35 // Test that calling Close() on a HandleWrapper for an invalid handle does not
48 // Test that destroying a HandleWrapper for an invalid handle does not notify
59 // Test that calling Close on a HandleWrapper for a valid handle notifies
77 // Test that destroying a HandleWrapper for a valid handle notifies observers.
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DInterfaceRequest.java21 * The handle which will be sent and will be connected to the implementation.
28 * @param handle the handle which will be sent and will be connected to the implementation.
30 InterfaceRequest(MessagePipeHandle handle) { argument
31 mHandle = handle;
/external/chromium_org/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_org/ppapi/cpp/private/
H A Dpass_file_handle.cc19 PassFileHandle::PassFileHandle(PP_FileHandle handle) argument
20 : handle_(handle) {
23 PassFileHandle::PassFileHandle(PassFileHandle& handle) argument
24 : handle_(handle.Release()) {
/external/chromium_org/ppapi/thunk/
H A Dppb_file_io_private_thunk.cc23 PP_FileHandle* handle,
29 handle,
22 RequestOSFileHandle(PP_Resource file_io, PP_FileHandle* handle, struct PP_CompletionCallback callback) argument
/external/chromium_org/remoting/base/
H A Dscoped_sc_handle_win.h18 // Closes the handle.
19 static bool CloseHandle(SC_HANDLE handle) { argument
20 return ::CloseServiceHandle(handle) != FALSE;
23 // Returns true if the handle value is valid.
24 static bool IsHandleValid(SC_HANDLE handle) { argument
25 return handle != NULL;
28 // Returns NULL handle value.
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DSocketStreamHandleInternal.h48 static SocketStreamHandleInternal* create(SocketStreamHandle* handle) argument
50 return new SocketStreamHandleInternal(handle);
64 static WebSocketStreamHandle* toWebSocketStreamHandle(SocketStreamHandle* handle) argument
66 if (handle && handle->m_internal)
67 return handle->m_internal->m_socket.get();
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DHandleAllocator.cpp36 GLuint handle = mFreeValues.back(); local
38 return handle;
43 void HandleAllocator::release(GLuint handle) argument
45 if (handle == mNextValue - 1)
56 if (handle >= mBaseValue)
58 mFreeValues.push_back(handle);
/external/chromium_org/third_party/lzma_sdk/
H A D7zFile.h26 HANDLE handle; member in struct:__anon13424
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_resource.c49 struct winsys_handle *handle)
54 return nv30_miptree_from_handle(pscreen, tmpl, handle);
47 nv30_resource_from_handle(struct pipe_screen *pscreen, const struct pipe_resource *tmpl, struct winsys_handle *handle) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/va/
H A Dhtab.c42 /* Make sure handle table handles match VAAPI handles. */
71 VAGenericID handle = 0; local
74 handle = handle_table_add(htab, data);
76 return handle;
82 void* vlGetDataHTAB(VAGenericID handle) argument
84 assert(handle);
89 data = handle_table_get(htab, handle);
93 return (void*)handle;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
H A Dhtab.c41 /* Make sure handle table handles match VDPAU handles. */
70 vlHandle handle = 0; local
73 handle = handle_table_add(htab, data);
75 return handle;
81 void* vlGetDataHTAB(vlHandle handle) argument
83 assert(handle);
88 data = handle_table_get(htab, handle);
92 return (void*)handle;
96 void vlRemoveDataHTAB(vlHandle handle) argument
101 handle_table_remove(htab, handle);
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-null/
H A Dgraw_null.c12 void **handle)
7 graw_create_window_and_screen( int x, int y, unsigned width, unsigned height, enum pipe_format format, void **handle) argument
/external/chromium_org/third_party/webrtc/base/
H A Dwin32window.h29 HWND handle() const { return wnd_; } function in class:rtc::Win32Window

Completed in 394 milliseconds

1234567891011>>