Searched defs:handle (Results 1 - 25 of 1314) 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/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dfake_core_interface.cc9 void FakeCoreInterface::AddRefResource(PP_Resource handle) { argument
10 return resource_manager_.AddRef(handle);
13 void FakeCoreInterface::ReleaseResource(PP_Resource handle) { argument
14 return resource_manager_.Release(handle);
/external/chromium_org/ppapi/shared_impl/
H A Dplatform_file.cc11 base::PlatformFile IntToPlatformFile(int32_t handle) { argument
13 return reinterpret_cast<HANDLE>(static_cast<intptr_t>(handle));
15 return handle;
21 int32_t PlatformFileToInt(base::PlatformFile handle) { argument
23 return static_cast<int32_t>(reinterpret_cast<intptr_t>(handle));
25 return handle;
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/android/
H A Dandroid_sw_winsys.h40 buffer_handle_t handle; member in struct:android_winsys_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/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/chromium_org/content/common/gpu/client/
H A Dgpu_memory_buffer_impl_android.cc12 gfx::GpuMemoryBufferHandle handle,
15 switch (handle.type) {
19 if (!buffer->Initialize(handle))
11 Create( gfx::GpuMemoryBufferHandle handle, gfx::Size size, unsigned internalformat) argument
H A Dgpu_memory_buffer_impl_linux.cc12 gfx::GpuMemoryBufferHandle handle,
15 switch (handle.type) {
19 if (!buffer->Initialize(handle))
11 Create( gfx::GpuMemoryBufferHandle handle, gfx::Size size, unsigned internalformat) argument
H A Dgpu_memory_buffer_impl_mac.cc13 gfx::GpuMemoryBufferHandle handle,
16 switch (handle.type) {
20 if (!buffer->Initialize(handle))
28 if (!buffer->Initialize(handle))
12 Create( gfx::GpuMemoryBufferHandle handle, gfx::Size size, unsigned internalformat) argument
H A Dgpu_memory_buffer_impl_win.cc12 gfx::GpuMemoryBufferHandle handle,
15 switch (handle.type) {
19 if (!buffer->Initialize(handle))
11 Create( gfx::GpuMemoryBufferHandle handle, gfx::Size size, unsigned internalformat) argument
/external/chromium_org/net/http/
H A Dhttp_basic_state_unittest.cc17 ClientSocketHandle* const handle = new ClientSocketHandle; local
18 // Ownership of handle is passed to |state|.
19 const HttpBasicState state(handle, true);
20 EXPECT_EQ(handle, state.connection());
30 ClientSocketHandle* const handle = new ClientSocketHandle; local
31 HttpBasicState state(handle, false);
35 EXPECT_EQ(handle, released_connection.get());
/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/chromium_org/base/process/
H A Dprocess.h20 explicit Process(ProcessHandle handle) : process_(handle) { argument
23 // A handle to the current process.
28 // Get/Set the handle for this process. The handle will be 0 if the process
30 ProcessHandle handle() const { return process_; } function in class:base::Process
31 void set_handle(ProcessHandle handle) { argument
32 process_ = handle;
41 // Close the process handle. This will not terminate the process.
/external/chromium_org/cc/output/
H A Dsoftware_frame_data.h22 base::SharedMemoryHandle handle; member in class:cc::SoftwareFrameData
/external/chromium_org/chrome/browser/automation/
H A Dtesting_automation_provider_aura.cc17 void TestingAutomationProvider::TerminateSession(int handle, bool* success) { argument
21 void TestingAutomationProvider::SetWindowBounds(int handle, argument
24 aura::Window* window = window_tracker_->GetResource(handle);
/external/chromium_org/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/chromium_org/chrome/browser/printing/cloud_print/test/
H A Dcloud_print_policy_browsertest.cc48 base::ProcessHandle handle; local
50 base::LaunchProcess(new_command_line, base::LaunchOptions(), &handle);
57 base::WaitForExitCodeWithTimeout(handle, &exit_code,
62 base::CloseProcessHandle(handle);
77 base::ProcessHandle handle; local
79 base::LaunchProcess(new_command_line, base::LaunchOptions(), &handle);
84 base::WaitForExitCodeWithTimeout(handle, &exit_code,
89 base::CloseProcessHandle(handle);
/external/chromium_org/chrome/browser/printing/
H A Dprinter_manager_dialog_linux.cc52 base::ProcessHandle handle; local
53 if (!base::LaunchProcess(argv, base::LaunchOptions(), &handle)) {
57 base::EnsureProcessGetsReaped(handle);
/external/chromium_org/content/common/gpu/
H A Dimage_transport_surface_linux.cc13 const gfx::GLSurfaceHandle& handle) {
14 DCHECK(handle.handle);
15 DCHECK(handle.transport_type == gfx::NATIVE_DIRECT ||
16 handle.transport_type == gfx::NATIVE_TRANSPORT);
18 gfx::GLSurface::CreateViewGLSurface(handle.handle);
22 manager, stub, surface.get(), handle.is_transport()));
10 CreateNativeSurface( GpuChannelManager* manager, GpuCommandBufferStub* stub, const gfx::GLSurfaceHandle& handle) argument
/external/chromium_org/content/common/
H A Dsocket_stream_handle_data.cc16 WebSocketStreamHandle* handle, int render_view_id) {
17 if (!handle) {
22 static_cast<WebSocketStreamHandleImpl*>(handle);
23 impl->SetUserData(handle, new SocketStreamHandleData(render_view_id));
28 WebSocketStreamHandle* handle) {
29 if (!handle)
32 static_cast<WebSocketStreamHandleImpl*>(handle);
33 return static_cast<SocketStreamHandleData*>(impl->GetUserData(handle));
15 AddToHandle( WebSocketStreamHandle* handle, int render_view_id) argument
27 ForHandle( WebSocketStreamHandle* handle) argument
/external/chromium_org/content/public/browser/
H A Dchild_process_data.h28 // The handle to the process.
29 base::ProcessHandle handle; member in struct:content::ChildProcessData
32 : process_type(process_type), id(0), handle(base::kNullProcessHandle) {
/external/chromium_org/mojo/system/
H A Draw_channel_win.cc18 RawChannel* RawChannel::Create(const PlatformChannelHandle& handle, argument
/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

Completed in 926 milliseconds

1234567891011>>